2025-09-07T06:10:08.8018751Z Current runner version: '2.328.0' 2025-09-07T06:10:08.8028945Z Runner name: 'i-0a035dcdde4a77639' 2025-09-07T06:10:08.8029835Z Runner group name: 'Default' 2025-09-07T06:10:08.8030885Z Machine name: 'EC2AMAZ-F4P7NAP' 2025-09-07T06:10:08.8034099Z ##[group]GITHUB_TOKEN Permissions 2025-09-07T06:10:08.8036853Z Contents: read 2025-09-07T06:10:08.8037413Z Metadata: read 2025-09-07T06:10:08.8038028Z ##[endgroup] 2025-09-07T06:10:08.8040813Z Secret source: Actions 2025-09-07T06:10:08.8041653Z Prepare workflow directory 2025-09-07T06:10:08.8570496Z Prepare all required actions 2025-09-07T06:10:08.8614888Z Getting action download info 2025-09-07T06:10:09.1709163Z Download action repository 'pytorch/test-infra@main' (SHA:548a4bc624d43a01cdf165a63b041f0ae014ddbd) 2025-09-07T06:14:43.1122718Z Download action repository 'pytorch/pytorch@main' (SHA:93fb23d6fae7c4e82c4239a1033e522088742634) 2025-09-07T06:18:10.5263186Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-09-07T06:18:10.9818118Z Getting action download info 2025-09-07T06:18:11.1027607Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-09-07T06:18:11.5367381Z Uses: pytorch/pytorch/.github/workflows/_win-build.yml@refs/heads/main (93fb23d6fae7c4e82c4239a1033e522088742634) 2025-09-07T06:18:11.5371578Z ##[group] Inputs 2025-09-07T06:18:11.5371996Z build-environment: win-vs2022-cuda12.6-py3 2025-09-07T06:18:11.5372308Z cuda-version: 12.6 2025-09-07T06:18:11.5372903Z use-xpu: false 2025-09-07T06:18:11.5373113Z xpu-version: 2025-09-07T06:18:11.5373310Z vc-year: 2022 2025-09-07T06:18:11.5373529Z build-with-debug: false 2025-09-07T06:18:11.5373754Z sync-tag: 2025-09-07T06:18:11.5373934Z test-matrix: 2025-09-07T06:18:11.5374248Z runner: lf.windows.4xlarge.nonephemeral 2025-09-07T06:18:11.5374552Z ##[endgroup] 2025-09-07T06:18:11.5374823Z Complete job name: win-vs2022-cuda12.6-py3 / build 2025-09-07T06:18:11.6127567Z ##[group]Run git config --global core.longpaths true 2025-09-07T06:18:11.6128224Z git config --global core.longpaths true 2025-09-07T06:18:11.6128577Z git config --global core.symlinks true 2025-09-07T06:18:11.6128931Z git config --global core.ignorecase false 2025-09-07T06:18:11.6129240Z  2025-09-07T06:18:11.6129583Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-09-07T06:18:11.6130147Z # the directory on Windows and prevent GHA from checking out as reported 2025-09-07T06:18:11.6130613Z # in https://github.com/actions/checkout/issues/1018 2025-09-07T06:18:11.6131001Z git config --global core.fsmonitor false 2025-09-07T06:18:11.6155528Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:18:11.6156211Z env: 2025-09-07T06:18:11.6156408Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:11.6156644Z ##[endgroup] 2025-09-07T06:18:14.7827634Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-09-07T06:18:14.7859008Z env: 2025-09-07T06:18:14.7859310Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:14.7859547Z ##[endgroup] 2025-09-07T06:18:14.8237352Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T06:18:14.8238212Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T06:18:14.8238950Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-09-07T06:18:14.8239492Z # handle tool 2025-09-07T06:18:14.8239869Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-09-07T06:18:14.8240330Z Foreach ($process In $processes) { 2025-09-07T06:18:14.8240642Z  Try { 2025-09-07T06:18:14.8241254Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-09-07T06:18:14.8243735Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-09-07T06:18:14.8244179Z  } 2025-09-07T06:18:14.8244357Z  Catch { 2025-09-07T06:18:14.8244717Z  Write-Output "No leftover $process process, continuing" 2025-09-07T06:18:14.8245133Z  Write-Output $_ 2025-09-07T06:18:14.8245403Z  } 2025-09-07T06:18:14.8245584Z } 2025-09-07T06:18:14.8245802Z  2025-09-07T06:18:14.8246303Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-09-07T06:18:14.8246924Z # for hung processes 2025-09-07T06:18:14.8247242Z Foreach ($process In $processes) { 2025-09-07T06:18:14.8247531Z  Try { 2025-09-07T06:18:14.8247986Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-09-07T06:18:14.8248515Z  } 2025-09-07T06:18:14.8248700Z  Catch { 2025-09-07T06:18:14.8248957Z  Write-Output $_ 2025-09-07T06:18:14.8249218Z  } 2025-09-07T06:18:14.8249430Z } 2025-09-07T06:18:14.8249681Z  2025-09-07T06:18:14.8249860Z Try { 2025-09-07T06:18:14.8250122Z  # Print all the processes for debugging 2025-09-07T06:18:14.8250756Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-09-07T06:18:14.8251255Z } 2025-09-07T06:18:14.8251435Z Catch { 2025-09-07T06:18:14.8251908Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-09-07T06:18:14.8252400Z  Write-Output $_ 2025-09-07T06:18:14.8252674Z } 2025-09-07T06:18:14.8270461Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:18:14.8270915Z env: 2025-09-07T06:18:14.8271227Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:14.8271469Z ##[endgroup] 2025-09-07T06:18:15.2182292Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:18:15.2244426Z Finished 2025-09-07T06:18:15.3544358Z No leftover python process, continuing 2025-09-07T06:18:15.4002164Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-09-07T06:18:15.4002860Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:9 char:5 2025-09-07T06:18:15.4003399Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:18:15.4003909Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.4004385Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-09-07T06:18:15.4005246Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:18:15.4005873Z 2025-09-07T06:18:15.4021613Z No leftover ninja process, continuing 2025-09-07T06:18:15.4030855Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-09-07T06:18:15.4031570Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:9 char:5 2025-09-07T06:18:15.4032113Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:18:15.4032532Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.4033007Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-09-07T06:18:15.4033854Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:18:15.4034427Z 2025-09-07T06:18:15.4047317Z No leftover cl process, continuing 2025-09-07T06:18:15.4057277Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-09-07T06:18:15.4058761Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:9 char:5 2025-09-07T06:18:15.4059313Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:18:15.4059779Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.4060243Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-09-07T06:18:15.4061071Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:18:15.4061693Z 2025-09-07T06:18:15.4072627Z No leftover nvcc process, continuing 2025-09-07T06:18:15.4082325Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-09-07T06:18:15.4083027Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:9 char:5 2025-09-07T06:18:15.4083579Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:18:15.4084005Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.4084487Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-09-07T06:18:15.4085315Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:18:15.4085909Z 2025-09-07T06:18:15.4119300Z No leftover sccache process, continuing 2025-09-07T06:18:15.4129294Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-09-07T06:18:15.4130002Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:9 char:5 2025-09-07T06:18:15.4130550Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:18:15.4130967Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.4131445Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-09-07T06:18:15.4132323Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:18:15.4132906Z 2025-09-07T06:18:15.4143609Z No leftover git process, continuing 2025-09-07T06:18:15.4154512Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-09-07T06:18:15.4155197Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:9 char:5 2025-09-07T06:18:15.4155761Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:18:15.4156174Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.4156636Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-09-07T06:18:15.4157423Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:18:15.4157999Z 2025-09-07T06:18:15.5449155Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:18:15.5450086Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:18:15.5450668Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:18:15.5451197Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:21 char:6 2025-09-07T06:18:15.5451747Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:18:15.5452179Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.5452620Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:18:15.5453299Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:18:15.5453850Z 2025-09-07T06:18:15.5477340Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:18:15.5478426Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:18:15.5479039Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:18:15.5479500Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:21 char:6 2025-09-07T06:18:15.5480049Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:18:15.5480469Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.5480896Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:18:15.5481580Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:18:15.5482206Z 2025-09-07T06:18:15.5505677Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:18:15.5506547Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:18:15.5507149Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:18:15.5507603Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:21 char:6 2025-09-07T06:18:15.5508148Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:18:15.5508583Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.5509008Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:18:15.5509699Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:18:15.5510242Z 2025-09-07T06:18:15.5537256Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:18:15.5538198Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:18:15.5538839Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:18:15.5539294Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:21 char:6 2025-09-07T06:18:15.5539858Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:18:15.5540270Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.5540707Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:18:15.5541379Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:18:15.5541928Z 2025-09-07T06:18:15.5568921Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:18:15.5569773Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:18:15.5570556Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:18:15.5571036Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:21 char:6 2025-09-07T06:18:15.5571596Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:18:15.5572036Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.5572455Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:18:15.5573134Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:18:15.5573673Z 2025-09-07T06:18:15.5596254Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:18:15.5597072Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:18:15.5597649Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:18:15.5598255Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:21 char:6 2025-09-07T06:18:15.5598799Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:18:15.5599219Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.5599639Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:18:15.5600308Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:18:15.5600851Z 2025-09-07T06:18:15.5623102Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:18:15.5623931Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:18:15.5624517Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:18:15.5624969Z At C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1:21 char:6 2025-09-07T06:18:15.5625517Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:18:15.5626019Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:18:15.5626492Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:18:15.5627162Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:18:15.5627711Z 2025-09-07T06:18:16.8399483Z Caption CommandLine ProcessId 2025-09-07T06:18:16.8400059Z 2025-09-07T06:18:16.8400397Z System Idle Process 0 2025-09-07T06:18:16.8400828Z 2025-09-07T06:18:16.8401343Z System 4 2025-09-07T06:18:16.8401724Z 2025-09-07T06:18:16.8402446Z Registry 168 2025-09-07T06:18:16.8402845Z 2025-09-07T06:18:16.8403469Z smss.exe 408 2025-09-07T06:18:16.8404554Z 2025-09-07T06:18:16.8404846Z csrss.exe 524 2025-09-07T06:18:16.8405227Z 2025-09-07T06:18:16.8405518Z csrss.exe 600 2025-09-07T06:18:16.8406097Z 2025-09-07T06:18:16.8406960Z wininit.exe 624 2025-09-07T06:18:16.8407567Z 2025-09-07T06:18:16.8407935Z winlogon.exe winlogon.exe 672 2025-09-07T06:18:16.8408409Z 2025-09-07T06:18:16.8409075Z services.exe 744 2025-09-07T06:18:16.8409479Z 2025-09-07T06:18:16.8410938Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-09-07T06:18:16.8411455Z 2025-09-07T06:18:16.8411965Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 896 2025-09-07T06:18:16.8412552Z 2025-09-07T06:18:16.8413405Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 920 2025-09-07T06:18:16.8414221Z 2025-09-07T06:18:16.8414596Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-09-07T06:18:16.8415083Z 2025-09-07T06:18:16.8415748Z fontdrvhost.exe "fontdrvhost.exe" 952 2025-09-07T06:18:16.8416229Z 2025-09-07T06:18:16.8416826Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-09-07T06:18:16.8417337Z 2025-09-07T06:18:16.8417995Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 436 2025-09-07T06:18:16.8418558Z 2025-09-07T06:18:16.8419089Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 824 2025-09-07T06:18:16.8419662Z 2025-09-07T06:18:16.8420409Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-09-07T06:18:16.8422355Z 2025-09-07T06:18:16.8422678Z dwm.exe "dwm.exe" 1140 2025-09-07T06:18:16.8423072Z 2025-09-07T06:18:16.8423711Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1256 2025-09-07T06:18:16.8424512Z 2025-09-07T06:18:16.8424991Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-09-07T06:18:16.8425548Z 2025-09-07T06:18:16.8426123Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1368 2025-09-07T06:18:16.8426768Z 2025-09-07T06:18:16.8427233Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1396 2025-09-07T06:18:16.8427769Z 2025-09-07T06:18:16.8428268Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-09-07T06:18:16.8428903Z 2025-09-07T06:18:16.8430646Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1476 2025-09-07T06:18:16.8432459Z 2025-09-07T06:18:16.8433104Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1496 2025-09-07T06:18:16.8433687Z 2025-09-07T06:18:16.8434179Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1564 2025-09-07T06:18:16.8434789Z 2025-09-07T06:18:16.8435459Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1632 2025-09-07T06:18:16.8436148Z 2025-09-07T06:18:16.8436612Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1724 2025-09-07T06:18:16.8437192Z 2025-09-07T06:18:16.8437654Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1732 2025-09-07T06:18:16.8438209Z 2025-09-07T06:18:16.8438713Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1740 2025-09-07T06:18:16.8439322Z 2025-09-07T06:18:16.8439770Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1844 2025-09-07T06:18:16.8440328Z 2025-09-07T06:18:16.8440931Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-09-07T06:18:16.8441567Z 2025-09-07T06:18:16.8442069Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1888 2025-09-07T06:18:16.8442659Z 2025-09-07T06:18:16.8443183Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1960 2025-09-07T06:18:16.8444399Z 2025-09-07T06:18:16.8444914Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2028 2025-09-07T06:18:16.8445500Z 2025-09-07T06:18:16.8446053Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1188 2025-09-07T06:18:16.8447882Z 2025-09-07T06:18:16.8448539Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2072 2025-09-07T06:18:16.8449261Z 2025-09-07T06:18:16.8449741Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2120 2025-09-07T06:18:16.8450332Z 2025-09-07T06:18:16.8450909Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2172 2025-09-07T06:18:16.8451601Z 2025-09-07T06:18:16.8452596Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2208 2025-09-07T06:18:16.8453260Z 2025-09-07T06:18:16.8453737Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2384 2025-09-07T06:18:16.8454388Z 2025-09-07T06:18:16.8454866Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2428 2025-09-07T06:18:16.8455532Z 2025-09-07T06:18:16.8455939Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2588 2025-09-07T06:18:16.8456435Z 2025-09-07T06:18:16.8456936Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2688 2025-09-07T06:18:16.8457533Z 2025-09-07T06:18:16.8458089Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2704 2025-09-07T06:18:16.8458740Z 2025-09-07T06:18:16.8459208Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2712 2025-09-07T06:18:16.8459766Z 2025-09-07T06:18:16.8460280Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2728 2025-09-07T06:18:16.8460856Z 2025-09-07T06:18:16.8461480Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2736 2025-09-07T06:18:16.8462135Z 2025-09-07T06:18:16.8462625Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2744 2025-09-07T06:18:16.8463192Z 2025-09-07T06:18:16.8463688Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2752 2025-09-07T06:18:16.8464373Z 2025-09-07T06:18:16.8464848Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2760 2025-09-07T06:18:16.8465424Z 2025-09-07T06:18:16.8465824Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3060 2025-09-07T06:18:16.8466318Z 2025-09-07T06:18:16.8466944Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2068 2025-09-07T06:18:16.8467657Z 2025-09-07T06:18:16.8468141Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2456 2025-09-07T06:18:16.8468711Z 2025-09-07T06:18:16.8469357Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 2964 2025-09-07T06:18:16.8470092Z 2025-09-07T06:18:16.8470623Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3108 2025-09-07T06:18:16.8471194Z 2025-09-07T06:18:16.8471790Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3568 2025-09-07T06:18:16.8472541Z 2025-09-07T06:18:16.8704041Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3648 2025-09-07T06:18:16.8704818Z 2025-09-07T06:18:16.8706607Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4040 2025-09-07T06:18:16.8707333Z 2025-09-07T06:18:16.8708021Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a73855 /state1:0x41c64e6d 4244 2025-09-07T06:18:16.8708659Z 2025-09-07T06:18:16.8710711Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4476 2025-09-07T06:18:16.8712465Z 2025-09-07T06:18:16.8713165Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 4608 2025-09-07T06:18:16.8714968Z 2025-09-07T06:18:16.8715521Z vds.exe C:\Windows\System32\vds.exe 4916 2025-09-07T06:18:16.8715991Z 2025-09-07T06:18:16.8716679Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2888 2025-09-07T06:18:16.8717331Z 2025-09-07T06:18:16.8718047Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3032 2025-09-07T06:18:16.8718952Z 2025-09-07T06:18:16.8721496Z amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\amazon-cloudwatch-agent.exe" -config C:\ProgramData\Amazon\AmazonCloudWatchAgent\amazon-cloudwatch-agent.toml -envconfig C:\ProgramData\Amazon\AmazonCloudWatchAgent\env-config.json -otelconfig C:\ProgramData\Amazon\AmazonCloudWatchAgent\amazon-cloudwatch-agent.yaml 1464 2025-09-07T06:18:16.8723126Z 2025-09-07T06:18:16.8723524Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1072 2025-09-07T06:18:16.8724019Z 2025-09-07T06:18:16.8724523Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1168 2025-09-07T06:18:16.8726098Z 2025-09-07T06:18:16.8726694Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 3852 2025-09-07T06:18:16.8727405Z 2025-09-07T06:18:16.8727775Z msdtc.exe C:\Windows\System32\msdtc.exe 3480 2025-09-07T06:18:16.8728240Z 2025-09-07T06:18:16.8728899Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4196 2025-09-07T06:18:16.8729557Z 2025-09-07T06:18:16.8730022Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1180 2025-09-07T06:18:16.8730568Z 2025-09-07T06:18:16.8732101Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 760 2025-09-07T06:18:16.8732818Z 2025-09-07T06:18:16.8733325Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 980 2025-09-07T06:18:16.8733963Z 2025-09-07T06:18:16.8734378Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4784 2025-09-07T06:18:16.8734864Z 2025-09-07T06:18:16.8735333Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1580 2025-09-07T06:18:16.8735903Z 2025-09-07T06:18:16.8736390Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1268 2025-09-07T06:18:16.8737971Z 2025-09-07T06:18:16.8738460Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 880 2025-09-07T06:18:16.8739056Z 2025-09-07T06:18:16.8739553Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2668 2025-09-07T06:18:16.8740085Z 2025-09-07T06:18:16.8740675Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4744 2025-09-07T06:18:16.8741372Z 2025-09-07T06:18:16.8741854Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4188 2025-09-07T06:18:16.8743504Z 2025-09-07T06:18:16.8744022Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 1772 2025-09-07T06:18:16.8744638Z 2025-09-07T06:18:16.8745161Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2156 2068 1412 2025-09-07T06:18:16.8745763Z 2025-09-07T06:18:16.8746171Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1808 2025-09-07T06:18:16.8746675Z 2025-09-07T06:18:16.8747076Z taskhostw.exe taskhostw.exe /RuntimeWide 4908 2025-09-07T06:18:16.8747558Z 2025-09-07T06:18:16.8749217Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1008 1468 2025-09-07T06:18:16.8749901Z 2025-09-07T06:18:16.8750497Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1020 876 2025-09-07T06:18:16.8751179Z 2025-09-07T06:18:16.8751585Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2012 2025-09-07T06:18:16.8752168Z 2025-09-07T06:18:16.8752566Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1592 2025-09-07T06:18:16.8753060Z 2025-09-07T06:18:16.8753579Z CompatTelRunner.exe "C:\Windows\system32\compattelrunner.exe" -maintenance 2784 2025-09-07T06:18:16.8755194Z 2025-09-07T06:18:16.8755595Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2812 2025-09-07T06:18:16.8756098Z 2025-09-07T06:18:16.8756655Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3608 2025-09-07T06:18:16.8757322Z 2025-09-07T06:18:16.8757947Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 3580 2025-09-07T06:18:16.8758663Z 2025-09-07T06:18:16.8759353Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 1068 2025-09-07T06:18:16.8761051Z 2025-09-07T06:18:16.8761693Z CompatTelRunner.exe C:\Windows\system32\CompatTelRunner.exe -m:invagent.dll -f:RunUpdate -cv:x7nwpWCsCkq5SdkL.5 1096 2025-09-07T06:18:16.8762415Z 2025-09-07T06:18:16.8762843Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4760 2025-09-07T06:18:16.8764091Z 2025-09-07T06:18:16.8764905Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 2f8 -InterruptEvent 0 -NGENProcess 3ac -Pipe 2d0 -Comment "NGen Worker Process" 4656 2025-09-07T06:18:16.8766855Z 2025-09-07T06:18:16.8767663Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\a24ff7d8-9622-4b31-97c9-685e2f387c9b.ps1'" 1920 2025-09-07T06:18:16.8768527Z 2025-09-07T06:18:16.8769113Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 3548 2025-09-07T06:18:16.8769768Z 2025-09-07T06:18:16.8769771Z 2025-09-07T06:18:16.8769775Z 2025-09-07T06:18:16.9038866Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-09-07T06:18:16.9039281Z with: 2025-09-07T06:18:16.9039919Z github-secret: *** 2025-09-07T06:18:16.9041861Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, Activate miniconda and Visual Studio environment, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-09-07T06:18:16.9043769Z activate-with-label: false 2025-09-07T06:18:16.9044018Z label: with-ssh 2025-09-07T06:18:16.9044218Z remove-existing-keys: true 2025-09-07T06:18:16.9044458Z fail-silently: true 2025-09-07T06:18:16.9044653Z env: 2025-09-07T06:18:16.9044880Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:16.9045106Z ##[endgroup] 2025-09-07T06:18:17.0592663Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-09-07T06:18:17.0595303Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-09-07T06:18:17.0841504Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-09-07T06:18:17.0841908Z with: 2025-09-07T06:18:17.0842094Z no-sudo: true 2025-09-07T06:18:17.0842288Z submodules: recursive 2025-09-07T06:18:17.0842511Z fetch-depth: 0 2025-09-07T06:18:17.0842698Z env: 2025-09-07T06:18:17.0842880Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:17.0843104Z ##[endgroup] 2025-09-07T06:18:17.0979594Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-09-07T06:18:17.0980443Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-09-07T06:18:17.1001548Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:18:17.1002123Z env: 2025-09-07T06:18:17.1002309Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:17.1002536Z ##[endgroup] 2025-09-07T06:18:17.2062604Z ##[group]Run # Use all available CPUs for fetching 2025-09-07T06:18:17.2063207Z # Use all available CPUs for fetching 2025-09-07T06:18:17.2063528Z cd "${GITHUB_WORKSPACE}" 2025-09-07T06:18:17.2063818Z git config --global fetch.parallel 0 2025-09-07T06:18:17.2064166Z git config --global submodule.fetchJobs 0 2025-09-07T06:18:17.2064464Z  2025-09-07T06:18:17.2064784Z # Clean workspace. The default checkout action should also do this, but 2025-09-07T06:18:17.2065208Z # do it here as well just in case 2025-09-07T06:18:17.2065500Z if [[ -d .git ]]; then 2025-09-07T06:18:17.2065755Z  if [ -z "${NO_SUDO}" ]; then 2025-09-07T06:18:17.2066021Z  sudo git clean -ffdx 2025-09-07T06:18:17.2066266Z  else 2025-09-07T06:18:17.2066481Z  git clean -ffdx 2025-09-07T06:18:17.2066706Z  fi 2025-09-07T06:18:17.2066876Z fi 2025-09-07T06:18:17.2087816Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:18:17.2088261Z env: 2025-09-07T06:18:17.2088450Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:17.2088686Z NO_SUDO: true 2025-09-07T06:18:17.2088868Z ##[endgroup] 2025-09-07T06:18:17.3398043Z ##[group]Run actions/checkout@v4 2025-09-07T06:18:17.3398296Z with: 2025-09-07T06:18:17.3398512Z ref: 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:18:17.3398801Z fetch-depth: 0 2025-09-07T06:18:17.3399003Z submodules: recursive 2025-09-07T06:18:17.3399215Z show-progress: false 2025-09-07T06:18:17.3399447Z repository: pytorch/pytorch 2025-09-07T06:18:17.3399832Z token: *** 2025-09-07T06:18:17.3400016Z ssh-strict: true 2025-09-07T06:18:17.3400221Z ssh-user: git 2025-09-07T06:18:17.3400428Z persist-credentials: true 2025-09-07T06:18:17.3400680Z clean: true 2025-09-07T06:18:17.3400889Z sparse-checkout-cone-mode: true 2025-09-07T06:18:17.3401140Z fetch-tags: false 2025-09-07T06:18:17.3401341Z lfs: false 2025-09-07T06:18:17.3401524Z set-safe-directory: true 2025-09-07T06:18:17.3401742Z env: 2025-09-07T06:18:17.3401910Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:18:17.3402128Z ##[endgroup] 2025-09-07T06:18:17.4756307Z Syncing repository: pytorch/pytorch 2025-09-07T06:18:17.4757588Z ##[group]Getting Git version info 2025-09-07T06:18:17.4757989Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-09-07T06:18:17.4900618Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-09-07T06:18:17.5112128Z git version 2.51.0.windows.1 2025-09-07T06:18:17.5160564Z ##[endgroup] 2025-09-07T06:18:17.5198040Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\2bc15068-968f-4cb6-9e1d-5258fda4cf0c\.gitconfig' 2025-09-07T06:18:17.5218281Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\2bc15068-968f-4cb6-9e1d-5258fda4cf0c' before making global git config changes 2025-09-07T06:18:17.5220501Z Adding repository directory to the temporary git global config as a safe directory 2025-09-07T06:18:17.5229495Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:18:17.5476224Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-09-07T06:18:17.5481726Z ##[group]Initializing the repository 2025-09-07T06:18:17.5492332Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:18:18.1995802Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-09-07T06:18:18.2045008Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-09-07T06:18:18.2292992Z ##[endgroup] 2025-09-07T06:18:18.2293390Z ##[group]Disabling automatic garbage collection 2025-09-07T06:18:18.2310614Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-09-07T06:18:18.2555073Z ##[endgroup] 2025-09-07T06:18:18.2555459Z ##[group]Setting up auth 2025-09-07T06:18:18.2569879Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-09-07T06:18:18.2816040Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-09-07T06:18:19.0293561Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-09-07T06:18:19.0542761Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-09-07T06:18:19.4496389Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-09-07T06:18:19.4749552Z ##[endgroup] 2025-09-07T06:18:19.4749963Z ##[group]Fetching the repository 2025-09-07T06:18:19.4764651Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-09-07T06:19:12.9569110Z From https://github.com/pytorch/pytorch 2025-09-07T06:19:12.9569542Z * [new branch] 160583 -> origin/160583 2025-09-07T06:19:12.9569977Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-09-07T06:19:12.9570450Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-09-07T06:19:12.9571001Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-09-07T06:19:12.9571643Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-09-07T06:19:12.9572221Z * [new branch] ISSUE-154849 -> origin/ISSUE-154849 2025-09-07T06:19:12.9572810Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-09-07T06:19:12.9573422Z * [new branch] NicoshevSVE128 -> origin/NicoshevSVE128 2025-09-07T06:19:12.9573920Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-09-07T06:19:12.9574492Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-09-07T06:19:12.9575040Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-09-07T06:19:12.9575636Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-09-07T06:19:12.9576150Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-09-07T06:19:12.9576660Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-09-07T06:19:12.9577941Z * [new branch] VLA_exp -> origin/VLA_exp 2025-09-07T06:19:12.9578517Z * [new branch] actually-run-mps-aot-inductor -> origin/actually-run-mps-aot-inductor 2025-09-07T06:19:12.9579175Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-09-07T06:19:12.9579796Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-09-07T06:19:12.9580381Z * [new branch] add-vllm-nightly-build -> origin/add-vllm-nightly-build 2025-09-07T06:19:12.9580940Z * [new branch] add_compile_benchmarking -> origin/add_compile_benchmarking 2025-09-07T06:19:12.9581484Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-09-07T06:19:12.9581934Z * [new branch] addsimde -> origin/addsimde 2025-09-07T06:19:12.9582537Z * [new branch] addvllmtest -> origin/addvllmtest 2025-09-07T06:19:12.9582999Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-09-07T06:19:12.9583425Z * [new branch] adi/test -> origin/adi/test 2025-09-07T06:19:12.9583858Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-09-07T06:19:12.9584306Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-09-07T06:19:12.9584785Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-09-07T06:19:12.9585375Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-09-07T06:19:12.9585844Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-09-07T06:19:12.9586328Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-09-07T06:19:12.9586842Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-09-07T06:19:12.9587373Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-09-07T06:19:12.9587852Z * [new branch] alt-disable -> origin/alt-disable 2025-09-07T06:19:12.9588381Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-09-07T06:19:12.9588955Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-09-07T06:19:12.9589468Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-09-07T06:19:12.9589966Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-09-07T06:19:12.9590566Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-09-07T06:19:12.9591176Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-09-07T06:19:12.9591715Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-09-07T06:19:12.9592230Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-09-07T06:19:12.9592740Z * [new branch] angelayi/fake_cache_empty -> origin/angelayi/fake_cache_empty 2025-09-07T06:19:12.9593285Z * [new branch] angelayi/is_symbolic_tracing -> origin/angelayi/is_symbolic_tracing 2025-09-07T06:19:12.9593798Z * [new branch] angelayi/item -> origin/angelayi/item 2025-09-07T06:19:12.9594270Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-09-07T06:19:12.9594773Z * [new branch] angelayi/opoverload -> origin/angelayi/opoverload 2025-09-07T06:19:12.9595269Z * [new branch] angelayi/pattern -> origin/angelayi/pattern 2025-09-07T06:19:12.9595743Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-09-07T06:19:12.9596352Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-09-07T06:19:12.9596865Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-09-07T06:19:12.9597354Z * [new branch] angelayi/test_cpp -> origin/angelayi/test_cpp 2025-09-07T06:19:12.9597853Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-09-07T06:19:12.9598335Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-09-07T06:19:12.9598823Z * [new branch] aoti_target_windows -> origin/aoti_target_windows 2025-09-07T06:19:12.9599297Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-09-07T06:19:12.9599850Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-09-07T06:19:12.9600601Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-09-07T06:19:12.9601158Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-09-07T06:19:12.9601651Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-09-07T06:19:12.9602117Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-09-07T06:19:12.9602594Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-09-07T06:19:12.9603065Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-09-07T06:19:12.9603548Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-09-07T06:19:12.9604062Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-09-07T06:19:12.9604562Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-09-07T06:19:12.9605065Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-09-07T06:19:12.9605692Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-09-07T06:19:12.9606314Z * [new branch] bahuang/dtensor_demo -> origin/bahuang/dtensor_demo 2025-09-07T06:19:12.9606792Z * [new branch] bahuang/test -> origin/bahuang/test 2025-09-07T06:19:12.9607213Z * [new branch] base/1.5 -> origin/base/1.5 2025-09-07T06:19:12.9607748Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-09-07T06:19:12.9608301Z * [new branch] bc-lint-config -> origin/bc-lint-config 2025-09-07T06:19:12.9608798Z * [new branch] bc-lint-test-new-config -> origin/bc-lint-test-new-config 2025-09-07T06:19:12.9609318Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-09-07T06:19:12.9609882Z * [new branch] benchmarker_compat_with_do_bench -> origin/benchmarker_compat_with_do_bench 2025-09-07T06:19:12.9610456Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-09-07T06:19:12.9610965Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-09-07T06:19:12.9611459Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-09-07T06:19:12.9611951Z * [new branch] bf/cg-custom-wrapper -> origin/bf/cg-custom-wrapper 2025-09-07T06:19:12.9612420Z * [new branch] bf/cg-or-error -> origin/bf/cg-or-error 2025-09-07T06:19:12.9612885Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-09-07T06:19:12.9613362Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-09-07T06:19:12.9613925Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-09-07T06:19:12.9614535Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-09-07T06:19:12.9615475Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-09-07T06:19:12.9616319Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-09-07T06:19:12.9616890Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-09-07T06:19:12.9617473Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-09-07T06:19:12.9617959Z * [new branch] bf/exp -> origin/bf/exp 2025-09-07T06:19:12.9618404Z * [new branch] bf/pa-non-divisible -> origin/bf/pa-non-divisible 2025-09-07T06:19:12.9619157Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-09-07T06:19:12.9619697Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-09-07T06:19:12.9620245Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-09-07T06:19:12.9620728Z * [new branch] bf/rope -> origin/bf/rope 2025-09-07T06:19:12.9621226Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-09-07T06:19:12.9621786Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-09-07T06:19:12.9622345Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-09-07T06:19:12.9622898Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-09-07T06:19:12.9623437Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-09-07T06:19:12.9623978Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-09-07T06:19:12.9624530Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-09-07T06:19:12.9625165Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-09-07T06:19:12.9625730Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-09-07T06:19:12.9626282Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-09-07T06:19:12.9626831Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-09-07T06:19:12.9627356Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-09-07T06:19:12.9627912Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-09-07T06:19:12.9628474Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-09-07T06:19:12.9629034Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-09-07T06:19:12.9629592Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-09-07T06:19:12.9630140Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-09-07T06:19:12.9630683Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-09-07T06:19:12.9631159Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-09-07T06:19:12.9631659Z * [new branch] brister/break_tensorbox -> origin/brister/break_tensorbox 2025-09-07T06:19:12.9632276Z * [new branch] brister/custom_fx_backend -> origin/brister/custom_fx_backend 2025-09-07T06:19:12.9633446Z * [new branch] brister/fx_custom_triton -> origin/brister/fx_custom_triton 2025-09-07T06:19:12.9634037Z * [new branch] brister/tensor_box_output -> origin/brister/tensor_box_output 2025-09-07T06:19:12.9634703Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-09-07T06:19:12.9635272Z * [new branch] c57382a49 -> origin/c57382a49 2025-09-07T06:19:12.9635698Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-09-07T06:19:12.9636124Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-09-07T06:19:12.9637056Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-09-07T06:19:12.9638135Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-09-07T06:19:12.9638838Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9639573Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9640384Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9641201Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9641965Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9642764Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9643531Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9644334Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9645098Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9645920Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9646718Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-09-07T06:19:12.9647360Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-09-07T06:19:12.9648035Z * [new branch] cleanup-inductor-benchmark-images -> origin/cleanup-inductor-benchmark-images 2025-09-07T06:19:12.9648671Z * [new branch] codex-testing -> origin/codex-testing 2025-09-07T06:19:12.9649390Z * [new branch] codex/add-helper-function-to-sizevars.py -> origin/codex/add-helper-function-to-sizevars.py 2025-09-07T06:19:12.9650386Z * [new branch] codex/add-helper-function-to-sizevars.py_2025-09-05 -> origin/codex/add-helper-function-to-sizevars.py_2025-09-05 2025-09-07T06:19:12.9651341Z * [new branch] codex/add-metadata-field-for-file-path -> origin/codex/add-metadata-field-for-file-path 2025-09-07T06:19:12.9652327Z * [new branch] codex/add-test-for-inductor-local-cache-behavior -> origin/codex/add-test-for-inductor-local-cache-behavior 2025-09-07T06:19:12.9653482Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-09-07T06:19:12.9654462Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-09-07T06:19:12.9655166Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-09-07T06:19:12.9656168Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-09-07T06:19:12.9657073Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-09-07T06:19:12.9657856Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-09-07T06:19:12.9658809Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-09-07T06:19:12.9659922Z * [new branch] codex/remove-allow-untyped-defs-and-fix-type-errors -> origin/codex/remove-allow-untyped-defs-and-fix-type-errors 2025-09-07T06:19:12.9660892Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-09-07T06:19:12.9661641Z * [new branch] context_test -> origin/context_test 2025-09-07T06:19:12.9662178Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-09-07T06:19:12.9662688Z * [new branch] copy_graph -> origin/copy_graph 2025-09-07T06:19:12.9663189Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-09-07T06:19:12.9663773Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-09-07T06:19:12.9664336Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-09-07T06:19:12.9664939Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-09-07T06:19:12.9665604Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-09-07T06:19:12.9666181Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-09-07T06:19:12.9666770Z * [new branch] csl/exclude_rocm_viable_strict -> origin/csl/exclude_rocm_viable_strict 2025-09-07T06:19:12.9667277Z * [new branch] csl/katex -> origin/csl/katex 2025-09-07T06:19:12.9667740Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-09-07T06:19:12.9668250Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-09-07T06:19:12.9668736Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-09-07T06:19:12.9669217Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-09-07T06:19:12.9669721Z * [new branch] csl/name_link_check_job -> origin/csl/name_link_check_job 2025-09-07T06:19:12.9670220Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-09-07T06:19:12.9670695Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-09-07T06:19:12.9671195Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-09-07T06:19:12.9671688Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-09-07T06:19:12.9672217Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-09-07T06:19:12.9672751Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-09-07T06:19:12.9673208Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-09-07T06:19:12.9673662Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-09-07T06:19:12.9674139Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-09-07T06:19:12.9674625Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-09-07T06:19:12.9675107Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-09-07T06:19:12.9675678Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-09-07T06:19:12.9676125Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-09-07T06:19:12.9676552Z * [new branch] debug-guard -> origin/debug-guard 2025-09-07T06:19:12.9677050Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-09-07T06:19:12.9677957Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 2025-09-07T06:19:12.9679184Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 2025-09-07T06:19:12.9680390Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 2025-09-07T06:19:12.9681701Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.56.0 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.56.0 2025-09-07T06:19:12.9682749Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-09-07T06:19:12.9683716Z * [new branch] dependabot/pip/dot-github/requirements/protobuf-5.29.5 -> origin/dependabot/pip/dot-github/requirements/protobuf-5.29.5 2025-09-07T06:19:12.9684521Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-09-07T06:19:12.9685142Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-09-07T06:19:12.9685769Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-09-07T06:19:12.9686306Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-09-07T06:19:12.9686774Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-09-07T06:19:12.9687265Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-09-07T06:19:12.9687796Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-09-07T06:19:12.9688397Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-09-07T06:19:12.9689097Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-09-07T06:19:12.9689760Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-09-07T06:19:12.9690275Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-09-07T06:19:12.9690758Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-09-07T06:19:12.9691266Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-09-07T06:19:12.9691748Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-09-07T06:19:12.9692209Z * [new branch] disable -> origin/disable 2025-09-07T06:19:12.9692654Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-09-07T06:19:12.9693131Z * [new branch] eigen_for_sparse_addmm_v2 -> origin/eigen_for_sparse_addmm_v2 2025-09-07T06:19:12.9693672Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-09-07T06:19:12.9694243Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-09-07T06:19:12.9694844Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-09-07T06:19:12.9695498Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-09-07T06:19:12.9696053Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-09-07T06:19:12.9696566Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-09-07T06:19:12.9696998Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-09-07T06:19:12.9697433Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-09-07T06:19:12.9697866Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-09-07T06:19:12.9698375Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-09-07T06:19:12.9699053Z * [new branch] exclamaforte/add-contiguous-threshold -> origin/exclamaforte/add-contiguous-threshold 2025-09-07T06:19:12.9699814Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-09-07T06:19:12.9700506Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-09-07T06:19:12.9701244Z * [new branch] exclamaforte/clear-feedback-savers -> origin/exclamaforte/clear-feedback-savers 2025-09-07T06:19:12.9701942Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-09-07T06:19:12.9702602Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-09-07T06:19:12.9703248Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-09-07T06:19:12.9703995Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-09-07T06:19:12.9704850Z * [new branch] exclamaforte/fix-exhuastive-autotuning-reland -> origin/exclamaforte/fix-exhuastive-autotuning-reland 2025-09-07T06:19:12.9705787Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-09-07T06:19:12.9706616Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-09-07T06:19:12.9707312Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-09-07T06:19:12.9707928Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-09-07T06:19:12.9708577Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-09-07T06:19:12.9709158Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-09-07T06:19:12.9709873Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-09-07T06:19:12.9710591Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-09-07T06:19:12.9711178Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-09-07T06:19:12.9711958Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-09-07T06:19:12.9712677Z * [new branch] exclamaforte/max-autotune-ieee -> origin/exclamaforte/max-autotune-ieee 2025-09-07T06:19:12.9713283Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-09-07T06:19:12.9713892Z * [new branch] exclamaforte/profile-diff-algo -> origin/exclamaforte/profile-diff-algo 2025-09-07T06:19:12.9714513Z * [new branch] exclamaforte/profiler-combo -> origin/exclamaforte/profiler-combo 2025-09-07T06:19:12.9715151Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-09-07T06:19:12.9716359Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-09-07T06:19:12.9717186Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-09-07T06:19:12.9717920Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-09-07T06:19:12.9718433Z * [new branch] exec -> origin/exec 2025-09-07T06:19:12.9718905Z * [new branch] executorch-module-shim -> origin/executorch-module-shim 2025-09-07T06:19:12.9719441Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-09-07T06:19:12.9719941Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-09-07T06:19:12.9720407Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-09-07T06:19:12.9720975Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-09-07T06:19:12.9721451Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-09-07T06:19:12.9721904Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-09-07T06:19:12.9722385Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-09-07T06:19:12.9722882Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-09-07T06:19:12.9723388Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-09-07T06:19:12.9723845Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-09-07T06:19:12.9724309Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-09-07T06:19:12.9724769Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-09-07T06:19:12.9725254Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-09-07T06:19:12.9725718Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-09-07T06:19:12.9726177Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-09-07T06:19:12.9726640Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-09-07T06:19:12.9727108Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-09-07T06:19:12.9727567Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-09-07T06:19:12.9728029Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-09-07T06:19:12.9728486Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-09-07T06:19:12.9729027Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-09-07T06:19:12.9729493Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-09-07T06:19:12.9729953Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-09-07T06:19:12.9730420Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-09-07T06:19:12.9730872Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-09-07T06:19:12.9731333Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-09-07T06:19:12.9731796Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-09-07T06:19:12.9732247Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-09-07T06:19:12.9732713Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-09-07T06:19:12.9733171Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-09-07T06:19:12.9733643Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-09-07T06:19:12.9734220Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-09-07T06:19:12.9734741Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-09-07T06:19:12.9735221Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-09-07T06:19:12.9735674Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-09-07T06:19:12.9736138Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-09-07T06:19:12.9736596Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-09-07T06:19:12.9737071Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-09-07T06:19:12.9737533Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-09-07T06:19:12.9738085Z * [new branch] export-D80319069 -> origin/export-D80319069 2025-09-07T06:19:12.9738556Z * [new branch] export-D80321215 -> origin/export-D80321215 2025-09-07T06:19:12.9739016Z * [new branch] export-D80503451 -> origin/export-D80503451 2025-09-07T06:19:12.9739483Z * [new branch] export-D80771648 -> origin/export-D80771648 2025-09-07T06:19:12.9739952Z * [new branch] export-D80823877 -> origin/export-D80823877 2025-09-07T06:19:12.9740491Z * [new branch] export-D80948073 -> origin/export-D80948073 2025-09-07T06:19:12.9740957Z * [new branch] export-D80958642 -> origin/export-D80958642 2025-09-07T06:19:12.9741409Z * [new branch] export-D80970483 -> origin/export-D80970483 2025-09-07T06:19:12.9741887Z * [new branch] export-D81054193 -> origin/export-D81054193 2025-09-07T06:19:12.9742345Z * [new branch] export-D81060182 -> origin/export-D81060182 2025-09-07T06:19:12.9742812Z * [new branch] export-D81078973 -> origin/export-D81078973 2025-09-07T06:19:12.9743284Z * [new branch] export-D81204584 -> origin/export-D81204584 2025-09-07T06:19:12.9743735Z * [new branch] export-D81284190 -> origin/export-D81284190 2025-09-07T06:19:12.9744198Z * [new branch] export-D81299840 -> origin/export-D81299840 2025-09-07T06:19:12.9744652Z * [new branch] export-D81429090 -> origin/export-D81429090 2025-09-07T06:19:12.9745202Z * [new branch] export-D81698719 -> origin/export-D81698719 2025-09-07T06:19:12.9745672Z * [new branch] export-D81747409 -> origin/export-D81747409 2025-09-07T06:19:12.9746290Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-09-07T06:19:12.9746981Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-09-07T06:19:12.9747473Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-09-07T06:19:12.9748070Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-09-07T06:19:12.9748527Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-09-07T06:19:12.9748932Z * [new branch] fca -> origin/fca 2025-09-07T06:19:12.9749346Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-09-07T06:19:12.9749746Z * [new branch] fca5 -> origin/fca5 2025-09-07T06:19:12.9750263Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-09-07T06:19:12.9750935Z * [new branch] feature/function-numa-binding-take2 -> origin/feature/function-numa-binding-take2 2025-09-07T06:19:12.9751762Z * [new branch] feature/numa-nproc-fix -> origin/feature/numa-nproc-fix 2025-09-07T06:19:12.9752419Z * [new branch] feature/numa-signpost-serialize -> origin/feature/numa-signpost-serialize 2025-09-07T06:19:12.9753059Z * [new branch] feature/parallel-numa-binding -> origin/feature/parallel-numa-binding 2025-09-07T06:19:12.9753662Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-09-07T06:19:12.9754342Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-09-07T06:19:12.9755173Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-09-07T06:19:12.9755828Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-09-07T06:19:12.9756397Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-09-07T06:19:12.9756889Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-09-07T06:19:12.9757404Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-09-07T06:19:12.9757946Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-09-07T06:19:12.9758450Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-09-07T06:19:12.9758949Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-09-07T06:19:12.9759454Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-09-07T06:19:12.9759968Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-09-07T06:19:12.9760506Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-09-07T06:19:12.9761027Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-09-07T06:19:12.9761472Z * [new branch] fix -> origin/fix 2025-09-07T06:19:12.9761968Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-09-07T06:19:12.9762496Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-09-07T06:19:12.9762964Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-09-07T06:19:12.9763534Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-09-07T06:19:12.9764105Z * [new branch] fix-mps-benchmark -> origin/fix-mps-benchmark 2025-09-07T06:19:12.9764652Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-09-07T06:19:12.9765293Z * [new branch] fix-run-condition-upload-results -> origin/fix-run-condition-upload-results 2025-09-07T06:19:12.9765886Z * [new branch] fix-torchbench -> origin/fix-torchbench 2025-09-07T06:19:12.9766325Z * [new branch] fix_153389 -> origin/fix_153389 2025-09-07T06:19:12.9766760Z * [new branch] fix_fsdp_rs_bucket2 -> origin/fix_fsdp_rs_bucket2 2025-09-07T06:19:12.9767271Z * [new branch] fix_inductor_peridic_tests -> origin/fix_inductor_peridic_tests 2025-09-07T06:19:12.9767754Z * [new branch] fix_ubn_159469 -> origin/fix_ubn_159469 2025-09-07T06:19:12.9768189Z * [new branch] fixes-triage -> origin/fixes-triage 2025-09-07T06:19:12.9768640Z * [new branch] fixflashinfer -> origin/fixflashinfer 2025-09-07T06:19:12.9769228Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-09-07T06:19:12.9769732Z * [new branch] flex-flash -> origin/flex-flash 2025-09-07T06:19:12.9770256Z * [new branch] flex-lowering -> origin/flex-lowering 2025-09-07T06:19:12.9770701Z * [new branch] flex-warning -> origin/flex-warning 2025-09-07T06:19:12.9771212Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-09-07T06:19:12.9771723Z * [new branch] flex_flash -> origin/flex_flash 2025-09-07T06:19:12.9772210Z * [new branch] flexdecode-gqa-groups -> origin/flexdecode-gqa-groups 2025-09-07T06:19:12.9772778Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-09-07T06:19:12.9773337Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-09-07T06:19:12.9773772Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-09-07T06:19:12.9774203Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-09-07T06:19:12.9774753Z * [new branch] fx_cpp -> origin/fx_cpp 2025-09-07T06:19:12.9775194Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-09-07T06:19:12.9775654Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-09-07T06:19:12.9776117Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-09-07T06:19:12.9776577Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-09-07T06:19:12.9777019Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-09-07T06:19:12.9777472Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-09-07T06:19:12.9777970Z * [new branch] gh/ColinPeppler/79/base -> origin/gh/ColinPeppler/79/base 2025-09-07T06:19:12.9778509Z * [new branch] gh/ColinPeppler/79/head -> origin/gh/ColinPeppler/79/head 2025-09-07T06:19:12.9779052Z * [new branch] gh/ColinPeppler/79/orig -> origin/gh/ColinPeppler/79/orig 2025-09-07T06:19:12.9779580Z * [new branch] gh/ColinPeppler/80/base -> origin/gh/ColinPeppler/80/base 2025-09-07T06:19:12.9780112Z * [new branch] gh/ColinPeppler/80/head -> origin/gh/ColinPeppler/80/head 2025-09-07T06:19:12.9780686Z * [new branch] gh/ColinPeppler/80/orig -> origin/gh/ColinPeppler/80/orig 2025-09-07T06:19:12.9781236Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-09-07T06:19:12.9781748Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-09-07T06:19:12.9782241Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-09-07T06:19:12.9782747Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-09-07T06:19:12.9783244Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-09-07T06:19:12.9783738Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-09-07T06:19:12.9784231Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-09-07T06:19:12.9784717Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-09-07T06:19:12.9785285Z * [new branch] gh/EikanWang/82/base -> origin/gh/EikanWang/82/base 2025-09-07T06:19:12.9785772Z * [new branch] gh/EikanWang/82/head -> origin/gh/EikanWang/82/head 2025-09-07T06:19:12.9786320Z * [new branch] gh/EikanWang/82/orig -> origin/gh/EikanWang/82/orig 2025-09-07T06:19:12.9786870Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-09-07T06:19:12.9787357Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-09-07T06:19:12.9787851Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-09-07T06:19:12.9788424Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-09-07T06:19:12.9788899Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-09-07T06:19:12.9789385Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-09-07T06:19:12.9789845Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-09-07T06:19:12.9790324Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-09-07T06:19:12.9790786Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-09-07T06:19:12.9791267Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-09-07T06:19:12.9791779Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-09-07T06:19:12.9792389Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-09-07T06:19:12.9792864Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-09-07T06:19:12.9793329Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-09-07T06:19:12.9793809Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-09-07T06:19:12.9794290Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-09-07T06:19:12.9794752Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-09-07T06:19:12.9795233Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-09-07T06:19:12.9795690Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-09-07T06:19:12.9796156Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-09-07T06:19:12.9796621Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-09-07T06:19:12.9797088Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-09-07T06:19:12.9797560Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-09-07T06:19:12.9798023Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-09-07T06:19:12.9798495Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-09-07T06:19:12.9798953Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-09-07T06:19:12.9799420Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-09-07T06:19:12.9799885Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-09-07T06:19:12.9800350Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-09-07T06:19:12.9800826Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-09-07T06:19:12.9801288Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-09-07T06:19:12.9801757Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-09-07T06:19:12.9802229Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-09-07T06:19:12.9802729Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-09-07T06:19:12.9803234Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-09-07T06:19:12.9803696Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-09-07T06:19:12.9804163Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-09-07T06:19:12.9804642Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-09-07T06:19:12.9805188Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-09-07T06:19:12.9805667Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-09-07T06:19:12.9806130Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-09-07T06:19:12.9806601Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-09-07T06:19:12.9807073Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-09-07T06:19:12.9807539Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-09-07T06:19:12.9808014Z * [new branch] gh/H-Huang/211/base -> origin/gh/H-Huang/211/base 2025-09-07T06:19:12.9808475Z * [new branch] gh/H-Huang/211/head -> origin/gh/H-Huang/211/head 2025-09-07T06:19:12.9809037Z * [new branch] gh/H-Huang/211/orig -> origin/gh/H-Huang/211/orig 2025-09-07T06:19:12.9809501Z * [new branch] gh/H-Huang/212/base -> origin/gh/H-Huang/212/base 2025-09-07T06:19:12.9809982Z * [new branch] gh/H-Huang/212/head -> origin/gh/H-Huang/212/head 2025-09-07T06:19:12.9810457Z * [new branch] gh/H-Huang/212/orig -> origin/gh/H-Huang/212/orig 2025-09-07T06:19:12.9810916Z * [new branch] gh/H-Huang/213/base -> origin/gh/H-Huang/213/base 2025-09-07T06:19:12.9811389Z * [new branch] gh/H-Huang/213/head -> origin/gh/H-Huang/213/head 2025-09-07T06:19:12.9811849Z * [new branch] gh/H-Huang/213/orig -> origin/gh/H-Huang/213/orig 2025-09-07T06:19:12.9812320Z * [new branch] gh/H-Huang/214/base -> origin/gh/H-Huang/214/base 2025-09-07T06:19:12.9812797Z * [new branch] gh/H-Huang/214/head -> origin/gh/H-Huang/214/head 2025-09-07T06:19:12.9813269Z * [new branch] gh/H-Huang/214/orig -> origin/gh/H-Huang/214/orig 2025-09-07T06:19:12.9813786Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-09-07T06:19:12.9814322Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-09-07T06:19:12.9814859Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-09-07T06:19:12.9815397Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-09-07T06:19:12.9815930Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-09-07T06:19:12.9816470Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-09-07T06:19:12.9816997Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-09-07T06:19:12.9817537Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-09-07T06:19:12.9818062Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-09-07T06:19:12.9818684Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-09-07T06:19:12.9819237Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-09-07T06:19:12.9819767Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-09-07T06:19:12.9820310Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-09-07T06:19:12.9820846Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-09-07T06:19:12.9821389Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-09-07T06:19:12.9821926Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-09-07T06:19:12.9822540Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-09-07T06:19:12.9823077Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-09-07T06:19:12.9823608Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-09-07T06:19:12.9824148Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-09-07T06:19:12.9824689Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-09-07T06:19:12.9825322Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-09-07T06:19:12.9825860Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-09-07T06:19:12.9826390Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-09-07T06:19:12.9827506Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-09-07T06:19:12.9828059Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-09-07T06:19:12.9828592Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-09-07T06:19:12.9829133Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-09-07T06:19:12.9829671Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-09-07T06:19:12.9830217Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-09-07T06:19:12.9830761Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-09-07T06:19:12.9831288Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-09-07T06:19:12.9831831Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-09-07T06:19:12.9832362Z * [new branch] gh/IvanKobzarev/136/base -> origin/gh/IvanKobzarev/136/base 2025-09-07T06:19:12.9832900Z * [new branch] gh/IvanKobzarev/136/head -> origin/gh/IvanKobzarev/136/head 2025-09-07T06:19:12.9833438Z * [new branch] gh/IvanKobzarev/136/orig -> origin/gh/IvanKobzarev/136/orig 2025-09-07T06:19:12.9833972Z * [new branch] gh/IvanKobzarev/137/base -> origin/gh/IvanKobzarev/137/base 2025-09-07T06:19:12.9834510Z * [new branch] gh/IvanKobzarev/137/head -> origin/gh/IvanKobzarev/137/head 2025-09-07T06:19:12.9835043Z * [new branch] gh/IvanKobzarev/137/orig -> origin/gh/IvanKobzarev/137/orig 2025-09-07T06:19:12.9835581Z * [new branch] gh/IvanKobzarev/138/base -> origin/gh/IvanKobzarev/138/base 2025-09-07T06:19:12.9836115Z * [new branch] gh/IvanKobzarev/138/head -> origin/gh/IvanKobzarev/138/head 2025-09-07T06:19:12.9836663Z * [new branch] gh/IvanKobzarev/138/orig -> origin/gh/IvanKobzarev/138/orig 2025-09-07T06:19:12.9837209Z * [new branch] gh/IvanKobzarev/139/base -> origin/gh/IvanKobzarev/139/base 2025-09-07T06:19:12.9837740Z * [new branch] gh/IvanKobzarev/139/head -> origin/gh/IvanKobzarev/139/head 2025-09-07T06:19:12.9838284Z * [new branch] gh/IvanKobzarev/139/orig -> origin/gh/IvanKobzarev/139/orig 2025-09-07T06:19:12.9838809Z * [new branch] gh/IvanKobzarev/140/base -> origin/gh/IvanKobzarev/140/base 2025-09-07T06:19:12.9839356Z * [new branch] gh/IvanKobzarev/140/head -> origin/gh/IvanKobzarev/140/head 2025-09-07T06:19:12.9839898Z * [new branch] gh/IvanKobzarev/140/orig -> origin/gh/IvanKobzarev/140/orig 2025-09-07T06:19:12.9840426Z * [new branch] gh/IvanKobzarev/141/base -> origin/gh/IvanKobzarev/141/base 2025-09-07T06:19:12.9841060Z * [new branch] gh/IvanKobzarev/141/head -> origin/gh/IvanKobzarev/141/head 2025-09-07T06:19:12.9841602Z * [new branch] gh/IvanKobzarev/141/orig -> origin/gh/IvanKobzarev/141/orig 2025-09-07T06:19:12.9842152Z * [new branch] gh/IvanKobzarev/142/base -> origin/gh/IvanKobzarev/142/base 2025-09-07T06:19:12.9842701Z * [new branch] gh/IvanKobzarev/142/head -> origin/gh/IvanKobzarev/142/head 2025-09-07T06:19:12.9843235Z * [new branch] gh/IvanKobzarev/142/orig -> origin/gh/IvanKobzarev/142/orig 2025-09-07T06:19:12.9843785Z * [new branch] gh/IvanKobzarev/143/base -> origin/gh/IvanKobzarev/143/base 2025-09-07T06:19:12.9844314Z * [new branch] gh/IvanKobzarev/143/head -> origin/gh/IvanKobzarev/143/head 2025-09-07T06:19:12.9844854Z * [new branch] gh/IvanKobzarev/143/orig -> origin/gh/IvanKobzarev/143/orig 2025-09-07T06:19:12.9845468Z * [new branch] gh/IvanKobzarev/144/base -> origin/gh/IvanKobzarev/144/base 2025-09-07T06:19:12.9846002Z * [new branch] gh/IvanKobzarev/144/head -> origin/gh/IvanKobzarev/144/head 2025-09-07T06:19:12.9846545Z * [new branch] gh/IvanKobzarev/144/orig -> origin/gh/IvanKobzarev/144/orig 2025-09-07T06:19:12.9847079Z * [new branch] gh/IvanKobzarev/145/base -> origin/gh/IvanKobzarev/145/base 2025-09-07T06:19:12.9847619Z * [new branch] gh/IvanKobzarev/145/head -> origin/gh/IvanKobzarev/145/head 2025-09-07T06:19:12.9848158Z * [new branch] gh/IvanKobzarev/145/orig -> origin/gh/IvanKobzarev/145/orig 2025-09-07T06:19:12.9848687Z * [new branch] gh/IvanKobzarev/146/base -> origin/gh/IvanKobzarev/146/base 2025-09-07T06:19:12.9849299Z * [new branch] gh/IvanKobzarev/146/head -> origin/gh/IvanKobzarev/146/head 2025-09-07T06:19:12.9849877Z * [new branch] gh/IvanKobzarev/146/orig -> origin/gh/IvanKobzarev/146/orig 2025-09-07T06:19:12.9850431Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-09-07T06:19:12.9850957Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-09-07T06:19:12.9851482Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-09-07T06:19:12.9852002Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-09-07T06:19:12.9852522Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-09-07T06:19:12.9853054Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-09-07T06:19:12.9853543Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-09-07T06:19:12.9854009Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-09-07T06:19:12.9854471Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-09-07T06:19:12.9854932Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-09-07T06:19:12.9855402Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-09-07T06:19:12.9855855Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-09-07T06:19:12.9856313Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-09-07T06:19:12.9856779Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-09-07T06:19:12.9857230Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-09-07T06:19:12.9857691Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-09-07T06:19:12.9858143Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-09-07T06:19:12.9858612Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-09-07T06:19:12.9859527Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-09-07T06:19:12.9860002Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-09-07T06:19:12.9860464Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-09-07T06:19:12.9860925Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-09-07T06:19:12.9861394Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-09-07T06:19:12.9861849Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-09-07T06:19:12.9862314Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-09-07T06:19:12.9862786Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-09-07T06:19:12.9863314Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-09-07T06:19:12.9863797Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-09-07T06:19:12.9864250Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-09-07T06:19:12.9864715Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-09-07T06:19:12.9865271Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-09-07T06:19:12.9865731Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-09-07T06:19:12.9866205Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-09-07T06:19:12.9866702Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-09-07T06:19:12.9867230Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-09-07T06:19:12.9867766Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-09-07T06:19:12.9868282Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-09-07T06:19:12.9868801Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-09-07T06:19:12.9869311Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-09-07T06:19:12.9869830Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-09-07T06:19:12.9870333Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-09-07T06:19:12.9870845Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-09-07T06:19:12.9871367Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-09-07T06:19:12.9871876Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-09-07T06:19:12.9872402Z * [new branch] gh/PaulZhang12/23/base -> origin/gh/PaulZhang12/23/base 2025-09-07T06:19:12.9872908Z * [new branch] gh/PaulZhang12/23/head -> origin/gh/PaulZhang12/23/head 2025-09-07T06:19:12.9873422Z * [new branch] gh/PaulZhang12/23/orig -> origin/gh/PaulZhang12/23/orig 2025-09-07T06:19:12.9873935Z * [new branch] gh/PaulZhang12/24/base -> origin/gh/PaulZhang12/24/base 2025-09-07T06:19:12.9874445Z * [new branch] gh/PaulZhang12/24/head -> origin/gh/PaulZhang12/24/head 2025-09-07T06:19:12.9874959Z * [new branch] gh/PaulZhang12/24/orig -> origin/gh/PaulZhang12/24/orig 2025-09-07T06:19:12.9875464Z * [new branch] gh/PaulZhang12/25/base -> origin/gh/PaulZhang12/25/base 2025-09-07T06:19:12.9875988Z * [new branch] gh/PaulZhang12/25/head -> origin/gh/PaulZhang12/25/head 2025-09-07T06:19:12.9876504Z * [new branch] gh/PaulZhang12/25/orig -> origin/gh/PaulZhang12/25/orig 2025-09-07T06:19:12.9877104Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-09-07T06:19:12.9877629Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-09-07T06:19:12.9878173Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-09-07T06:19:12.9878740Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-09-07T06:19:12.9879298Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-09-07T06:19:12.9879845Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-09-07T06:19:12.9880388Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-09-07T06:19:12.9880887Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-09-07T06:19:12.9881489Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-09-07T06:19:12.9882009Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-09-07T06:19:12.9882519Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-09-07T06:19:12.9883038Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-09-07T06:19:12.9883546Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-09-07T06:19:12.9884060Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-09-07T06:19:12.9884567Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-09-07T06:19:12.9885077Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-09-07T06:19:12.9885592Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-09-07T06:19:12.9886100Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-09-07T06:19:12.9886617Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-09-07T06:19:12.9887121Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-09-07T06:19:12.9887636Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-09-07T06:19:12.9888156Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-09-07T06:19:12.9888658Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-09-07T06:19:12.9889178Z * [new branch] gh/StrongerXi/139/base -> origin/gh/StrongerXi/139/base 2025-09-07T06:19:12.9889682Z * [new branch] gh/StrongerXi/139/head -> origin/gh/StrongerXi/139/head 2025-09-07T06:19:12.9890204Z * [new branch] gh/StrongerXi/139/orig -> origin/gh/StrongerXi/139/orig 2025-09-07T06:19:12.9890724Z * [new branch] gh/StrongerXi/140/base -> origin/gh/StrongerXi/140/base 2025-09-07T06:19:12.9891230Z * [new branch] gh/StrongerXi/140/head -> origin/gh/StrongerXi/140/head 2025-09-07T06:19:12.9891750Z * [new branch] gh/StrongerXi/140/orig -> origin/gh/StrongerXi/140/orig 2025-09-07T06:19:12.9892259Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-09-07T06:19:12.9892782Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-09-07T06:19:12.9893303Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-09-07T06:19:12.9893799Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-09-07T06:19:12.9894305Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-09-07T06:19:12.9894869Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-09-07T06:19:12.9895359Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-09-07T06:19:12.9895838Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-09-07T06:19:12.9896337Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-09-07T06:19:12.9896819Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-09-07T06:19:12.9897295Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-09-07T06:19:12.9897776Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-09-07T06:19:12.9898249Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-09-07T06:19:12.9898816Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-09-07T06:19:12.9899309Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-09-07T06:19:12.9899789Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-09-07T06:19:12.9900273Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-09-07T06:19:12.9900752Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-09-07T06:19:12.9901240Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-09-07T06:19:12.9901716Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-09-07T06:19:12.9902195Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-09-07T06:19:12.9902673Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-09-07T06:19:12.9903152Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-09-07T06:19:12.9903634Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-09-07T06:19:12.9904120Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-09-07T06:19:12.9904594Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-09-07T06:19:12.9905225Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-09-07T06:19:12.9905749Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-09-07T06:19:12.9906234Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-09-07T06:19:12.9906705Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-09-07T06:19:12.9907195Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-09-07T06:19:12.9907684Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-09-07T06:19:12.9908159Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-09-07T06:19:12.9908637Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-09-07T06:19:12.9909114Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-09-07T06:19:12.9909600Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-09-07T06:19:12.9910078Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-09-07T06:19:12.9910550Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-09-07T06:19:12.9911034Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-09-07T06:19:12.9911513Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-09-07T06:19:12.9912091Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-09-07T06:19:12.9912578Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-09-07T06:19:12.9913052Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-09-07T06:19:12.9913531Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-09-07T06:19:12.9914013Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-09-07T06:19:12.9914503Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-09-07T06:19:12.9914984Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-09-07T06:19:12.9915461Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-09-07T06:19:12.9916029Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-09-07T06:19:12.9916505Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-09-07T06:19:12.9916990Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-09-07T06:19:12.9917471Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-09-07T06:19:12.9917958Z * [new branch] gh/XilunWu/164/base -> origin/gh/XilunWu/164/base 2025-09-07T06:19:12.9918436Z * [new branch] gh/XilunWu/164/head -> origin/gh/XilunWu/164/head 2025-09-07T06:19:12.9918911Z * [new branch] gh/XilunWu/164/orig -> origin/gh/XilunWu/164/orig 2025-09-07T06:19:12.9919387Z * [new branch] gh/XilunWu/165/base -> origin/gh/XilunWu/165/base 2025-09-07T06:19:12.9919863Z * [new branch] gh/XilunWu/165/head -> origin/gh/XilunWu/165/head 2025-09-07T06:19:12.9920352Z * [new branch] gh/XilunWu/165/orig -> origin/gh/XilunWu/165/orig 2025-09-07T06:19:12.9920833Z * [new branch] gh/XilunWu/166/base -> origin/gh/XilunWu/166/base 2025-09-07T06:19:12.9921311Z * [new branch] gh/XilunWu/166/head -> origin/gh/XilunWu/166/head 2025-09-07T06:19:12.9921786Z * [new branch] gh/XilunWu/166/orig -> origin/gh/XilunWu/166/orig 2025-09-07T06:19:12.9922261Z * [new branch] gh/XilunWu/167/base -> origin/gh/XilunWu/167/base 2025-09-07T06:19:12.9922744Z * [new branch] gh/XilunWu/167/head -> origin/gh/XilunWu/167/head 2025-09-07T06:19:12.9923235Z * [new branch] gh/XilunWu/167/orig -> origin/gh/XilunWu/167/orig 2025-09-07T06:19:12.9923713Z * [new branch] gh/XilunWu/168/base -> origin/gh/XilunWu/168/base 2025-09-07T06:19:12.9924199Z * [new branch] gh/XilunWu/168/head -> origin/gh/XilunWu/168/head 2025-09-07T06:19:12.9924682Z * [new branch] gh/XilunWu/168/orig -> origin/gh/XilunWu/168/orig 2025-09-07T06:19:12.9925164Z * [new branch] gh/XilunWu/169/base -> origin/gh/XilunWu/169/base 2025-09-07T06:19:12.9925655Z * [new branch] gh/XilunWu/169/head -> origin/gh/XilunWu/169/head 2025-09-07T06:19:12.9926130Z * [new branch] gh/XilunWu/169/orig -> origin/gh/XilunWu/169/orig 2025-09-07T06:19:12.9926610Z * [new branch] gh/XilunWu/170/base -> origin/gh/XilunWu/170/base 2025-09-07T06:19:12.9927096Z * [new branch] gh/XilunWu/170/head -> origin/gh/XilunWu/170/head 2025-09-07T06:19:12.9927577Z * [new branch] gh/XilunWu/170/orig -> origin/gh/XilunWu/170/orig 2025-09-07T06:19:12.9928058Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-09-07T06:19:12.9928567Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-09-07T06:19:12.9929146Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-09-07T06:19:12.9929646Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-09-07T06:19:12.9930152Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-09-07T06:19:12.9930650Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-09-07T06:19:12.9931160Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-09-07T06:19:12.9931671Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-09-07T06:19:12.9932175Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-09-07T06:19:12.9932683Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-09-07T06:19:12.9933253Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-09-07T06:19:12.9933765Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-09-07T06:19:12.9934274Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-09-07T06:19:12.9934770Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-09-07T06:19:12.9935278Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-09-07T06:19:12.9935773Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-09-07T06:19:12.9936277Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-09-07T06:19:12.9936784Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-09-07T06:19:12.9937276Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-09-07T06:19:12.9937837Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-09-07T06:19:12.9938370Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-09-07T06:19:12.9938979Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-09-07T06:19:12.9939639Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-09-07T06:19:12.9940203Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-09-07T06:19:12.9940738Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-09-07T06:19:12.9941320Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-09-07T06:19:12.9941857Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-09-07T06:19:12.9942412Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-09-07T06:19:12.9943001Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-09-07T06:19:12.9943539Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-09-07T06:19:12.9944103Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-09-07T06:19:12.9944656Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-09-07T06:19:12.9945303Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-09-07T06:19:12.9945874Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-09-07T06:19:12.9946429Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-09-07T06:19:12.9947001Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-09-07T06:19:12.9947639Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-09-07T06:19:12.9978288Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-09-07T06:19:12.9978858Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-09-07T06:19:12.9979362Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-09-07T06:19:12.9979876Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-09-07T06:19:12.9980375Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-09-07T06:19:12.9980944Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-09-07T06:19:12.9981506Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-09-07T06:19:12.9982172Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-09-07T06:19:12.9982674Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-09-07T06:19:12.9983171Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-09-07T06:19:12.9983679Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-09-07T06:19:12.9984162Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-09-07T06:19:12.9984668Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-09-07T06:19:12.9985254Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-09-07T06:19:12.9985749Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-09-07T06:19:12.9986257Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-09-07T06:19:12.9986760Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-09-07T06:19:12.9987290Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-09-07T06:19:12.9987798Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-09-07T06:19:12.9988289Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-09-07T06:19:12.9988792Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-09-07T06:19:12.9989288Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-09-07T06:19:12.9989792Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-09-07T06:19:12.9990288Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-09-07T06:19:12.9990783Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-09-07T06:19:12.9991296Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-09-07T06:19:12.9991784Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-09-07T06:19:12.9992285Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-09-07T06:19:12.9992797Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-09-07T06:19:12.9993291Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-09-07T06:19:12.9993788Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-09-07T06:19:12.9994281Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-09-07T06:19:12.9994792Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-09-07T06:19:12.9995289Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-09-07T06:19:12.9995903Z * [new branch] gh/XuehaiPan/380/base -> origin/gh/XuehaiPan/380/base 2025-09-07T06:19:12.9996423Z * [new branch] gh/XuehaiPan/380/head -> origin/gh/XuehaiPan/380/head 2025-09-07T06:19:12.9996917Z * [new branch] gh/XuehaiPan/380/orig -> origin/gh/XuehaiPan/380/orig 2025-09-07T06:19:12.9997420Z * [new branch] gh/XuehaiPan/381/base -> origin/gh/XuehaiPan/381/base 2025-09-07T06:19:12.9997918Z * [new branch] gh/XuehaiPan/381/head -> origin/gh/XuehaiPan/381/head 2025-09-07T06:19:12.9998426Z * [new branch] gh/XuehaiPan/382/base -> origin/gh/XuehaiPan/382/base 2025-09-07T06:19:12.9998931Z * [new branch] gh/XuehaiPan/382/head -> origin/gh/XuehaiPan/382/head 2025-09-07T06:19:12.9999427Z * [new branch] gh/XuehaiPan/382/orig -> origin/gh/XuehaiPan/382/orig 2025-09-07T06:19:13.0000014Z * [new branch] gh/XuehaiPan/383/base -> origin/gh/XuehaiPan/383/base 2025-09-07T06:19:13.0000510Z * [new branch] gh/XuehaiPan/383/head -> origin/gh/XuehaiPan/383/head 2025-09-07T06:19:13.0001024Z * [new branch] gh/XuehaiPan/383/orig -> origin/gh/XuehaiPan/383/orig 2025-09-07T06:19:13.0001534Z * [new branch] gh/XuehaiPan/384/base -> origin/gh/XuehaiPan/384/base 2025-09-07T06:19:13.0002028Z * [new branch] gh/XuehaiPan/384/head -> origin/gh/XuehaiPan/384/head 2025-09-07T06:19:13.0002539Z * [new branch] gh/XuehaiPan/384/orig -> origin/gh/XuehaiPan/384/orig 2025-09-07T06:19:13.0003033Z * [new branch] gh/XuehaiPan/385/base -> origin/gh/XuehaiPan/385/base 2025-09-07T06:19:13.0003541Z * [new branch] gh/XuehaiPan/385/head -> origin/gh/XuehaiPan/385/head 2025-09-07T06:19:13.0004050Z * [new branch] gh/XuehaiPan/385/orig -> origin/gh/XuehaiPan/385/orig 2025-09-07T06:19:13.0004552Z * [new branch] gh/XuehaiPan/386/base -> origin/gh/XuehaiPan/386/base 2025-09-07T06:19:13.0005055Z * [new branch] gh/XuehaiPan/386/head -> origin/gh/XuehaiPan/386/head 2025-09-07T06:19:13.0005553Z * [new branch] gh/XuehaiPan/386/orig -> origin/gh/XuehaiPan/386/orig 2025-09-07T06:19:13.0006128Z * [new branch] gh/XuehaiPan/387/base -> origin/gh/XuehaiPan/387/base 2025-09-07T06:19:13.0006666Z * [new branch] gh/XuehaiPan/387/head -> origin/gh/XuehaiPan/387/head 2025-09-07T06:19:13.0007183Z * [new branch] gh/XuehaiPan/387/orig -> origin/gh/XuehaiPan/387/orig 2025-09-07T06:19:13.0007693Z * [new branch] gh/ZainRizvi/1/base -> origin/gh/ZainRizvi/1/base 2025-09-07T06:19:13.0008192Z * [new branch] gh/ZainRizvi/1/head -> origin/gh/ZainRizvi/1/head 2025-09-07T06:19:13.0008696Z * [new branch] gh/ZainRizvi/2/base -> origin/gh/ZainRizvi/2/base 2025-09-07T06:19:13.0009186Z * [new branch] gh/ZainRizvi/2/head -> origin/gh/ZainRizvi/2/head 2025-09-07T06:19:13.0009681Z * [new branch] gh/ZainRizvi/3/base -> origin/gh/ZainRizvi/3/base 2025-09-07T06:19:13.0010168Z * [new branch] gh/ZainRizvi/3/head -> origin/gh/ZainRizvi/3/head 2025-09-07T06:19:13.0010653Z * [new branch] gh/ZainRizvi/4/base -> origin/gh/ZainRizvi/4/base 2025-09-07T06:19:13.0011155Z * [new branch] gh/ZainRizvi/4/head -> origin/gh/ZainRizvi/4/head 2025-09-07T06:19:13.0011642Z * [new branch] gh/ZainRizvi/5/base -> origin/gh/ZainRizvi/5/base 2025-09-07T06:19:13.0012166Z * [new branch] gh/ZainRizvi/5/head -> origin/gh/ZainRizvi/5/head 2025-09-07T06:19:13.0012714Z * [new branch] gh/ZainRizvi/6/base -> origin/gh/ZainRizvi/6/base 2025-09-07T06:19:13.0013290Z * [new branch] gh/ZainRizvi/6/head -> origin/gh/ZainRizvi/6/head 2025-09-07T06:19:13.0013790Z * [new branch] gh/ZainRizvi/6/orig -> origin/gh/ZainRizvi/6/orig 2025-09-07T06:19:13.0014283Z * [new branch] gh/ZainRizvi/7/base -> origin/gh/ZainRizvi/7/base 2025-09-07T06:19:13.0014777Z * [new branch] gh/ZainRizvi/7/head -> origin/gh/ZainRizvi/7/head 2025-09-07T06:19:13.0015269Z * [new branch] gh/ZainRizvi/7/orig -> origin/gh/ZainRizvi/7/orig 2025-09-07T06:19:13.0015757Z * [new branch] gh/ZainRizvi/8/base -> origin/gh/ZainRizvi/8/base 2025-09-07T06:19:13.0016257Z * [new branch] gh/ZainRizvi/8/head -> origin/gh/ZainRizvi/8/head 2025-09-07T06:19:13.0016748Z * [new branch] gh/ZainRizvi/9/base -> origin/gh/ZainRizvi/9/base 2025-09-07T06:19:13.0017225Z * [new branch] gh/ZainRizvi/9/head -> origin/gh/ZainRizvi/9/head 2025-09-07T06:19:13.0017867Z * [new branch] gh/ZainRizvi/9/orig -> origin/gh/ZainRizvi/9/orig 2025-09-07T06:19:13.0018447Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-09-07T06:19:13.0019017Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-09-07T06:19:13.0019565Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-09-07T06:19:13.0020148Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-09-07T06:19:13.0020704Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-09-07T06:19:13.0021285Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-09-07T06:19:13.0021830Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-09-07T06:19:13.0022425Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-09-07T06:19:13.0022973Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-09-07T06:19:13.0023527Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-09-07T06:19:13.0024149Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-09-07T06:19:13.0024664Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-09-07T06:19:13.0025252Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-09-07T06:19:13.0025771Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-09-07T06:19:13.0026292Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-09-07T06:19:13.0026801Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-09-07T06:19:13.0027330Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-09-07T06:19:13.0027836Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-09-07T06:19:13.0028390Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-09-07T06:19:13.0028939Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-09-07T06:19:13.0029485Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-09-07T06:19:13.0030091Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-09-07T06:19:13.0030634Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-09-07T06:19:13.0031228Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-09-07T06:19:13.0031783Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-09-07T06:19:13.0032451Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-09-07T06:19:13.0033031Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-09-07T06:19:13.0033558Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-09-07T06:19:13.0034112Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-09-07T06:19:13.0034696Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-09-07T06:19:13.0035210Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-09-07T06:19:13.0035998Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-09-07T06:19:13.0036965Z * [new branch] gh/alexsamardzic/9/base -> origin/gh/alexsamardzic/9/base 2025-09-07T06:19:13.0037551Z * [new branch] gh/alexsamardzic/9/head -> origin/gh/alexsamardzic/9/head 2025-09-07T06:19:13.0038171Z * [new branch] gh/alexsamardzic/9/orig -> origin/gh/alexsamardzic/9/orig 2025-09-07T06:19:13.0038722Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-09-07T06:19:13.0039285Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-09-07T06:19:13.0039800Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-09-07T06:19:13.0040373Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-09-07T06:19:13.0040913Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-09-07T06:19:13.0041454Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-09-07T06:19:13.0042034Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-09-07T06:19:13.0042567Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-09-07T06:19:13.0043142Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-09-07T06:19:13.0043670Z * [new branch] gh/andrewor14/51/base -> origin/gh/andrewor14/51/base 2025-09-07T06:19:13.0044250Z * [new branch] gh/andrewor14/51/orig -> origin/gh/andrewor14/51/orig 2025-09-07T06:19:13.0044787Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-09-07T06:19:13.0045357Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-09-07T06:19:13.0045903Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-09-07T06:19:13.0046440Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-09-07T06:19:13.0047044Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-09-07T06:19:13.0047584Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-09-07T06:19:13.0048161Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-09-07T06:19:13.0048697Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-09-07T06:19:13.0049262Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-09-07T06:19:13.0049800Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-09-07T06:19:13.0050374Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-09-07T06:19:13.0050917Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-09-07T06:19:13.0051464Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-09-07T06:19:13.0052126Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-09-07T06:19:13.0052716Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-09-07T06:19:13.0053254Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-09-07T06:19:13.0053800Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-09-07T06:19:13.0054384Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-09-07T06:19:13.0054916Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-09-07T06:19:13.0055504Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-09-07T06:19:13.0056041Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-09-07T06:19:13.0056713Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-09-07T06:19:13.0057261Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-09-07T06:19:13.0057835Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-09-07T06:19:13.0058379Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-09-07T06:19:13.0058953Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-09-07T06:19:13.0059497Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-09-07T06:19:13.0060079Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-09-07T06:19:13.0060612Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-09-07T06:19:13.0061153Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-09-07T06:19:13.0061729Z * [new branch] gh/angelayi/111/base -> origin/gh/angelayi/111/base 2025-09-07T06:19:13.0062270Z * [new branch] gh/angelayi/111/head -> origin/gh/angelayi/111/head 2025-09-07T06:19:13.0062848Z * [new branch] gh/angelayi/111/orig -> origin/gh/angelayi/111/orig 2025-09-07T06:19:13.0063373Z * [new branch] gh/angelayi/112/base -> origin/gh/angelayi/112/base 2025-09-07T06:19:13.0063954Z * [new branch] gh/angelayi/112/head -> origin/gh/angelayi/112/head 2025-09-07T06:19:13.0064476Z * [new branch] gh/angelayi/112/orig -> origin/gh/angelayi/112/orig 2025-09-07T06:19:13.0065011Z * [new branch] gh/angelayi/113/base -> origin/gh/angelayi/113/base 2025-09-07T06:19:13.0065629Z * [new branch] gh/angelayi/113/head -> origin/gh/angelayi/113/head 2025-09-07T06:19:13.0066182Z * [new branch] gh/angelayi/113/orig -> origin/gh/angelayi/113/orig 2025-09-07T06:19:13.0066746Z * [new branch] gh/angelayi/114/base -> origin/gh/angelayi/114/base 2025-09-07T06:19:13.0067278Z * [new branch] gh/angelayi/114/head -> origin/gh/angelayi/114/head 2025-09-07T06:19:13.0067768Z * [new branch] gh/angelayi/114/orig -> origin/gh/angelayi/114/orig 2025-09-07T06:19:13.0068248Z * [new branch] gh/angelayi/115/base -> origin/gh/angelayi/115/base 2025-09-07T06:19:13.0068746Z * [new branch] gh/angelayi/115/head -> origin/gh/angelayi/115/head 2025-09-07T06:19:13.0069247Z * [new branch] gh/angelayi/115/orig -> origin/gh/angelayi/115/orig 2025-09-07T06:19:13.0069750Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-09-07T06:19:13.0070274Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-09-07T06:19:13.0070885Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-09-07T06:19:13.0071410Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-09-07T06:19:13.0071937Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-09-07T06:19:13.0072486Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-09-07T06:19:13.0073047Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-09-07T06:19:13.0073601Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-09-07T06:19:13.0074118Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-09-07T06:19:13.0074634Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-09-07T06:19:13.0075218Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-09-07T06:19:13.0075745Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-09-07T06:19:13.0076258Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-09-07T06:19:13.0076788Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-09-07T06:19:13.0077296Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-09-07T06:19:13.0077812Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-09-07T06:19:13.0078318Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-09-07T06:19:13.0078918Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-09-07T06:19:13.0079475Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-09-07T06:19:13.0079979Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-09-07T06:19:13.0080492Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-09-07T06:19:13.0080996Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-09-07T06:19:13.0081500Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-09-07T06:19:13.0082016Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-09-07T06:19:13.0082520Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-09-07T06:19:13.0083033Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-09-07T06:19:13.0083535Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-09-07T06:19:13.0084054Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-09-07T06:19:13.0084616Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-09-07T06:19:13.0085166Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-09-07T06:19:13.0085720Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-09-07T06:19:13.0086227Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-09-07T06:19:13.0086740Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-09-07T06:19:13.0087259Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-09-07T06:19:13.0087763Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-09-07T06:19:13.0088274Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-09-07T06:19:13.0088872Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-09-07T06:19:13.0089396Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-09-07T06:19:13.0089897Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-09-07T06:19:13.0090417Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-09-07T06:19:13.0090976Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-09-07T06:19:13.0091563Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-09-07T06:19:13.0092078Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-09-07T06:19:13.0092583Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-09-07T06:19:13.0093189Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-09-07T06:19:13.0093710Z * [new branch] gh/anijain2305/849/base -> origin/gh/anijain2305/849/base 2025-09-07T06:19:13.0094227Z * [new branch] gh/anijain2305/849/head -> origin/gh/anijain2305/849/head 2025-09-07T06:19:13.0094752Z * [new branch] gh/anijain2305/849/orig -> origin/gh/anijain2305/849/orig 2025-09-07T06:19:13.0095257Z * [new branch] gh/anijain2305/850/base -> origin/gh/anijain2305/850/base 2025-09-07T06:19:13.0095774Z * [new branch] gh/anijain2305/850/head -> origin/gh/anijain2305/850/head 2025-09-07T06:19:13.0096294Z * [new branch] gh/anijain2305/850/orig -> origin/gh/anijain2305/850/orig 2025-09-07T06:19:13.0096800Z * [new branch] gh/anijain2305/851/base -> origin/gh/anijain2305/851/base 2025-09-07T06:19:13.0097312Z * [new branch] gh/anijain2305/851/head -> origin/gh/anijain2305/851/head 2025-09-07T06:19:13.0097821Z * [new branch] gh/anijain2305/851/orig -> origin/gh/anijain2305/851/orig 2025-09-07T06:19:13.0098333Z * [new branch] gh/anijain2305/852/base -> origin/gh/anijain2305/852/base 2025-09-07T06:19:13.0098845Z * [new branch] gh/anijain2305/852/head -> origin/gh/anijain2305/852/head 2025-09-07T06:19:13.0099350Z * [new branch] gh/anijain2305/852/orig -> origin/gh/anijain2305/852/orig 2025-09-07T06:19:13.0099866Z * [new branch] gh/anijain2305/853/base -> origin/gh/anijain2305/853/base 2025-09-07T06:19:13.0100368Z * [new branch] gh/anijain2305/853/head -> origin/gh/anijain2305/853/head 2025-09-07T06:19:13.0100888Z * [new branch] gh/anijain2305/853/orig -> origin/gh/anijain2305/853/orig 2025-09-07T06:19:13.0101410Z * [new branch] gh/anijain2305/854/base -> origin/gh/anijain2305/854/base 2025-09-07T06:19:13.0101967Z * [new branch] gh/anijain2305/854/head -> origin/gh/anijain2305/854/head 2025-09-07T06:19:13.0102560Z * [new branch] gh/anijain2305/854/orig -> origin/gh/anijain2305/854/orig 2025-09-07T06:19:13.0103104Z * [new branch] gh/anijain2305/855/base -> origin/gh/anijain2305/855/base 2025-09-07T06:19:13.0103622Z * [new branch] gh/anijain2305/855/head -> origin/gh/anijain2305/855/head 2025-09-07T06:19:13.0104137Z * [new branch] gh/anijain2305/855/orig -> origin/gh/anijain2305/855/orig 2025-09-07T06:19:13.0104643Z * [new branch] gh/anijain2305/856/base -> origin/gh/anijain2305/856/base 2025-09-07T06:19:13.0105241Z * [new branch] gh/anijain2305/856/head -> origin/gh/anijain2305/856/head 2025-09-07T06:19:13.0105749Z * [new branch] gh/anijain2305/856/orig -> origin/gh/anijain2305/856/orig 2025-09-07T06:19:13.0106272Z * [new branch] gh/anijain2305/857/base -> origin/gh/anijain2305/857/base 2025-09-07T06:19:13.0106879Z * [new branch] gh/anijain2305/857/head -> origin/gh/anijain2305/857/head 2025-09-07T06:19:13.0107393Z * [new branch] gh/anijain2305/857/orig -> origin/gh/anijain2305/857/orig 2025-09-07T06:19:13.0107904Z * [new branch] gh/anijain2305/858/base -> origin/gh/anijain2305/858/base 2025-09-07T06:19:13.0108416Z * [new branch] gh/anijain2305/858/head -> origin/gh/anijain2305/858/head 2025-09-07T06:19:13.0108929Z * [new branch] gh/anijain2305/858/orig -> origin/gh/anijain2305/858/orig 2025-09-07T06:19:13.0109445Z * [new branch] gh/anijain2305/859/base -> origin/gh/anijain2305/859/base 2025-09-07T06:19:13.0109973Z * [new branch] gh/anijain2305/859/head -> origin/gh/anijain2305/859/head 2025-09-07T06:19:13.0110487Z * [new branch] gh/anijain2305/859/orig -> origin/gh/anijain2305/859/orig 2025-09-07T06:19:13.0111071Z * [new branch] gh/anijain2305/860/base -> origin/gh/anijain2305/860/base 2025-09-07T06:19:13.0111594Z * [new branch] gh/anijain2305/860/head -> origin/gh/anijain2305/860/head 2025-09-07T06:19:13.0112101Z * [new branch] gh/anijain2305/860/orig -> origin/gh/anijain2305/860/orig 2025-09-07T06:19:13.0112630Z * [new branch] gh/anijain2305/861/base -> origin/gh/anijain2305/861/base 2025-09-07T06:19:13.0113138Z * [new branch] gh/anijain2305/861/head -> origin/gh/anijain2305/861/head 2025-09-07T06:19:13.0113650Z * [new branch] gh/anijain2305/861/orig -> origin/gh/anijain2305/861/orig 2025-09-07T06:19:13.0114166Z * [new branch] gh/anijain2305/862/base -> origin/gh/anijain2305/862/base 2025-09-07T06:19:13.0114670Z * [new branch] gh/anijain2305/862/head -> origin/gh/anijain2305/862/head 2025-09-07T06:19:13.0115181Z * [new branch] gh/anijain2305/862/orig -> origin/gh/anijain2305/862/orig 2025-09-07T06:19:13.0116165Z * [new branch] gh/anijain2305/863/base -> origin/gh/anijain2305/863/base 2025-09-07T06:19:13.0116671Z * [new branch] gh/anijain2305/863/head -> origin/gh/anijain2305/863/head 2025-09-07T06:19:13.0117188Z * [new branch] gh/anijain2305/863/orig -> origin/gh/anijain2305/863/orig 2025-09-07T06:19:13.0117691Z * [new branch] gh/anijain2305/864/base -> origin/gh/anijain2305/864/base 2025-09-07T06:19:13.0118326Z * [new branch] gh/anijain2305/864/head -> origin/gh/anijain2305/864/head 2025-09-07T06:19:13.0118879Z * [new branch] gh/anijain2305/864/orig -> origin/gh/anijain2305/864/orig 2025-09-07T06:19:13.0119446Z * [new branch] gh/anijain2305/865/base -> origin/gh/anijain2305/865/base 2025-09-07T06:19:13.0119997Z * [new branch] gh/anijain2305/865/head -> origin/gh/anijain2305/865/head 2025-09-07T06:19:13.0120515Z * [new branch] gh/anijain2305/865/orig -> origin/gh/anijain2305/865/orig 2025-09-07T06:19:13.0121030Z * [new branch] gh/anijain2305/866/base -> origin/gh/anijain2305/866/base 2025-09-07T06:19:13.0121545Z * [new branch] gh/anijain2305/866/head -> origin/gh/anijain2305/866/head 2025-09-07T06:19:13.0122049Z * [new branch] gh/anijain2305/866/orig -> origin/gh/anijain2305/866/orig 2025-09-07T06:19:13.0122559Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-09-07T06:19:13.0123058Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-09-07T06:19:13.0123561Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-09-07T06:19:13.0124068Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-09-07T06:19:13.0124605Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-09-07T06:19:13.0125228Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-09-07T06:19:13.0125844Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-09-07T06:19:13.0126381Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-09-07T06:19:13.0126910Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-09-07T06:19:13.0127437Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-09-07T06:19:13.0127964Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-09-07T06:19:13.0128490Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-09-07T06:19:13.0129016Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-09-07T06:19:13.0129631Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-09-07T06:19:13.0130162Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-09-07T06:19:13.0130692Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-09-07T06:19:13.0131205Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-09-07T06:19:13.0131733Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-09-07T06:19:13.0132250Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-09-07T06:19:13.0132775Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-09-07T06:19:13.0133304Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-09-07T06:19:13.0133813Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-09-07T06:19:13.0134307Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-09-07T06:19:13.0134784Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-09-07T06:19:13.0135272Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-09-07T06:19:13.0135772Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-09-07T06:19:13.0136253Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-09-07T06:19:13.0136736Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-09-07T06:19:13.0137214Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-09-07T06:19:13.0137702Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-09-07T06:19:13.0138188Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-09-07T06:19:13.0138684Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-09-07T06:19:13.0139165Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-09-07T06:19:13.0139643Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-09-07T06:19:13.0140175Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-09-07T06:19:13.0140693Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-09-07T06:19:13.0141179Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-09-07T06:19:13.0141663Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-09-07T06:19:13.0142139Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-09-07T06:19:13.0142706Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-09-07T06:19:13.0143188Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-09-07T06:19:13.0143691Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-09-07T06:19:13.0144188Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-09-07T06:19:13.0144669Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-09-07T06:19:13.0145240Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-09-07T06:19:13.0145722Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-09-07T06:19:13.0146217Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-09-07T06:19:13.0147285Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-09-07T06:19:13.0147776Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-09-07T06:19:13.0148268Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-09-07T06:19:13.0148747Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-09-07T06:19:13.0149297Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-09-07T06:19:13.0149820Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-09-07T06:19:13.0150315Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-09-07T06:19:13.0150798Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-09-07T06:19:13.0151281Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-09-07T06:19:13.0151768Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-09-07T06:19:13.0152247Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-09-07T06:19:13.0152737Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-09-07T06:19:13.0153218Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-09-07T06:19:13.0153700Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-09-07T06:19:13.0154184Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-09-07T06:19:13.0154658Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-09-07T06:19:13.0155147Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-09-07T06:19:13.0155628Z * [new branch] gh/anshul-si/28/base -> origin/gh/anshul-si/28/base 2025-09-07T06:19:13.0155826Z * [new branch] gh/anshul-si/28/head -> origin/gh/anshul-si/28/head 2025-09-07T06:19:13.0156013Z * [new branch] gh/anshul-si/28/orig -> origin/gh/anshul-si/28/orig 2025-09-07T06:19:13.0156208Z * [new branch] gh/anshul-si/29/base -> origin/gh/anshul-si/29/base 2025-09-07T06:19:13.0156399Z * [new branch] gh/anshul-si/29/head -> origin/gh/anshul-si/29/head 2025-09-07T06:19:13.0156583Z * [new branch] gh/anshul-si/29/orig -> origin/gh/anshul-si/29/orig 2025-09-07T06:19:13.0156774Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-09-07T06:19:13.0156965Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-09-07T06:19:13.0157150Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-09-07T06:19:13.0157333Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-09-07T06:19:13.0157617Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-09-07T06:19:13.0157805Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-09-07T06:19:13.0158000Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-09-07T06:19:13.0158200Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-09-07T06:19:13.0158391Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-09-07T06:19:13.0158573Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-09-07T06:19:13.0158767Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-09-07T06:19:13.0158951Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-09-07T06:19:13.0159215Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-09-07T06:19:13.0159416Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-09-07T06:19:13.0159602Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-09-07T06:19:13.0159785Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-09-07T06:19:13.0159976Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-09-07T06:19:13.0160164Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-09-07T06:19:13.0160347Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-09-07T06:19:13.0160538Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-09-07T06:19:13.0160720Z * [new branch] gh/bdhirsh/667/base -> origin/gh/bdhirsh/667/base 2025-09-07T06:19:13.0160908Z * [new branch] gh/bdhirsh/667/head -> origin/gh/bdhirsh/667/head 2025-09-07T06:19:13.0161106Z * [new branch] gh/bdhirsh/667/orig -> origin/gh/bdhirsh/667/orig 2025-09-07T06:19:13.0161304Z * [new branch] gh/bdhirsh/668/base -> origin/gh/bdhirsh/668/base 2025-09-07T06:19:13.0161492Z * [new branch] gh/bdhirsh/668/head -> origin/gh/bdhirsh/668/head 2025-09-07T06:19:13.0161675Z * [new branch] gh/bdhirsh/668/orig -> origin/gh/bdhirsh/668/orig 2025-09-07T06:19:13.0161873Z * [new branch] gh/bdhirsh/669/base -> origin/gh/bdhirsh/669/base 2025-09-07T06:19:13.0162057Z * [new branch] gh/bdhirsh/669/head -> origin/gh/bdhirsh/669/head 2025-09-07T06:19:13.0162245Z * [new branch] gh/bdhirsh/669/orig -> origin/gh/bdhirsh/669/orig 2025-09-07T06:19:13.0162442Z * [new branch] gh/bdhirsh/670/base -> origin/gh/bdhirsh/670/base 2025-09-07T06:19:13.0162634Z * [new branch] gh/bdhirsh/670/head -> origin/gh/bdhirsh/670/head 2025-09-07T06:19:13.0162823Z * [new branch] gh/bdhirsh/670/orig -> origin/gh/bdhirsh/670/orig 2025-09-07T06:19:13.0163065Z * [new branch] gh/benjaminglass1/100/base -> origin/gh/benjaminglass1/100/base 2025-09-07T06:19:13.0163292Z * [new branch] gh/benjaminglass1/100/head -> origin/gh/benjaminglass1/100/head 2025-09-07T06:19:13.0163518Z * [new branch] gh/benjaminglass1/100/orig -> origin/gh/benjaminglass1/100/orig 2025-09-07T06:19:13.0163752Z * [new branch] gh/benjaminglass1/101/base -> origin/gh/benjaminglass1/101/base 2025-09-07T06:19:13.0163975Z * [new branch] gh/benjaminglass1/101/head -> origin/gh/benjaminglass1/101/head 2025-09-07T06:19:13.0164199Z * [new branch] gh/benjaminglass1/101/orig -> origin/gh/benjaminglass1/101/orig 2025-09-07T06:19:13.0164431Z * [new branch] gh/benjaminglass1/102/base -> origin/gh/benjaminglass1/102/base 2025-09-07T06:19:13.0165076Z * [new branch] gh/benjaminglass1/102/head -> origin/gh/benjaminglass1/102/head 2025-09-07T06:19:13.0165308Z * [new branch] gh/benjaminglass1/102/orig -> origin/gh/benjaminglass1/102/orig 2025-09-07T06:19:13.0165538Z * [new branch] gh/benjaminglass1/103/base -> origin/gh/benjaminglass1/103/base 2025-09-07T06:19:13.0165762Z * [new branch] gh/benjaminglass1/103/head -> origin/gh/benjaminglass1/103/head 2025-09-07T06:19:13.0165990Z * [new branch] gh/benjaminglass1/103/orig -> origin/gh/benjaminglass1/103/orig 2025-09-07T06:19:13.0166222Z * [new branch] gh/benjaminglass1/104/base -> origin/gh/benjaminglass1/104/base 2025-09-07T06:19:13.0166446Z * [new branch] gh/benjaminglass1/104/head -> origin/gh/benjaminglass1/104/head 2025-09-07T06:19:13.0166738Z * [new branch] gh/benjaminglass1/104/orig -> origin/gh/benjaminglass1/104/orig 2025-09-07T06:19:13.0166964Z * [new branch] gh/benjaminglass1/105/base -> origin/gh/benjaminglass1/105/base 2025-09-07T06:19:13.0167194Z * [new branch] gh/benjaminglass1/105/head -> origin/gh/benjaminglass1/105/head 2025-09-07T06:19:13.0167414Z * [new branch] gh/benjaminglass1/105/orig -> origin/gh/benjaminglass1/105/orig 2025-09-07T06:19:13.0167634Z * [new branch] gh/benjaminglass1/106/base -> origin/gh/benjaminglass1/106/base 2025-09-07T06:19:13.0167864Z * [new branch] gh/benjaminglass1/106/head -> origin/gh/benjaminglass1/106/head 2025-09-07T06:19:13.0168088Z * [new branch] gh/benjaminglass1/106/orig -> origin/gh/benjaminglass1/106/orig 2025-09-07T06:19:13.0168311Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-09-07T06:19:13.0168547Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-09-07T06:19:13.0168772Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-09-07T06:19:13.0168989Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-09-07T06:19:13.0169213Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-09-07T06:19:13.0169433Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-09-07T06:19:13.0169650Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-09-07T06:19:13.0169881Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-09-07T06:19:13.0170098Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-09-07T06:19:13.0170318Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-09-07T06:19:13.0170552Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-09-07T06:19:13.0170778Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-09-07T06:19:13.0170999Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-09-07T06:19:13.0171223Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-09-07T06:19:13.0171443Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-09-07T06:19:13.0171660Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-09-07T06:19:13.0171890Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-09-07T06:19:13.0172108Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-09-07T06:19:13.0172329Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-09-07T06:19:13.0172622Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-09-07T06:19:13.0172847Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-09-07T06:19:13.0173064Z * [new branch] gh/benjaminglass1/99/base -> origin/gh/benjaminglass1/99/base 2025-09-07T06:19:13.0173282Z * [new branch] gh/benjaminglass1/99/head -> origin/gh/benjaminglass1/99/head 2025-09-07T06:19:13.0173503Z * [new branch] gh/benjaminglass1/99/orig -> origin/gh/benjaminglass1/99/orig 2025-09-07T06:19:13.0173706Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-09-07T06:19:13.0173904Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-09-07T06:19:13.0174116Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-09-07T06:19:13.0174379Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-09-07T06:19:13.0174578Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-09-07T06:19:13.0174785Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-09-07T06:19:13.0175056Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-09-07T06:19:13.0175285Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-09-07T06:19:13.0175508Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-09-07T06:19:13.0175703Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-09-07T06:19:13.0175901Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-09-07T06:19:13.0176114Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-09-07T06:19:13.0176316Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-09-07T06:19:13.0176516Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-09-07T06:19:13.0176720Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-09-07T06:19:13.0176922Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-09-07T06:19:13.0177115Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-09-07T06:19:13.0177319Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-09-07T06:19:13.0177516Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-09-07T06:19:13.0177712Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-09-07T06:19:13.0177914Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-09-07T06:19:13.0178120Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-09-07T06:19:13.0178316Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-09-07T06:19:13.0178516Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-09-07T06:19:13.0178723Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-09-07T06:19:13.0178916Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-09-07T06:19:13.0179115Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-09-07T06:19:13.0179318Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-09-07T06:19:13.0179523Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-09-07T06:19:13.0179791Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-09-07T06:19:13.0179995Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-09-07T06:19:13.0180191Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-09-07T06:19:13.0180386Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-09-07T06:19:13.0180591Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-09-07T06:19:13.0180788Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-09-07T06:19:13.0180986Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-09-07T06:19:13.0181194Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-09-07T06:19:13.0181465Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-09-07T06:19:13.0181662Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-09-07T06:19:13.0181879Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-09-07T06:19:13.0182076Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-09-07T06:19:13.0182272Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-09-07T06:19:13.0182473Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-09-07T06:19:13.0182669Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-09-07T06:19:13.0182864Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-09-07T06:19:13.0183073Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-09-07T06:19:13.0183271Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-09-07T06:19:13.0183471Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-09-07T06:19:13.0183669Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-09-07T06:19:13.0183875Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-09-07T06:19:13.0184081Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-09-07T06:19:13.0184276Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-09-07T06:19:13.0184484Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-09-07T06:19:13.0184681Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-09-07T06:19:13.0184880Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-09-07T06:19:13.0185155Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-09-07T06:19:13.0185357Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-09-07T06:19:13.0185553Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-09-07T06:19:13.0185758Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-09-07T06:19:13.0185961Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-09-07T06:19:13.0186156Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-09-07T06:19:13.0186364Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-09-07T06:19:13.0186569Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-09-07T06:19:13.0186845Z * [new branch] gh/bobrenjc93/550/base -> origin/gh/bobrenjc93/550/base 2025-09-07T06:19:13.0187050Z * [new branch] gh/bobrenjc93/550/head -> origin/gh/bobrenjc93/550/head 2025-09-07T06:19:13.0187245Z * [new branch] gh/bobrenjc93/550/orig -> origin/gh/bobrenjc93/550/orig 2025-09-07T06:19:13.0187444Z * [new branch] gh/bobrenjc93/551/base -> origin/gh/bobrenjc93/551/base 2025-09-07T06:19:13.0187652Z * [new branch] gh/bobrenjc93/551/head -> origin/gh/bobrenjc93/551/head 2025-09-07T06:19:13.0187847Z * [new branch] gh/bobrenjc93/551/orig -> origin/gh/bobrenjc93/551/orig 2025-09-07T06:19:13.0188042Z * [new branch] gh/bobrenjc93/552/base -> origin/gh/bobrenjc93/552/base 2025-09-07T06:19:13.0188250Z * [new branch] gh/bobrenjc93/552/head -> origin/gh/bobrenjc93/552/head 2025-09-07T06:19:13.0188516Z * [new branch] gh/bobrenjc93/552/orig -> origin/gh/bobrenjc93/552/orig 2025-09-07T06:19:13.0188716Z * [new branch] gh/bobrenjc93/553/base -> origin/gh/bobrenjc93/553/base 2025-09-07T06:19:13.0188912Z * [new branch] gh/bobrenjc93/553/head -> origin/gh/bobrenjc93/553/head 2025-09-07T06:19:13.0189112Z * [new branch] gh/bobrenjc93/553/orig -> origin/gh/bobrenjc93/553/orig 2025-09-07T06:19:13.0189308Z * [new branch] gh/bobrenjc93/554/base -> origin/gh/bobrenjc93/554/base 2025-09-07T06:19:13.0189502Z * [new branch] gh/bobrenjc93/554/head -> origin/gh/bobrenjc93/554/head 2025-09-07T06:19:13.0189710Z * [new branch] gh/bobrenjc93/554/orig -> origin/gh/bobrenjc93/554/orig 2025-09-07T06:19:13.0189905Z * [new branch] gh/bobrenjc93/555/base -> origin/gh/bobrenjc93/555/base 2025-09-07T06:19:13.0190108Z * [new branch] gh/bobrenjc93/555/head -> origin/gh/bobrenjc93/555/head 2025-09-07T06:19:13.0190319Z * [new branch] gh/bobrenjc93/555/orig -> origin/gh/bobrenjc93/555/orig 2025-09-07T06:19:13.0190518Z * [new branch] gh/bobrenjc93/556/base -> origin/gh/bobrenjc93/556/base 2025-09-07T06:19:13.0190721Z * [new branch] gh/bobrenjc93/556/head -> origin/gh/bobrenjc93/556/head 2025-09-07T06:19:13.0190922Z * [new branch] gh/bobrenjc93/556/orig -> origin/gh/bobrenjc93/556/orig 2025-09-07T06:19:13.0191141Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-09-07T06:19:13.0191353Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-09-07T06:19:13.0191537Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-09-07T06:19:13.0191705Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-09-07T06:19:13.0191872Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-09-07T06:19:13.0192048Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-09-07T06:19:13.0192210Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-09-07T06:19:13.0192376Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-09-07T06:19:13.0192545Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-09-07T06:19:13.0192711Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-09-07T06:19:13.0192872Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-09-07T06:19:13.0193035Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-09-07T06:19:13.0193207Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-09-07T06:19:13.0193376Z * [new branch] gh/c00w/55/base -> origin/gh/c00w/55/base 2025-09-07T06:19:13.0193603Z * [new branch] gh/c00w/55/head -> origin/gh/c00w/55/head 2025-09-07T06:19:13.0193775Z * [new branch] gh/c00w/55/orig -> origin/gh/c00w/55/orig 2025-09-07T06:19:13.0193942Z * [new branch] gh/c00w/56/base -> origin/gh/c00w/56/base 2025-09-07T06:19:13.0194109Z * [new branch] gh/c00w/56/head -> origin/gh/c00w/56/head 2025-09-07T06:19:13.0194285Z * [new branch] gh/c00w/56/orig -> origin/gh/c00w/56/orig 2025-09-07T06:19:13.0194470Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-09-07T06:19:13.0194650Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-09-07T06:19:13.0194844Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-09-07T06:19:13.0195118Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-09-07T06:19:13.0195326Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-09-07T06:19:13.0195549Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-09-07T06:19:13.0195756Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-09-07T06:19:13.0195961Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-09-07T06:19:13.0196174Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-09-07T06:19:13.0196379Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-09-07T06:19:13.0196583Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-09-07T06:19:13.0196797Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-09-07T06:19:13.0197008Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-09-07T06:19:13.0197213Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-09-07T06:19:13.0197430Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-09-07T06:19:13.0197637Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-09-07T06:19:13.0197853Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-09-07T06:19:13.0198059Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-09-07T06:19:13.0198275Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-09-07T06:19:13.0198481Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-09-07T06:19:13.0198689Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-09-07T06:19:13.0198908Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-09-07T06:19:13.0199112Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-09-07T06:19:13.0199320Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-09-07T06:19:13.0199534Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-09-07T06:19:13.0199741Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-09-07T06:19:13.0199953Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-09-07T06:19:13.0200166Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-09-07T06:19:13.0200372Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-09-07T06:19:13.0200652Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-09-07T06:19:13.0200873Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-09-07T06:19:13.0201087Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-09-07T06:19:13.0201290Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-09-07T06:19:13.0201507Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-09-07T06:19:13.0201717Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-09-07T06:19:13.0201920Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-09-07T06:19:13.0202132Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-09-07T06:19:13.0202404Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-09-07T06:19:13.0202614Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-09-07T06:19:13.0202826Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-09-07T06:19:13.0203037Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-09-07T06:19:13.0203244Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-09-07T06:19:13.0203456Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-09-07T06:19:13.0203669Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-09-07T06:19:13.0203876Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-09-07T06:19:13.0204087Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-09-07T06:19:13.0204311Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-09-07T06:19:13.0204520Z * [new branch] gh/coconutruben/28/base -> origin/gh/coconutruben/28/base 2025-09-07T06:19:13.0204727Z * [new branch] gh/coconutruben/28/head -> origin/gh/coconutruben/28/head 2025-09-07T06:19:13.0204942Z * [new branch] gh/coconutruben/28/orig -> origin/gh/coconutruben/28/orig 2025-09-07T06:19:13.0205153Z * [new branch] gh/coconutruben/29/base -> origin/gh/coconutruben/29/base 2025-09-07T06:19:13.0205367Z * [new branch] gh/coconutruben/29/head -> origin/gh/coconutruben/29/head 2025-09-07T06:19:13.0205645Z * [new branch] gh/coconutruben/29/orig -> origin/gh/coconutruben/29/orig 2025-09-07T06:19:13.0205861Z * [new branch] gh/coconutruben/30/base -> origin/gh/coconutruben/30/base 2025-09-07T06:19:13.0206071Z * [new branch] gh/coconutruben/30/head -> origin/gh/coconutruben/30/head 2025-09-07T06:19:13.0206331Z * [new branch] gh/coconutruben/30/orig -> origin/gh/coconutruben/30/orig 2025-09-07T06:19:13.0206539Z * [new branch] gh/coconutruben/31/base -> origin/gh/coconutruben/31/base 2025-09-07T06:19:13.0206751Z * [new branch] gh/coconutruben/31/head -> origin/gh/coconutruben/31/head 2025-09-07T06:19:13.0206970Z * [new branch] gh/coconutruben/31/orig -> origin/gh/coconutruben/31/orig 2025-09-07T06:19:13.0207180Z * [new branch] gh/coconutruben/32/base -> origin/gh/coconutruben/32/base 2025-09-07T06:19:13.0207387Z * [new branch] gh/coconutruben/32/head -> origin/gh/coconutruben/32/head 2025-09-07T06:19:13.0207610Z * [new branch] gh/coconutruben/32/orig -> origin/gh/coconutruben/32/orig 2025-09-07T06:19:13.0207821Z * [new branch] gh/coconutruben/33/base -> origin/gh/coconutruben/33/base 2025-09-07T06:19:13.0208102Z * [new branch] gh/coconutruben/33/head -> origin/gh/coconutruben/33/head 2025-09-07T06:19:13.0208322Z * [new branch] gh/coconutruben/33/orig -> origin/gh/coconutruben/33/orig 2025-09-07T06:19:13.0208528Z * [new branch] gh/coconutruben/34/base -> origin/gh/coconutruben/34/base 2025-09-07T06:19:13.0208734Z * [new branch] gh/coconutruben/34/head -> origin/gh/coconutruben/34/head 2025-09-07T06:19:13.0208947Z * [new branch] gh/coconutruben/34/orig -> origin/gh/coconutruben/34/orig 2025-09-07T06:19:13.0209164Z * [new branch] gh/coconutruben/35/base -> origin/gh/coconutruben/35/base 2025-09-07T06:19:13.0209374Z * [new branch] gh/coconutruben/35/head -> origin/gh/coconutruben/35/head 2025-09-07T06:19:13.0209582Z * [new branch] gh/coconutruben/35/orig -> origin/gh/coconutruben/35/orig 2025-09-07T06:19:13.0209877Z * [new branch] gh/coconutruben/36/base -> origin/gh/coconutruben/36/base 2025-09-07T06:19:13.0210088Z * [new branch] gh/coconutruben/36/head -> origin/gh/coconutruben/36/head 2025-09-07T06:19:13.0210294Z * [new branch] gh/coconutruben/36/orig -> origin/gh/coconutruben/36/orig 2025-09-07T06:19:13.0210508Z * [new branch] gh/coconutruben/37/base -> origin/gh/coconutruben/37/base 2025-09-07T06:19:13.0210713Z * [new branch] gh/coconutruben/37/head -> origin/gh/coconutruben/37/head 2025-09-07T06:19:13.0210919Z * [new branch] gh/coconutruben/37/orig -> origin/gh/coconutruben/37/orig 2025-09-07T06:19:13.0211135Z * [new branch] gh/coconutruben/38/base -> origin/gh/coconutruben/38/base 2025-09-07T06:19:13.0211342Z * [new branch] gh/coconutruben/38/head -> origin/gh/coconutruben/38/head 2025-09-07T06:19:13.0211552Z * [new branch] gh/coconutruben/38/orig -> origin/gh/coconutruben/38/orig 2025-09-07T06:19:13.0211774Z * [new branch] gh/coconutruben/39/base -> origin/gh/coconutruben/39/base 2025-09-07T06:19:13.0211980Z * [new branch] gh/coconutruben/39/head -> origin/gh/coconutruben/39/head 2025-09-07T06:19:13.0212190Z * [new branch] gh/coconutruben/39/orig -> origin/gh/coconutruben/39/orig 2025-09-07T06:19:13.0212401Z * [new branch] gh/coconutruben/40/base -> origin/gh/coconutruben/40/base 2025-09-07T06:19:13.0212608Z * [new branch] gh/coconutruben/40/head -> origin/gh/coconutruben/40/head 2025-09-07T06:19:13.0212813Z * [new branch] gh/coconutruben/40/orig -> origin/gh/coconutruben/40/orig 2025-09-07T06:19:13.0213026Z * [new branch] gh/coconutruben/41/base -> origin/gh/coconutruben/41/base 2025-09-07T06:19:13.0213229Z * [new branch] gh/coconutruben/41/head -> origin/gh/coconutruben/41/head 2025-09-07T06:19:13.0213439Z * [new branch] gh/coconutruben/41/orig -> origin/gh/coconutruben/41/orig 2025-09-07T06:19:13.0213651Z * [new branch] gh/coconutruben/42/base -> origin/gh/coconutruben/42/base 2025-09-07T06:19:13.0213862Z * [new branch] gh/coconutruben/42/head -> origin/gh/coconutruben/42/head 2025-09-07T06:19:13.0214068Z * [new branch] gh/coconutruben/42/orig -> origin/gh/coconutruben/42/orig 2025-09-07T06:19:13.0214271Z * [new branch] gh/coconutruben/43/base -> origin/gh/coconutruben/43/base 2025-09-07T06:19:13.0214483Z * [new branch] gh/coconutruben/43/head -> origin/gh/coconutruben/43/head 2025-09-07T06:19:13.0214686Z * [new branch] gh/coconutruben/43/orig -> origin/gh/coconutruben/43/orig 2025-09-07T06:19:13.0214891Z * [new branch] gh/coconutruben/44/base -> origin/gh/coconutruben/44/base 2025-09-07T06:19:13.0215111Z * [new branch] gh/coconutruben/44/head -> origin/gh/coconutruben/44/head 2025-09-07T06:19:13.0215388Z * [new branch] gh/coconutruben/44/orig -> origin/gh/coconutruben/44/orig 2025-09-07T06:19:13.0215597Z * [new branch] gh/coconutruben/45/base -> origin/gh/coconutruben/45/base 2025-09-07T06:19:13.0215811Z * [new branch] gh/coconutruben/45/head -> origin/gh/coconutruben/45/head 2025-09-07T06:19:13.0216016Z * [new branch] gh/coconutruben/45/orig -> origin/gh/coconutruben/45/orig 2025-09-07T06:19:13.0216224Z * [new branch] gh/coconutruben/46/base -> origin/gh/coconutruben/46/base 2025-09-07T06:19:13.0216438Z * [new branch] gh/coconutruben/46/head -> origin/gh/coconutruben/46/head 2025-09-07T06:19:13.0216643Z * [new branch] gh/coconutruben/46/orig -> origin/gh/coconutruben/46/orig 2025-09-07T06:19:13.0216847Z * [new branch] gh/coconutruben/47/base -> origin/gh/coconutruben/47/base 2025-09-07T06:19:13.0217132Z * [new branch] gh/coconutruben/47/head -> origin/gh/coconutruben/47/head 2025-09-07T06:19:13.0217337Z * [new branch] gh/coconutruben/47/orig -> origin/gh/coconutruben/47/orig 2025-09-07T06:19:13.0217546Z * [new branch] gh/coconutruben/48/base -> origin/gh/coconutruben/48/base 2025-09-07T06:19:13.0217764Z * [new branch] gh/coconutruben/48/head -> origin/gh/coconutruben/48/head 2025-09-07T06:19:13.0217967Z * [new branch] gh/coconutruben/48/orig -> origin/gh/coconutruben/48/orig 2025-09-07T06:19:13.0218171Z * [new branch] gh/coconutruben/49/base -> origin/gh/coconutruben/49/base 2025-09-07T06:19:13.0218381Z * [new branch] gh/coconutruben/49/head -> origin/gh/coconutruben/49/head 2025-09-07T06:19:13.0218588Z * [new branch] gh/coconutruben/49/orig -> origin/gh/coconutruben/49/orig 2025-09-07T06:19:13.0218798Z * [new branch] gh/coconutruben/50/base -> origin/gh/coconutruben/50/base 2025-09-07T06:19:13.0219010Z * [new branch] gh/coconutruben/50/head -> origin/gh/coconutruben/50/head 2025-09-07T06:19:13.0219214Z * [new branch] gh/coconutruben/50/orig -> origin/gh/coconutruben/50/orig 2025-09-07T06:19:13.0219423Z * [new branch] gh/coconutruben/51/base -> origin/gh/coconutruben/51/base 2025-09-07T06:19:13.0219626Z * [new branch] gh/coconutruben/51/head -> origin/gh/coconutruben/51/head 2025-09-07T06:19:13.0219843Z * [new branch] gh/coconutruben/51/orig -> origin/gh/coconutruben/51/orig 2025-09-07T06:19:13.0220050Z * [new branch] gh/coconutruben/52/base -> origin/gh/coconutruben/52/base 2025-09-07T06:19:13.0220254Z * [new branch] gh/coconutruben/52/head -> origin/gh/coconutruben/52/head 2025-09-07T06:19:13.0220463Z * [new branch] gh/coconutruben/52/orig -> origin/gh/coconutruben/52/orig 2025-09-07T06:19:13.0220674Z * [new branch] gh/coconutruben/53/base -> origin/gh/coconutruben/53/base 2025-09-07T06:19:13.0220876Z * [new branch] gh/coconutruben/53/head -> origin/gh/coconutruben/53/head 2025-09-07T06:19:13.0221087Z * [new branch] gh/coconutruben/53/orig -> origin/gh/coconutruben/53/orig 2025-09-07T06:19:13.0221297Z * [new branch] gh/coconutruben/54/base -> origin/gh/coconutruben/54/base 2025-09-07T06:19:13.0221504Z * [new branch] gh/coconutruben/54/head -> origin/gh/coconutruben/54/head 2025-09-07T06:19:13.0221716Z * [new branch] gh/coconutruben/54/orig -> origin/gh/coconutruben/54/orig 2025-09-07T06:19:13.0221924Z * [new branch] gh/coconutruben/55/base -> origin/gh/coconutruben/55/base 2025-09-07T06:19:13.0222128Z * [new branch] gh/coconutruben/55/head -> origin/gh/coconutruben/55/head 2025-09-07T06:19:13.0222353Z * [new branch] gh/coconutruben/55/orig -> origin/gh/coconutruben/55/orig 2025-09-07T06:19:13.0222627Z * [new branch] gh/coconutruben/56/base -> origin/gh/coconutruben/56/base 2025-09-07T06:19:13.0222835Z * [new branch] gh/coconutruben/56/head -> origin/gh/coconutruben/56/head 2025-09-07T06:19:13.0223052Z * [new branch] gh/coconutruben/56/orig -> origin/gh/coconutruben/56/orig 2025-09-07T06:19:13.0223262Z * [new branch] gh/coconutruben/57/base -> origin/gh/coconutruben/57/base 2025-09-07T06:19:13.0223466Z * [new branch] gh/coconutruben/57/head -> origin/gh/coconutruben/57/head 2025-09-07T06:19:13.0223684Z * [new branch] gh/coconutruben/57/orig -> origin/gh/coconutruben/57/orig 2025-09-07T06:19:13.0223889Z * [new branch] gh/coconutruben/58/base -> origin/gh/coconutruben/58/base 2025-09-07T06:19:13.0224094Z * [new branch] gh/coconutruben/58/head -> origin/gh/coconutruben/58/head 2025-09-07T06:19:13.0224382Z * [new branch] gh/coconutruben/58/orig -> origin/gh/coconutruben/58/orig 2025-09-07T06:19:13.0224588Z * [new branch] gh/coconutruben/59/base -> origin/gh/coconutruben/59/base 2025-09-07T06:19:13.0224800Z * [new branch] gh/coconutruben/59/head -> origin/gh/coconutruben/59/head 2025-09-07T06:19:13.0225006Z * [new branch] gh/coconutruben/59/orig -> origin/gh/coconutruben/59/orig 2025-09-07T06:19:13.0225298Z * [new branch] gh/coconutruben/60/base -> origin/gh/coconutruben/60/base 2025-09-07T06:19:13.0225504Z * [new branch] gh/coconutruben/60/head -> origin/gh/coconutruben/60/head 2025-09-07T06:19:13.0225709Z * [new branch] gh/coconutruben/60/orig -> origin/gh/coconutruben/60/orig 2025-09-07T06:19:13.0225930Z * [new branch] gh/coconutruben/61/base -> origin/gh/coconutruben/61/base 2025-09-07T06:19:13.0226143Z * [new branch] gh/coconutruben/61/head -> origin/gh/coconutruben/61/head 2025-09-07T06:19:13.0226352Z * [new branch] gh/coconutruben/61/orig -> origin/gh/coconutruben/61/orig 2025-09-07T06:19:13.0226567Z * [new branch] gh/coconutruben/62/base -> origin/gh/coconutruben/62/base 2025-09-07T06:19:13.0226775Z * [new branch] gh/coconutruben/62/head -> origin/gh/coconutruben/62/head 2025-09-07T06:19:13.0226979Z * [new branch] gh/coconutruben/62/orig -> origin/gh/coconutruben/62/orig 2025-09-07T06:19:13.0227194Z * [new branch] gh/coconutruben/63/base -> origin/gh/coconutruben/63/base 2025-09-07T06:19:13.0227400Z * [new branch] gh/coconutruben/63/head -> origin/gh/coconutruben/63/head 2025-09-07T06:19:13.0227612Z * [new branch] gh/coconutruben/63/orig -> origin/gh/coconutruben/63/orig 2025-09-07T06:19:13.0227827Z * [new branch] gh/coconutruben/64/base -> origin/gh/coconutruben/64/base 2025-09-07T06:19:13.0228040Z * [new branch] gh/coconutruben/64/head -> origin/gh/coconutruben/64/head 2025-09-07T06:19:13.0228248Z * [new branch] gh/coconutruben/64/orig -> origin/gh/coconutruben/64/orig 2025-09-07T06:19:13.0228462Z * [new branch] gh/coconutruben/65/base -> origin/gh/coconutruben/65/base 2025-09-07T06:19:13.0228668Z * [new branch] gh/coconutruben/65/head -> origin/gh/coconutruben/65/head 2025-09-07T06:19:13.0228875Z * [new branch] gh/coconutruben/65/orig -> origin/gh/coconutruben/65/orig 2025-09-07T06:19:13.0229087Z * [new branch] gh/coconutruben/66/base -> origin/gh/coconutruben/66/base 2025-09-07T06:19:13.0229291Z * [new branch] gh/coconutruben/66/head -> origin/gh/coconutruben/66/head 2025-09-07T06:19:13.0229498Z * [new branch] gh/coconutruben/66/orig -> origin/gh/coconutruben/66/orig 2025-09-07T06:19:13.0229743Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-09-07T06:19:13.0230044Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-09-07T06:19:13.0230274Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-09-07T06:19:13.0230502Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-09-07T06:19:13.0230736Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-09-07T06:19:13.0230964Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-09-07T06:19:13.0231188Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-09-07T06:19:13.0231431Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-09-07T06:19:13.0231719Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-09-07T06:19:13.0231946Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-09-07T06:19:13.0232186Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-09-07T06:19:13.0232408Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-09-07T06:19:13.0232636Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-09-07T06:19:13.0232869Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-09-07T06:19:13.0233091Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-09-07T06:19:13.0233313Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-09-07T06:19:13.0233548Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-09-07T06:19:13.0233780Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-09-07T06:19:13.0234011Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-09-07T06:19:13.0234244Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-09-07T06:19:13.0234467Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-09-07T06:19:13.0234690Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-09-07T06:19:13.0234927Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-09-07T06:19:13.0235150Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-09-07T06:19:13.0235374Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-09-07T06:19:13.0235613Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-09-07T06:19:13.0235836Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-09-07T06:19:13.0236038Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-09-07T06:19:13.0236249Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-09-07T06:19:13.0236443Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-09-07T06:19:13.0236637Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-09-07T06:19:13.0236829Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-09-07T06:19:13.0237031Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-09-07T06:19:13.0237228Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-09-07T06:19:13.0237491Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-09-07T06:19:13.0237733Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-09-07T06:19:13.0237950Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-09-07T06:19:13.0238164Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-09-07T06:19:13.0238390Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-09-07T06:19:13.0238604Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-09-07T06:19:13.0238820Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-09-07T06:19:13.0239046Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-09-07T06:19:13.0239324Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-09-07T06:19:13.0239540Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-09-07T06:19:13.0239760Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-09-07T06:19:13.0239981Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-09-07T06:19:13.0240197Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-09-07T06:19:13.0240418Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-09-07T06:19:13.0240632Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-09-07T06:19:13.0240847Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-09-07T06:19:13.0241073Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-09-07T06:19:13.0241290Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-09-07T06:19:13.0241506Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-09-07T06:19:13.0241724Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-09-07T06:19:13.0241937Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-09-07T06:19:13.0242151Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-09-07T06:19:13.0242367Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-09-07T06:19:13.0242590Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-09-07T06:19:13.0242814Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-09-07T06:19:13.0243030Z * [new branch] gh/davidberard98/399/base -> origin/gh/davidberard98/399/base 2025-09-07T06:19:13.0243253Z * [new branch] gh/davidberard98/399/head -> origin/gh/davidberard98/399/head 2025-09-07T06:19:13.0243465Z * [new branch] gh/davidberard98/399/orig -> origin/gh/davidberard98/399/orig 2025-09-07T06:19:13.0243678Z * [new branch] gh/davidberard98/400/base -> origin/gh/davidberard98/400/base 2025-09-07T06:19:13.0243905Z * [new branch] gh/davidberard98/400/head -> origin/gh/davidberard98/400/head 2025-09-07T06:19:13.0244117Z * [new branch] gh/davidberard98/400/orig -> origin/gh/davidberard98/400/orig 2025-09-07T06:19:13.0244333Z * [new branch] gh/davidberard98/401/base -> origin/gh/davidberard98/401/base 2025-09-07T06:19:13.0244553Z * [new branch] gh/davidberard98/401/head -> origin/gh/davidberard98/401/head 2025-09-07T06:19:13.0244840Z * [new branch] gh/davidberard98/401/orig -> origin/gh/davidberard98/401/orig 2025-09-07T06:19:13.0245055Z * [new branch] gh/davidberard98/402/base -> origin/gh/davidberard98/402/base 2025-09-07T06:19:13.0245277Z * [new branch] gh/davidberard98/402/head -> origin/gh/davidberard98/402/head 2025-09-07T06:19:13.0245492Z * [new branch] gh/davidberard98/402/orig -> origin/gh/davidberard98/402/orig 2025-09-07T06:19:13.0245705Z * [new branch] gh/davidberard98/403/base -> origin/gh/davidberard98/403/base 2025-09-07T06:19:13.0245938Z * [new branch] gh/davidberard98/403/head -> origin/gh/davidberard98/403/head 2025-09-07T06:19:13.0246153Z * [new branch] gh/davidberard98/403/orig -> origin/gh/davidberard98/403/orig 2025-09-07T06:19:13.0246366Z * [new branch] gh/davidberard98/404/base -> origin/gh/davidberard98/404/base 2025-09-07T06:19:13.0246654Z * [new branch] gh/davidberard98/404/head -> origin/gh/davidberard98/404/head 2025-09-07T06:19:13.0246872Z * [new branch] gh/davidberard98/404/orig -> origin/gh/davidberard98/404/orig 2025-09-07T06:19:13.0247088Z * [new branch] gh/davidberard98/405/base -> origin/gh/davidberard98/405/base 2025-09-07T06:19:13.0247310Z * [new branch] gh/davidberard98/405/head -> origin/gh/davidberard98/405/head 2025-09-07T06:19:13.0247526Z * [new branch] gh/davidberard98/405/orig -> origin/gh/davidberard98/405/orig 2025-09-07T06:19:13.0247741Z * [new branch] gh/davidberard98/406/base -> origin/gh/davidberard98/406/base 2025-09-07T06:19:13.0247953Z * [new branch] gh/davidberard98/406/head -> origin/gh/davidberard98/406/head 2025-09-07T06:19:13.0248177Z * [new branch] gh/davidberard98/406/orig -> origin/gh/davidberard98/406/orig 2025-09-07T06:19:13.0248394Z * [new branch] gh/davidberard98/407/base -> origin/gh/davidberard98/407/base 2025-09-07T06:19:13.0248613Z * [new branch] gh/davidberard98/407/head -> origin/gh/davidberard98/407/head 2025-09-07T06:19:13.0248834Z * [new branch] gh/davidberard98/407/orig -> origin/gh/davidberard98/407/orig 2025-09-07T06:19:13.0249048Z * [new branch] gh/davidberard98/408/base -> origin/gh/davidberard98/408/base 2025-09-07T06:19:13.0249262Z * [new branch] gh/davidberard98/408/head -> origin/gh/davidberard98/408/head 2025-09-07T06:19:13.0249486Z * [new branch] gh/davidberard98/408/orig -> origin/gh/davidberard98/408/orig 2025-09-07T06:19:13.0249699Z * [new branch] gh/davidberard98/409/base -> origin/gh/davidberard98/409/base 2025-09-07T06:19:13.0249914Z * [new branch] gh/davidberard98/409/head -> origin/gh/davidberard98/409/head 2025-09-07T06:19:13.0250138Z * [new branch] gh/davidberard98/409/orig -> origin/gh/davidberard98/409/orig 2025-09-07T06:19:13.0250346Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-09-07T06:19:13.0250552Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-09-07T06:19:13.0250766Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-09-07T06:19:13.0250977Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-09-07T06:19:13.0251175Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-09-07T06:19:13.0251386Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-09-07T06:19:13.0251585Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-09-07T06:19:13.0251783Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-09-07T06:19:13.0251992Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-09-07T06:19:13.0252242Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-09-07T06:19:13.0252431Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-09-07T06:19:13.0252635Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-09-07T06:19:13.0252822Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-09-07T06:19:13.0253008Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-09-07T06:19:13.0253190Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-09-07T06:19:13.0253380Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-09-07T06:19:13.0253563Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-09-07T06:19:13.0253811Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-09-07T06:19:13.0254000Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-09-07T06:19:13.0254184Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-09-07T06:19:13.0254368Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-09-07T06:19:13.0254555Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-09-07T06:19:13.0254741Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-09-07T06:19:13.0254930Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-09-07T06:19:13.0255138Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-09-07T06:19:13.0255329Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-09-07T06:19:13.0255517Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-09-07T06:19:13.0255708Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-09-07T06:19:13.0255891Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-09-07T06:19:13.0256074Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-09-07T06:19:13.0256268Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-09-07T06:19:13.0256453Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-09-07T06:19:13.0256642Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-09-07T06:19:13.0256833Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-09-07T06:19:13.0257021Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-09-07T06:19:13.0257207Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-09-07T06:19:13.0257392Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-09-07T06:19:13.0257583Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-09-07T06:19:13.0257766Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-09-07T06:19:13.0257949Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-09-07T06:19:13.0258138Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-09-07T06:19:13.0258328Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-09-07T06:19:13.0258515Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-09-07T06:19:13.0258716Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-09-07T06:19:13.0258964Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-09-07T06:19:13.0259153Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-09-07T06:19:13.0259345Z * [new branch] gh/drisspg/186/base -> origin/gh/drisspg/186/base 2025-09-07T06:19:13.0259528Z * [new branch] gh/drisspg/186/head -> origin/gh/drisspg/186/head 2025-09-07T06:19:13.0259712Z * [new branch] gh/drisspg/186/orig -> origin/gh/drisspg/186/orig 2025-09-07T06:19:13.0259903Z * [new branch] gh/drisspg/187/base -> origin/gh/drisspg/187/base 2025-09-07T06:19:13.0260089Z * [new branch] gh/drisspg/187/head -> origin/gh/drisspg/187/head 2025-09-07T06:19:13.0260276Z * [new branch] gh/drisspg/187/orig -> origin/gh/drisspg/187/orig 2025-09-07T06:19:13.0260533Z * [new branch] gh/drisspg/188/base -> origin/gh/drisspg/188/base 2025-09-07T06:19:13.0260719Z * [new branch] gh/drisspg/188/head -> origin/gh/drisspg/188/head 2025-09-07T06:19:13.0260901Z * [new branch] gh/drisspg/188/orig -> origin/gh/drisspg/188/orig 2025-09-07T06:19:13.0261098Z * [new branch] gh/drisspg/189/base -> origin/gh/drisspg/189/base 2025-09-07T06:19:13.0261282Z * [new branch] gh/drisspg/189/head -> origin/gh/drisspg/189/head 2025-09-07T06:19:13.0261466Z * [new branch] gh/drisspg/189/orig -> origin/gh/drisspg/189/orig 2025-09-07T06:19:13.0261648Z * [new branch] gh/drisspg/190/base -> origin/gh/drisspg/190/base 2025-09-07T06:19:13.0261839Z * [new branch] gh/drisspg/190/head -> origin/gh/drisspg/190/head 2025-09-07T06:19:13.0262026Z * [new branch] gh/drisspg/190/orig -> origin/gh/drisspg/190/orig 2025-09-07T06:19:13.0262217Z * [new branch] gh/drisspg/191/base -> origin/gh/drisspg/191/base 2025-09-07T06:19:13.0262409Z * [new branch] gh/drisspg/191/head -> origin/gh/drisspg/191/head 2025-09-07T06:19:13.0262591Z * [new branch] gh/drisspg/191/orig -> origin/gh/drisspg/191/orig 2025-09-07T06:19:13.0262776Z * [new branch] gh/drisspg/192/base -> origin/gh/drisspg/192/base 2025-09-07T06:19:13.0262977Z * [new branch] gh/drisspg/192/head -> origin/gh/drisspg/192/head 2025-09-07T06:19:13.0263170Z * [new branch] gh/drisspg/192/orig -> origin/gh/drisspg/192/orig 2025-09-07T06:19:13.0263359Z * [new branch] gh/drisspg/193/base -> origin/gh/drisspg/193/base 2025-09-07T06:19:13.0263557Z * [new branch] gh/drisspg/193/head -> origin/gh/drisspg/193/head 2025-09-07T06:19:13.0263744Z * [new branch] gh/drisspg/193/orig -> origin/gh/drisspg/193/orig 2025-09-07T06:19:13.0263932Z * [new branch] gh/drisspg/194/base -> origin/gh/drisspg/194/base 2025-09-07T06:19:13.0264125Z * [new branch] gh/drisspg/194/head -> origin/gh/drisspg/194/head 2025-09-07T06:19:13.0264313Z * [new branch] gh/drisspg/194/orig -> origin/gh/drisspg/194/orig 2025-09-07T06:19:13.0264501Z * [new branch] gh/drisspg/195/base -> origin/gh/drisspg/195/base 2025-09-07T06:19:13.0264702Z * [new branch] gh/drisspg/195/head -> origin/gh/drisspg/195/head 2025-09-07T06:19:13.0264888Z * [new branch] gh/drisspg/195/orig -> origin/gh/drisspg/195/orig 2025-09-07T06:19:13.0265155Z * [new branch] gh/drisspg/196/base -> origin/gh/drisspg/196/base 2025-09-07T06:19:13.0265354Z * [new branch] gh/drisspg/196/head -> origin/gh/drisspg/196/head 2025-09-07T06:19:13.0265544Z * [new branch] gh/drisspg/196/orig -> origin/gh/drisspg/196/orig 2025-09-07T06:19:13.0265804Z * [new branch] gh/drisspg/197/base -> origin/gh/drisspg/197/base 2025-09-07T06:19:13.0265990Z * [new branch] gh/drisspg/197/head -> origin/gh/drisspg/197/head 2025-09-07T06:19:13.0266185Z * [new branch] gh/drisspg/197/orig -> origin/gh/drisspg/197/orig 2025-09-07T06:19:13.0266376Z * [new branch] gh/drisspg/198/base -> origin/gh/drisspg/198/base 2025-09-07T06:19:13.0266561Z * [new branch] gh/drisspg/198/head -> origin/gh/drisspg/198/head 2025-09-07T06:19:13.0266757Z * [new branch] gh/drisspg/198/orig -> origin/gh/drisspg/198/orig 2025-09-07T06:19:13.0266948Z * [new branch] gh/drisspg/199/base -> origin/gh/drisspg/199/base 2025-09-07T06:19:13.0267139Z * [new branch] gh/drisspg/199/head -> origin/gh/drisspg/199/head 2025-09-07T06:19:13.0267833Z * [new branch] gh/drisspg/199/orig -> origin/gh/drisspg/199/orig 2025-09-07T06:19:13.0268030Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-09-07T06:19:13.0268215Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-09-07T06:19:13.0268418Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-09-07T06:19:13.0268609Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-09-07T06:19:13.0268810Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-09-07T06:19:13.0269008Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-09-07T06:19:13.0269198Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-09-07T06:19:13.0269385Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-09-07T06:19:13.0269589Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-09-07T06:19:13.0269776Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-09-07T06:19:13.0269963Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-09-07T06:19:13.0270161Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-09-07T06:19:13.0270350Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-09-07T06:19:13.0270535Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-09-07T06:19:13.0270720Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-09-07T06:19:13.0270917Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-09-07T06:19:13.0271107Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-09-07T06:19:13.0271298Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-09-07T06:19:13.0271493Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-09-07T06:19:13.0271684Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-09-07T06:19:13.0271870Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-09-07T06:19:13.0272065Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-09-07T06:19:13.0272253Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-09-07T06:19:13.0272440Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-09-07T06:19:13.0272633Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-09-07T06:19:13.0272823Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-09-07T06:19:13.0273083Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-09-07T06:19:13.0273281Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-09-07T06:19:13.0273470Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-09-07T06:19:13.0273664Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-09-07T06:19:13.0273859Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-09-07T06:19:13.0274048Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-09-07T06:19:13.0274234Z * [new branch] gh/eellison/814/base -> origin/gh/eellison/814/base 2025-09-07T06:19:13.0274437Z * [new branch] gh/eellison/814/head -> origin/gh/eellison/814/head 2025-09-07T06:19:13.0274688Z * [new branch] gh/eellison/814/orig -> origin/gh/eellison/814/orig 2025-09-07T06:19:13.0274874Z * [new branch] gh/eellison/815/base -> origin/gh/eellison/815/base 2025-09-07T06:19:13.0275065Z * [new branch] gh/eellison/815/head -> origin/gh/eellison/815/head 2025-09-07T06:19:13.0275259Z * [new branch] gh/eellison/815/orig -> origin/gh/eellison/815/orig 2025-09-07T06:19:13.0275445Z * [new branch] gh/eellison/816/base -> origin/gh/eellison/816/base 2025-09-07T06:19:13.0275632Z * [new branch] gh/eellison/816/head -> origin/gh/eellison/816/head 2025-09-07T06:19:13.0275827Z * [new branch] gh/eellison/816/orig -> origin/gh/eellison/816/orig 2025-09-07T06:19:13.0276013Z * [new branch] gh/eellison/817/base -> origin/gh/eellison/817/base 2025-09-07T06:19:13.0276203Z * [new branch] gh/eellison/817/head -> origin/gh/eellison/817/head 2025-09-07T06:19:13.0276403Z * [new branch] gh/eellison/817/orig -> origin/gh/eellison/817/orig 2025-09-07T06:19:13.0276593Z * [new branch] gh/eellison/818/base -> origin/gh/eellison/818/base 2025-09-07T06:19:13.0276781Z * [new branch] gh/eellison/818/head -> origin/gh/eellison/818/head 2025-09-07T06:19:13.0276981Z * [new branch] gh/eellison/818/orig -> origin/gh/eellison/818/orig 2025-09-07T06:19:13.0277170Z * [new branch] gh/eellison/819/base -> origin/gh/eellison/819/base 2025-09-07T06:19:13.0277357Z * [new branch] gh/eellison/819/head -> origin/gh/eellison/819/head 2025-09-07T06:19:13.0277550Z * [new branch] gh/eellison/819/orig -> origin/gh/eellison/819/orig 2025-09-07T06:19:13.0277737Z * [new branch] gh/eellison/820/base -> origin/gh/eellison/820/base 2025-09-07T06:19:13.0277927Z * [new branch] gh/eellison/820/head -> origin/gh/eellison/820/head 2025-09-07T06:19:13.0278127Z * [new branch] gh/eellison/820/orig -> origin/gh/eellison/820/orig 2025-09-07T06:19:13.0278315Z * [new branch] gh/eellison/821/base -> origin/gh/eellison/821/base 2025-09-07T06:19:13.0278509Z * [new branch] gh/eellison/821/head -> origin/gh/eellison/821/head 2025-09-07T06:19:13.0278707Z * [new branch] gh/eellison/821/orig -> origin/gh/eellison/821/orig 2025-09-07T06:19:13.0278897Z * [new branch] gh/eellison/822/base -> origin/gh/eellison/822/base 2025-09-07T06:19:13.0279086Z * [new branch] gh/eellison/822/head -> origin/gh/eellison/822/head 2025-09-07T06:19:13.0279276Z * [new branch] gh/eellison/822/orig -> origin/gh/eellison/822/orig 2025-09-07T06:19:13.0279478Z * [new branch] gh/eellison/823/base -> origin/gh/eellison/823/base 2025-09-07T06:19:13.0280136Z * [new branch] gh/eellison/823/head -> origin/gh/eellison/823/head 2025-09-07T06:19:13.0280331Z * [new branch] gh/eellison/823/orig -> origin/gh/eellison/823/orig 2025-09-07T06:19:13.0280516Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-09-07T06:19:13.0280688Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-09-07T06:19:13.0280858Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-09-07T06:19:13.0281038Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-09-07T06:19:13.0281207Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-09-07T06:19:13.0281377Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-09-07T06:19:13.0281554Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-09-07T06:19:13.0281792Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-09-07T06:19:13.0281961Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-09-07T06:19:13.0282138Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-09-07T06:19:13.0282308Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-09-07T06:19:13.0282478Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-09-07T06:19:13.0282661Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-09-07T06:19:13.0282839Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-09-07T06:19:13.0283010Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-09-07T06:19:13.0283179Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-09-07T06:19:13.0283363Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-09-07T06:19:13.0283532Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-09-07T06:19:13.0283701Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-09-07T06:19:13.0283879Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-09-07T06:19:13.0284048Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-09-07T06:19:13.0284216Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-09-07T06:19:13.0284397Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-09-07T06:19:13.0284567Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-09-07T06:19:13.0284740Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-09-07T06:19:13.0284929Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-09-07T06:19:13.0285100Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-09-07T06:19:13.0285268Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-09-07T06:19:13.0285445Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-09-07T06:19:13.0285611Z * [new branch] gh/etaf/156/base -> origin/gh/etaf/156/base 2025-09-07T06:19:13.0285780Z * [new branch] gh/etaf/156/head -> origin/gh/etaf/156/head 2025-09-07T06:19:13.0285957Z * [new branch] gh/etaf/156/orig -> origin/gh/etaf/156/orig 2025-09-07T06:19:13.0286125Z * [new branch] gh/etaf/157/base -> origin/gh/etaf/157/base 2025-09-07T06:19:13.0286294Z * [new branch] gh/etaf/157/head -> origin/gh/etaf/157/head 2025-09-07T06:19:13.0286538Z * [new branch] gh/etaf/157/orig -> origin/gh/etaf/157/orig 2025-09-07T06:19:13.0286723Z * [new branch] gh/etaf/158/base -> origin/gh/etaf/158/base 2025-09-07T06:19:13.0286895Z * [new branch] gh/etaf/158/head -> origin/gh/etaf/158/head 2025-09-07T06:19:13.0287066Z * [new branch] gh/etaf/158/orig -> origin/gh/etaf/158/orig 2025-09-07T06:19:13.0287239Z * [new branch] gh/etaf/159/base -> origin/gh/etaf/159/base 2025-09-07T06:19:13.0287411Z * [new branch] gh/etaf/159/head -> origin/gh/etaf/159/head 2025-09-07T06:19:13.0287585Z * [new branch] gh/etaf/159/orig -> origin/gh/etaf/159/orig 2025-09-07T06:19:13.0287767Z * [new branch] gh/etaf/160/base -> origin/gh/etaf/160/base 2025-09-07T06:19:13.0287936Z * [new branch] gh/etaf/160/head -> origin/gh/etaf/160/head 2025-09-07T06:19:13.0288178Z * [new branch] gh/etaf/160/orig -> origin/gh/etaf/160/orig 2025-09-07T06:19:13.0288357Z * [new branch] gh/etaf/161/base -> origin/gh/etaf/161/base 2025-09-07T06:19:13.0288533Z * [new branch] gh/etaf/161/head -> origin/gh/etaf/161/head 2025-09-07T06:19:13.0288704Z * [new branch] gh/etaf/161/orig -> origin/gh/etaf/161/orig 2025-09-07T06:19:13.0288887Z * [new branch] gh/etaf/162/base -> origin/gh/etaf/162/base 2025-09-07T06:19:13.0289058Z * [new branch] gh/etaf/162/head -> origin/gh/etaf/162/head 2025-09-07T06:19:13.0289227Z * [new branch] gh/etaf/162/orig -> origin/gh/etaf/162/orig 2025-09-07T06:19:13.0289401Z * [new branch] gh/etaf/163/base -> origin/gh/etaf/163/base 2025-09-07T06:19:13.0289572Z * [new branch] gh/etaf/163/head -> origin/gh/etaf/163/head 2025-09-07T06:19:13.0289747Z * [new branch] gh/etaf/163/orig -> origin/gh/etaf/163/orig 2025-09-07T06:19:13.0289923Z * [new branch] gh/etaf/164/base -> origin/gh/etaf/164/base 2025-09-07T06:19:13.0290094Z * [new branch] gh/etaf/164/head -> origin/gh/etaf/164/head 2025-09-07T06:19:13.0290263Z * [new branch] gh/etaf/164/orig -> origin/gh/etaf/164/orig 2025-09-07T06:19:13.0290430Z * [new branch] gh/etaf/165/base -> origin/gh/etaf/165/base 2025-09-07T06:19:13.0290603Z * [new branch] gh/etaf/165/orig -> origin/gh/etaf/165/orig 2025-09-07T06:19:13.0290771Z * [new branch] gh/etaf/166/base -> origin/gh/etaf/166/base 2025-09-07T06:19:13.0290939Z * [new branch] gh/etaf/166/head -> origin/gh/etaf/166/head 2025-09-07T06:19:13.0291123Z * [new branch] gh/etaf/166/orig -> origin/gh/etaf/166/orig 2025-09-07T06:19:13.0291298Z * [new branch] gh/etaf/167/base -> origin/gh/etaf/167/base 2025-09-07T06:19:13.0291466Z * [new branch] gh/etaf/167/head -> origin/gh/etaf/167/head 2025-09-07T06:19:13.0291649Z * [new branch] gh/etaf/167/orig -> origin/gh/etaf/167/orig 2025-09-07T06:19:13.0291822Z * [new branch] gh/etaf/168/base -> origin/gh/etaf/168/base 2025-09-07T06:19:13.0292000Z * [new branch] gh/etaf/168/head -> origin/gh/etaf/168/head 2025-09-07T06:19:13.0292175Z * [new branch] gh/etaf/168/orig -> origin/gh/etaf/168/orig 2025-09-07T06:19:13.0292342Z * [new branch] gh/etaf/169/base -> origin/gh/etaf/169/base 2025-09-07T06:19:13.0292510Z * [new branch] gh/etaf/169/head -> origin/gh/etaf/169/head 2025-09-07T06:19:13.0292692Z * [new branch] gh/etaf/169/orig -> origin/gh/etaf/169/orig 2025-09-07T06:19:13.0292978Z * [new branch] gh/exclamaforte/1/base -> origin/gh/exclamaforte/1/base 2025-09-07T06:19:13.0293188Z * [new branch] gh/exclamaforte/1/head -> origin/gh/exclamaforte/1/head 2025-09-07T06:19:13.0293411Z * [new branch] gh/exclamaforte/2/base -> origin/gh/exclamaforte/2/base 2025-09-07T06:19:13.0293617Z * [new branch] gh/exclamaforte/2/head -> origin/gh/exclamaforte/2/head 2025-09-07T06:19:13.0293819Z * [new branch] gh/exclamaforte/3/base -> origin/gh/exclamaforte/3/base 2025-09-07T06:19:13.0294023Z * [new branch] gh/exclamaforte/3/head -> origin/gh/exclamaforte/3/head 2025-09-07T06:19:13.0294234Z * [new branch] gh/exclamaforte/4/base -> origin/gh/exclamaforte/4/base 2025-09-07T06:19:13.0294435Z * [new branch] gh/exclamaforte/4/head -> origin/gh/exclamaforte/4/head 2025-09-07T06:19:13.0294685Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-09-07T06:19:13.0294878Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-09-07T06:19:13.0295059Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-09-07T06:19:13.0295240Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-09-07T06:19:13.0295425Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-09-07T06:19:13.0295605Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-09-07T06:19:13.0295785Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-09-07T06:19:13.0295973Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-09-07T06:19:13.0296154Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-09-07T06:19:13.0296339Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-09-07T06:19:13.0296530Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-09-07T06:19:13.0296711Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-09-07T06:19:13.0296895Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-09-07T06:19:13.0297086Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-09-07T06:19:13.0297271Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-09-07T06:19:13.0297452Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-09-07T06:19:13.0297643Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-09-07T06:19:13.0297827Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-09-07T06:19:13.0298013Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-09-07T06:19:13.0298195Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-09-07T06:19:13.0298384Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-09-07T06:19:13.0298566Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-09-07T06:19:13.0298747Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-09-07T06:19:13.0298934Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-09-07T06:19:13.0299115Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-09-07T06:19:13.0299304Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-09-07T06:19:13.0299508Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-09-07T06:19:13.0299759Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-09-07T06:19:13.0299940Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-09-07T06:19:13.0300133Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-09-07T06:19:13.0300318Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-09-07T06:19:13.0300501Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-09-07T06:19:13.0300692Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-09-07T06:19:13.0300875Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-09-07T06:19:13.0301056Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-09-07T06:19:13.0301315Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-09-07T06:19:13.0301503Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-09-07T06:19:13.0301685Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-09-07T06:19:13.0301876Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-09-07T06:19:13.0302057Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-09-07T06:19:13.0302238Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-09-07T06:19:13.0302422Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-09-07T06:19:13.0302607Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-09-07T06:19:13.0302789Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-09-07T06:19:13.0302982Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-09-07T06:19:13.0303175Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-09-07T06:19:13.0303360Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-09-07T06:19:13.0303540Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-09-07T06:19:13.0303736Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-09-07T06:19:13.0303918Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-09-07T06:19:13.0304100Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-09-07T06:19:13.0304292Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-09-07T06:19:13.0304471Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-09-07T06:19:13.0304660Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-09-07T06:19:13.0304852Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-09-07T06:19:13.0305115Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-09-07T06:19:13.0305306Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-09-07T06:19:13.0305510Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-09-07T06:19:13.0305697Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-09-07T06:19:13.0305880Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-09-07T06:19:13.0306075Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-09-07T06:19:13.0306262Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-09-07T06:19:13.0306527Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-09-07T06:19:13.0306770Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-09-07T06:19:13.0306963Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-09-07T06:19:13.0307191Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-09-07T06:19:13.0307378Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-09-07T06:19:13.0307573Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-09-07T06:19:13.0307754Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-09-07T06:19:13.0307936Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-09-07T06:19:13.0308195Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-09-07T06:19:13.0308381Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-09-07T06:19:13.0308562Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-09-07T06:19:13.0308748Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-09-07T06:19:13.0308928Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-09-07T06:19:13.0309108Z * [new branch] gh/ezyang/3137/base -> origin/gh/ezyang/3137/base 2025-09-07T06:19:13.0309302Z * [new branch] gh/ezyang/3137/head -> origin/gh/ezyang/3137/head 2025-09-07T06:19:13.0309484Z * [new branch] gh/ezyang/3137/orig -> origin/gh/ezyang/3137/orig 2025-09-07T06:19:13.0309667Z * [new branch] gh/ezyang/3138/base -> origin/gh/ezyang/3138/base 2025-09-07T06:19:13.0309868Z * [new branch] gh/ezyang/3138/head -> origin/gh/ezyang/3138/head 2025-09-07T06:19:13.0310051Z * [new branch] gh/ezyang/3138/orig -> origin/gh/ezyang/3138/orig 2025-09-07T06:19:13.0310237Z * [new branch] gh/ezyang/3139/base -> origin/gh/ezyang/3139/base 2025-09-07T06:19:13.0310427Z * [new branch] gh/ezyang/3139/head -> origin/gh/ezyang/3139/head 2025-09-07T06:19:13.0310613Z * [new branch] gh/ezyang/3139/orig -> origin/gh/ezyang/3139/orig 2025-09-07T06:19:13.0310799Z * [new branch] gh/ezyang/3140/base -> origin/gh/ezyang/3140/base 2025-09-07T06:19:13.0310981Z * [new branch] gh/ezyang/3140/head -> origin/gh/ezyang/3140/head 2025-09-07T06:19:13.0311172Z * [new branch] gh/ezyang/3140/orig -> origin/gh/ezyang/3140/orig 2025-09-07T06:19:13.0311352Z * [new branch] gh/ezyang/3141/base -> origin/gh/ezyang/3141/base 2025-09-07T06:19:13.0311539Z * [new branch] gh/ezyang/3141/head -> origin/gh/ezyang/3141/head 2025-09-07T06:19:13.0311728Z * [new branch] gh/ezyang/3141/orig -> origin/gh/ezyang/3141/orig 2025-09-07T06:19:13.0311911Z * [new branch] gh/ezyang/3142/base -> origin/gh/ezyang/3142/base 2025-09-07T06:19:13.0312094Z * [new branch] gh/ezyang/3142/head -> origin/gh/ezyang/3142/head 2025-09-07T06:19:13.0312291Z * [new branch] gh/ezyang/3142/orig -> origin/gh/ezyang/3142/orig 2025-09-07T06:19:13.0312514Z * [new branch] gh/ezyang/3143/base -> origin/gh/ezyang/3143/base 2025-09-07T06:19:13.0312696Z * [new branch] gh/ezyang/3143/head -> origin/gh/ezyang/3143/head 2025-09-07T06:19:13.0312925Z * [new branch] gh/ezyang/3143/orig -> origin/gh/ezyang/3143/orig 2025-09-07T06:19:13.0313116Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-09-07T06:19:13.0313377Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-09-07T06:19:13.0313570Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-09-07T06:19:13.0313754Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-09-07T06:19:13.0313934Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-09-07T06:19:13.0314123Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-09-07T06:19:13.0314300Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-09-07T06:19:13.0314480Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-09-07T06:19:13.0314669Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-09-07T06:19:13.0314917Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-09-07T06:19:13.0315098Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-09-07T06:19:13.0315277Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-09-07T06:19:13.0315463Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-09-07T06:19:13.0315639Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-09-07T06:19:13.0315820Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-09-07T06:19:13.0316008Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-09-07T06:19:13.0316188Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-09-07T06:19:13.0316368Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-09-07T06:19:13.0316556Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-09-07T06:19:13.0316738Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-09-07T06:19:13.0316914Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-09-07T06:19:13.0317100Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-09-07T06:19:13.0317278Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-09-07T06:19:13.0317455Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-09-07T06:19:13.0317639Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-09-07T06:19:13.0317818Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-09-07T06:19:13.0317998Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-09-07T06:19:13.0318235Z * [new branch] gh/fduwjj/182/base -> origin/gh/fduwjj/182/base 2025-09-07T06:19:13.0318415Z * [new branch] gh/fduwjj/182/head -> origin/gh/fduwjj/182/head 2025-09-07T06:19:13.0318629Z * [new branch] gh/fduwjj/182/orig -> origin/gh/fduwjj/182/orig 2025-09-07T06:19:13.0318817Z * [new branch] gh/fduwjj/183/base -> origin/gh/fduwjj/183/base 2025-09-07T06:19:13.0318994Z * [new branch] gh/fduwjj/183/head -> origin/gh/fduwjj/183/head 2025-09-07T06:19:13.0319171Z * [new branch] gh/fduwjj/183/orig -> origin/gh/fduwjj/183/orig 2025-09-07T06:19:13.0319346Z * [new branch] gh/fduwjj/184/base -> origin/gh/fduwjj/184/base 2025-09-07T06:19:13.0319536Z * [new branch] gh/fduwjj/184/head -> origin/gh/fduwjj/184/head 2025-09-07T06:19:13.0319717Z * [new branch] gh/fduwjj/184/orig -> origin/gh/fduwjj/184/orig 2025-09-07T06:19:13.0319969Z * [new branch] gh/fduwjj/185/base -> origin/gh/fduwjj/185/base 2025-09-07T06:19:13.0320158Z * [new branch] gh/fduwjj/185/head -> origin/gh/fduwjj/185/head 2025-09-07T06:19:13.0320337Z * [new branch] gh/fduwjj/185/orig -> origin/gh/fduwjj/185/orig 2025-09-07T06:19:13.0320515Z * [new branch] gh/fduwjj/186/base -> origin/gh/fduwjj/186/base 2025-09-07T06:19:13.0320701Z * [new branch] gh/fduwjj/186/head -> origin/gh/fduwjj/186/head 2025-09-07T06:19:13.0320882Z * [new branch] gh/fduwjj/186/orig -> origin/gh/fduwjj/186/orig 2025-09-07T06:19:13.0321066Z * [new branch] gh/fduwjj/187/base -> origin/gh/fduwjj/187/base 2025-09-07T06:19:13.0321267Z * [new branch] gh/fduwjj/187/head -> origin/gh/fduwjj/187/head 2025-09-07T06:19:13.0321514Z * [new branch] gh/fduwjj/187/orig -> origin/gh/fduwjj/187/orig 2025-09-07T06:19:13.0321703Z * [new branch] gh/fduwjj/188/base -> origin/gh/fduwjj/188/base 2025-09-07T06:19:13.0321893Z * [new branch] gh/fduwjj/188/head -> origin/gh/fduwjj/188/head 2025-09-07T06:19:13.0322072Z * [new branch] gh/fduwjj/188/orig -> origin/gh/fduwjj/188/orig 2025-09-07T06:19:13.0322251Z * [new branch] gh/fduwjj/189/base -> origin/gh/fduwjj/189/base 2025-09-07T06:19:13.0322451Z * [new branch] gh/fduwjj/189/head -> origin/gh/fduwjj/189/head 2025-09-07T06:19:13.0322635Z * [new branch] gh/fduwjj/189/orig -> origin/gh/fduwjj/189/orig 2025-09-07T06:19:13.0322818Z * [new branch] gh/fduwjj/190/base -> origin/gh/fduwjj/190/base 2025-09-07T06:19:13.0323008Z * [new branch] gh/fduwjj/190/head -> origin/gh/fduwjj/190/head 2025-09-07T06:19:13.0323192Z * [new branch] gh/fduwjj/190/orig -> origin/gh/fduwjj/190/orig 2025-09-07T06:19:13.0323374Z * [new branch] gh/fduwjj/191/base -> origin/gh/fduwjj/191/base 2025-09-07T06:19:13.0323555Z * [new branch] gh/fduwjj/191/head -> origin/gh/fduwjj/191/head 2025-09-07T06:19:13.0323742Z * [new branch] gh/fduwjj/191/orig -> origin/gh/fduwjj/191/orig 2025-09-07T06:19:13.0323975Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-09-07T06:19:13.0324155Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-09-07T06:19:13.0324379Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-09-07T06:19:13.0324563Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-09-07T06:19:13.0324745Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-09-07T06:19:13.0324935Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-09-07T06:19:13.0325116Z * [new branch] gh/fegin/308/base -> origin/gh/fegin/308/base 2025-09-07T06:19:13.0325291Z * [new branch] gh/fegin/308/head -> origin/gh/fegin/308/head 2025-09-07T06:19:13.0325479Z * [new branch] gh/fegin/308/orig -> origin/gh/fegin/308/orig 2025-09-07T06:19:13.0325653Z * [new branch] gh/fegin/309/base -> origin/gh/fegin/309/base 2025-09-07T06:19:13.0325832Z * [new branch] gh/fegin/309/head -> origin/gh/fegin/309/head 2025-09-07T06:19:13.0326021Z * [new branch] gh/fegin/309/orig -> origin/gh/fegin/309/orig 2025-09-07T06:19:13.0326199Z * [new branch] gh/fegin/310/base -> origin/gh/fegin/310/base 2025-09-07T06:19:13.0326376Z * [new branch] gh/fegin/310/head -> origin/gh/fegin/310/head 2025-09-07T06:19:13.0326563Z * [new branch] gh/fegin/310/orig -> origin/gh/fegin/310/orig 2025-09-07T06:19:13.0326802Z * [new branch] gh/fegin/311/base -> origin/gh/fegin/311/base 2025-09-07T06:19:13.0326985Z * [new branch] gh/fegin/311/head -> origin/gh/fegin/311/head 2025-09-07T06:19:13.0327158Z * [new branch] gh/fegin/311/orig -> origin/gh/fegin/311/orig 2025-09-07T06:19:13.0327342Z * [new branch] gh/fegin/312/base -> origin/gh/fegin/312/base 2025-09-07T06:19:13.0327523Z * [new branch] gh/fegin/312/head -> origin/gh/fegin/312/head 2025-09-07T06:19:13.0327698Z * [new branch] gh/fegin/312/orig -> origin/gh/fegin/312/orig 2025-09-07T06:19:13.0327883Z * [new branch] gh/fegin/313/base -> origin/gh/fegin/313/base 2025-09-07T06:19:13.0328056Z * [new branch] gh/fegin/313/head -> origin/gh/fegin/313/head 2025-09-07T06:19:13.0328302Z * [new branch] gh/fegin/313/orig -> origin/gh/fegin/313/orig 2025-09-07T06:19:13.0328491Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-09-07T06:19:13.0328670Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-09-07T06:19:13.0328849Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-09-07T06:19:13.0329035Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-09-07T06:19:13.0329214Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-09-07T06:19:13.0329390Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-09-07T06:19:13.0329617Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-09-07T06:19:13.0329819Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-09-07T06:19:13.0330005Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-09-07T06:19:13.0330234Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-09-07T06:19:13.0330412Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-09-07T06:19:13.0330592Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-09-07T06:19:13.0330778Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-09-07T06:19:13.0330957Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-09-07T06:19:13.0331138Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-09-07T06:19:13.0331318Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-09-07T06:19:13.0331510Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-09-07T06:19:13.0331696Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-09-07T06:19:13.0331875Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-09-07T06:19:13.0332074Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-09-07T06:19:13.0332251Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-09-07T06:19:13.0332429Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-09-07T06:19:13.0332615Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-09-07T06:19:13.0332792Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-09-07T06:19:13.0332970Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-09-07T06:19:13.0333160Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-09-07T06:19:13.0333410Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-09-07T06:19:13.0333588Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-09-07T06:19:13.0333774Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-09-07T06:19:13.0333953Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-09-07T06:19:13.0334133Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-09-07T06:19:13.0334321Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-09-07T06:19:13.0334498Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-09-07T06:19:13.0334678Z * [new branch] gh/fffrog/139/base -> origin/gh/fffrog/139/base 2025-09-07T06:19:13.0334932Z * [new branch] gh/fffrog/139/head -> origin/gh/fffrog/139/head 2025-09-07T06:19:13.0335117Z * [new branch] gh/fffrog/139/orig -> origin/gh/fffrog/139/orig 2025-09-07T06:19:13.0335295Z * [new branch] gh/fffrog/140/base -> origin/gh/fffrog/140/base 2025-09-07T06:19:13.0335521Z * [new branch] gh/fffrog/140/head -> origin/gh/fffrog/140/head 2025-09-07T06:19:13.0335716Z * [new branch] gh/fffrog/140/orig -> origin/gh/fffrog/140/orig 2025-09-07T06:19:13.0335936Z * [new branch] gh/fffrog/141/base -> origin/gh/fffrog/141/base 2025-09-07T06:19:13.0336118Z * [new branch] gh/fffrog/141/head -> origin/gh/fffrog/141/head 2025-09-07T06:19:13.0336303Z * [new branch] gh/fffrog/141/orig -> origin/gh/fffrog/141/orig 2025-09-07T06:19:13.0336481Z * [new branch] gh/fffrog/142/base -> origin/gh/fffrog/142/base 2025-09-07T06:19:13.0336667Z * [new branch] gh/fffrog/142/head -> origin/gh/fffrog/142/head 2025-09-07T06:19:13.0336857Z * [new branch] gh/fffrog/142/orig -> origin/gh/fffrog/142/orig 2025-09-07T06:19:13.0337034Z * [new branch] gh/fffrog/143/base -> origin/gh/fffrog/143/base 2025-09-07T06:19:13.0337212Z * [new branch] gh/fffrog/143/head -> origin/gh/fffrog/143/head 2025-09-07T06:19:13.0337399Z * [new branch] gh/fffrog/143/orig -> origin/gh/fffrog/143/orig 2025-09-07T06:19:13.0337577Z * [new branch] gh/fffrog/144/base -> origin/gh/fffrog/144/base 2025-09-07T06:19:13.0337761Z * [new branch] gh/fffrog/144/head -> origin/gh/fffrog/144/head 2025-09-07T06:19:13.0337948Z * [new branch] gh/fffrog/144/orig -> origin/gh/fffrog/144/orig 2025-09-07T06:19:13.0338129Z * [new branch] gh/fffrog/145/base -> origin/gh/fffrog/145/base 2025-09-07T06:19:13.0338316Z * [new branch] gh/fffrog/145/head -> origin/gh/fffrog/145/head 2025-09-07T06:19:13.0338507Z * [new branch] gh/fffrog/145/orig -> origin/gh/fffrog/145/orig 2025-09-07T06:19:13.0338689Z * [new branch] gh/fffrog/146/base -> origin/gh/fffrog/146/base 2025-09-07T06:19:13.0338866Z * [new branch] gh/fffrog/146/head -> origin/gh/fffrog/146/head 2025-09-07T06:19:13.0339054Z * [new branch] gh/fffrog/146/orig -> origin/gh/fffrog/146/orig 2025-09-07T06:19:13.0339232Z * [new branch] gh/fffrog/147/base -> origin/gh/fffrog/147/base 2025-09-07T06:19:13.0339411Z * [new branch] gh/fffrog/147/head -> origin/gh/fffrog/147/head 2025-09-07T06:19:13.0339594Z * [new branch] gh/fffrog/147/orig -> origin/gh/fffrog/147/orig 2025-09-07T06:19:13.0339786Z * [new branch] gh/fffrog/148/base -> origin/gh/fffrog/148/base 2025-09-07T06:19:13.0340042Z * [new branch] gh/fffrog/148/head -> origin/gh/fffrog/148/head 2025-09-07T06:19:13.0340219Z * [new branch] gh/fffrog/148/orig -> origin/gh/fffrog/148/orig 2025-09-07T06:19:13.0340403Z * [new branch] gh/fffrog/149/base -> origin/gh/fffrog/149/base 2025-09-07T06:19:13.0340584Z * [new branch] gh/fffrog/149/head -> origin/gh/fffrog/149/head 2025-09-07T06:19:13.0340761Z * [new branch] gh/fffrog/149/orig -> origin/gh/fffrog/149/orig 2025-09-07T06:19:13.0340951Z * [new branch] gh/fffrog/150/base -> origin/gh/fffrog/150/base 2025-09-07T06:19:13.0341177Z * [new branch] gh/fffrog/150/head -> origin/gh/fffrog/150/head 2025-09-07T06:19:13.0341360Z * [new branch] gh/fffrog/150/orig -> origin/gh/fffrog/150/orig 2025-09-07T06:19:13.0341586Z * [new branch] gh/fffrog/151/base -> origin/gh/fffrog/151/base 2025-09-07T06:19:13.0341841Z * [new branch] gh/fffrog/151/head -> origin/gh/fffrog/151/head 2025-09-07T06:19:13.0342020Z * [new branch] gh/fffrog/151/orig -> origin/gh/fffrog/151/orig 2025-09-07T06:19:13.0342207Z * [new branch] gh/fffrog/152/base -> origin/gh/fffrog/152/base 2025-09-07T06:19:13.0342385Z * [new branch] gh/fffrog/152/head -> origin/gh/fffrog/152/head 2025-09-07T06:19:13.0342563Z * [new branch] gh/fffrog/153/base -> origin/gh/fffrog/153/base 2025-09-07T06:19:13.0342748Z * [new branch] gh/fffrog/153/head -> origin/gh/fffrog/153/head 2025-09-07T06:19:13.0342927Z * [new branch] gh/fffrog/153/orig -> origin/gh/fffrog/153/orig 2025-09-07T06:19:13.0343118Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-09-07T06:19:13.0343317Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-09-07T06:19:13.0343510Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-09-07T06:19:13.0343699Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-09-07T06:19:13.0343886Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-09-07T06:19:13.0344088Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-09-07T06:19:13.0344274Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-09-07T06:19:13.0344464Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-09-07T06:19:13.0344659Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-09-07T06:19:13.0344853Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-09-07T06:19:13.0345112Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-09-07T06:19:13.0345320Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-09-07T06:19:13.0345510Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-09-07T06:19:13.0345699Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-09-07T06:19:13.0345895Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-09-07T06:19:13.0346088Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-09-07T06:19:13.0346276Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-09-07T06:19:13.0346477Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-09-07T06:19:13.0346667Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-09-07T06:19:13.0346978Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-09-07T06:19:13.0347178Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-09-07T06:19:13.0347408Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-09-07T06:19:13.0347599Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-09-07T06:19:13.0347804Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-09-07T06:19:13.0347991Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-09-07T06:19:13.0348178Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-09-07T06:19:13.0348365Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-09-07T06:19:13.0348559Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-09-07T06:19:13.0348818Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-09-07T06:19:13.0349010Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-09-07T06:19:13.0349204Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-09-07T06:19:13.0349389Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-09-07T06:19:13.0349576Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-09-07T06:19:13.0349773Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-09-07T06:19:13.0349960Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-09-07T06:19:13.0350146Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-09-07T06:19:13.0350346Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-09-07T06:19:13.0350537Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-09-07T06:19:13.0350724Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-09-07T06:19:13.0350925Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-09-07T06:19:13.0351112Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-09-07T06:19:13.0351301Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-09-07T06:19:13.0351499Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-09-07T06:19:13.0351688Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-09-07T06:19:13.0351880Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-09-07T06:19:13.0352090Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-09-07T06:19:13.0352279Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-09-07T06:19:13.0352465Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-09-07T06:19:13.0352697Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-09-07T06:19:13.0352899Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-09-07T06:19:13.0353132Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-09-07T06:19:13.0353324Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-09-07T06:19:13.0353520Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-09-07T06:19:13.0353706Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-09-07T06:19:13.0353964Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-09-07T06:19:13.0354161Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-09-07T06:19:13.0354349Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-09-07T06:19:13.0354542Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-09-07T06:19:13.0354741Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-09-07T06:19:13.0354931Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-09-07T06:19:13.0355119Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-09-07T06:19:13.0355313Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-09-07T06:19:13.0355571Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-09-07T06:19:13.0355764Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-09-07T06:19:13.0355965Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-09-07T06:19:13.0356161Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-09-07T06:19:13.0356351Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-09-07T06:19:13.0356548Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-09-07T06:19:13.0356737Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-09-07T06:19:13.0356930Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-09-07T06:19:13.0357121Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-09-07T06:19:13.0357324Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-09-07T06:19:13.0357518Z * [new branch] gh/guangyey/186/base -> origin/gh/guangyey/186/base 2025-09-07T06:19:13.0357706Z * [new branch] gh/guangyey/186/head -> origin/gh/guangyey/186/head 2025-09-07T06:19:13.0357903Z * [new branch] gh/guangyey/186/orig -> origin/gh/guangyey/186/orig 2025-09-07T06:19:13.0372814Z * [new branch] gh/guangyey/187/base -> origin/gh/guangyey/187/base 2025-09-07T06:19:13.0373170Z * [new branch] gh/guangyey/187/head -> origin/gh/guangyey/187/head 2025-09-07T06:19:13.0373388Z * [new branch] gh/guangyey/187/orig -> origin/gh/guangyey/187/orig 2025-09-07T06:19:13.0373587Z * [new branch] gh/guangyey/188/base -> origin/gh/guangyey/188/base 2025-09-07T06:19:13.0373778Z * [new branch] gh/guangyey/188/head -> origin/gh/guangyey/188/head 2025-09-07T06:19:13.0374019Z * [new branch] gh/guangyey/188/orig -> origin/gh/guangyey/188/orig 2025-09-07T06:19:13.0374209Z * [new branch] gh/guangyey/189/base -> origin/gh/guangyey/189/base 2025-09-07T06:19:13.0374393Z * [new branch] gh/guangyey/189/head -> origin/gh/guangyey/189/head 2025-09-07T06:19:13.0374595Z * [new branch] gh/guangyey/189/orig -> origin/gh/guangyey/189/orig 2025-09-07T06:19:13.0374789Z * [new branch] gh/guangyey/190/base -> origin/gh/guangyey/190/base 2025-09-07T06:19:13.0374982Z * [new branch] gh/guangyey/190/head -> origin/gh/guangyey/190/head 2025-09-07T06:19:13.0375173Z * [new branch] gh/guangyey/190/orig -> origin/gh/guangyey/190/orig 2025-09-07T06:19:13.0375376Z * [new branch] gh/guangyey/191/base -> origin/gh/guangyey/191/base 2025-09-07T06:19:13.0375570Z * [new branch] gh/guangyey/191/head -> origin/gh/guangyey/191/head 2025-09-07T06:19:13.0375949Z * [new branch] gh/guangyey/191/orig -> origin/gh/guangyey/191/orig 2025-09-07T06:19:13.0376159Z * [new branch] gh/guangyey/192/base -> origin/gh/guangyey/192/base 2025-09-07T06:19:13.0376385Z * [new branch] gh/guangyey/192/head -> origin/gh/guangyey/192/head 2025-09-07T06:19:13.0376573Z * [new branch] gh/guangyey/192/orig -> origin/gh/guangyey/192/orig 2025-09-07T06:19:13.0376772Z * [new branch] gh/guangyey/193/base -> origin/gh/guangyey/193/base 2025-09-07T06:19:13.0376963Z * [new branch] gh/guangyey/193/head -> origin/gh/guangyey/193/head 2025-09-07T06:19:13.0377157Z * [new branch] gh/guangyey/193/orig -> origin/gh/guangyey/193/orig 2025-09-07T06:19:13.0377356Z * [new branch] gh/guangyey/194/base -> origin/gh/guangyey/194/base 2025-09-07T06:19:13.0377638Z * [new branch] gh/guangyey/194/head -> origin/gh/guangyey/194/head 2025-09-07T06:19:13.0377833Z * [new branch] gh/guangyey/194/orig -> origin/gh/guangyey/194/orig 2025-09-07T06:19:13.0378027Z * [new branch] gh/guangyey/195/base -> origin/gh/guangyey/195/base 2025-09-07T06:19:13.0378216Z * [new branch] gh/guangyey/195/head -> origin/gh/guangyey/195/head 2025-09-07T06:19:13.0378409Z * [new branch] gh/guangyey/195/orig -> origin/gh/guangyey/195/orig 2025-09-07T06:19:13.0378610Z * [new branch] gh/guangyey/196/base -> origin/gh/guangyey/196/base 2025-09-07T06:19:13.0378799Z * [new branch] gh/guangyey/196/head -> origin/gh/guangyey/196/head 2025-09-07T06:19:13.0378986Z * [new branch] gh/guangyey/196/orig -> origin/gh/guangyey/196/orig 2025-09-07T06:19:13.0379180Z * [new branch] gh/guangyey/197/base -> origin/gh/guangyey/197/base 2025-09-07T06:19:13.0379393Z * [new branch] gh/guangyey/197/head -> origin/gh/guangyey/197/head 2025-09-07T06:19:13.0379590Z * [new branch] gh/guangyey/197/orig -> origin/gh/guangyey/197/orig 2025-09-07T06:19:13.0379781Z * [new branch] gh/guangyey/198/base -> origin/gh/guangyey/198/base 2025-09-07T06:19:13.0379982Z * [new branch] gh/guangyey/198/head -> origin/gh/guangyey/198/head 2025-09-07T06:19:13.0380177Z * [new branch] gh/guangyey/198/orig -> origin/gh/guangyey/198/orig 2025-09-07T06:19:13.0380371Z * [new branch] gh/guangyey/199/base -> origin/gh/guangyey/199/base 2025-09-07T06:19:13.0380571Z * [new branch] gh/guangyey/199/head -> origin/gh/guangyey/199/head 2025-09-07T06:19:13.0380761Z * [new branch] gh/guangyey/199/orig -> origin/gh/guangyey/199/orig 2025-09-07T06:19:13.0380955Z * [new branch] gh/guangyey/200/base -> origin/gh/guangyey/200/base 2025-09-07T06:19:13.0381160Z * [new branch] gh/guangyey/200/head -> origin/gh/guangyey/200/head 2025-09-07T06:19:13.0381351Z * [new branch] gh/guangyey/200/orig -> origin/gh/guangyey/200/orig 2025-09-07T06:19:13.0381583Z * [new branch] gh/guangyey/201/base -> origin/gh/guangyey/201/base 2025-09-07T06:19:13.0381788Z * [new branch] gh/guangyey/201/head -> origin/gh/guangyey/201/head 2025-09-07T06:19:13.0382014Z * [new branch] gh/guangyey/201/orig -> origin/gh/guangyey/201/orig 2025-09-07T06:19:13.0382205Z * [new branch] gh/guangyey/202/base -> origin/gh/guangyey/202/base 2025-09-07T06:19:13.0382398Z * [new branch] gh/guangyey/202/head -> origin/gh/guangyey/202/head 2025-09-07T06:19:13.0382586Z * [new branch] gh/guangyey/202/orig -> origin/gh/guangyey/202/orig 2025-09-07T06:19:13.0382783Z * [new branch] gh/guangyey/203/base -> origin/gh/guangyey/203/base 2025-09-07T06:19:13.0383062Z * [new branch] gh/guangyey/203/head -> origin/gh/guangyey/203/head 2025-09-07T06:19:13.0383251Z * [new branch] gh/guangyey/203/orig -> origin/gh/guangyey/203/orig 2025-09-07T06:19:13.0383442Z * [new branch] gh/guangyey/204/base -> origin/gh/guangyey/204/base 2025-09-07T06:19:13.0383644Z * [new branch] gh/guangyey/204/head -> origin/gh/guangyey/204/head 2025-09-07T06:19:13.0383836Z * [new branch] gh/guangyey/204/orig -> origin/gh/guangyey/204/orig 2025-09-07T06:19:13.0384027Z * [new branch] gh/guangyey/205/base -> origin/gh/guangyey/205/base 2025-09-07T06:19:13.0384216Z * [new branch] gh/guangyey/205/head -> origin/gh/guangyey/205/head 2025-09-07T06:19:13.0384412Z * [new branch] gh/guangyey/205/orig -> origin/gh/guangyey/205/orig 2025-09-07T06:19:13.0384676Z * [new branch] gh/guangyey/206/base -> origin/gh/guangyey/206/base 2025-09-07T06:19:13.0384864Z * [new branch] gh/guangyey/206/head -> origin/gh/guangyey/206/head 2025-09-07T06:19:13.0385132Z * [new branch] gh/guangyey/206/orig -> origin/gh/guangyey/206/orig 2025-09-07T06:19:13.0385324Z * [new branch] gh/guangyey/207/base -> origin/gh/guangyey/207/base 2025-09-07T06:19:13.0385517Z * [new branch] gh/guangyey/207/head -> origin/gh/guangyey/207/head 2025-09-07T06:19:13.0385717Z * [new branch] gh/guangyey/207/orig -> origin/gh/guangyey/207/orig 2025-09-07T06:19:13.0385913Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-09-07T06:19:13.0386103Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-09-07T06:19:13.0386303Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-09-07T06:19:13.0386495Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-09-07T06:19:13.0386683Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-09-07T06:19:13.0386883Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-09-07T06:19:13.0387127Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-09-07T06:19:13.0387403Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-09-07T06:19:13.0387649Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-09-07T06:19:13.0387925Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-09-07T06:19:13.0388160Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-09-07T06:19:13.0388403Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-09-07T06:19:13.0388631Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-09-07T06:19:13.0388861Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-09-07T06:19:13.0389094Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-09-07T06:19:13.0389337Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-09-07T06:19:13.0389569Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-09-07T06:19:13.0389802Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-09-07T06:19:13.0390035Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-09-07T06:19:13.0390359Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-09-07T06:19:13.0390591Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-09-07T06:19:13.0390823Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-09-07T06:19:13.0391065Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-09-07T06:19:13.0391294Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-09-07T06:19:13.0391527Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-09-07T06:19:13.0391767Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-09-07T06:19:13.0391995Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-09-07T06:19:13.0392739Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-09-07T06:19:13.0392984Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-09-07T06:19:13.0393261Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-09-07T06:19:13.0393528Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-09-07T06:19:13.0393765Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-09-07T06:19:13.0393998Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-09-07T06:19:13.0394228Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-09-07T06:19:13.0394464Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-09-07T06:19:13.0394702Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-09-07T06:19:13.0394934Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-09-07T06:19:13.0395164Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-09-07T06:19:13.0395397Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-09-07T06:19:13.0395623Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-09-07T06:19:13.0395852Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-09-07T06:19:13.0396094Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-09-07T06:19:13.0396324Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-09-07T06:19:13.0396549Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-09-07T06:19:13.0396790Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-09-07T06:19:13.0397024Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-09-07T06:19:13.0397254Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-09-07T06:19:13.0397492Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-09-07T06:19:13.0397719Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-09-07T06:19:13.0397946Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-09-07T06:19:13.0398180Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-09-07T06:19:13.0398406Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-09-07T06:19:13.0398739Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-09-07T06:19:13.0398989Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-09-07T06:19:13.0399253Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-09-07T06:19:13.0399491Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-09-07T06:19:13.0399734Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-09-07T06:19:13.0399963Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-09-07T06:19:13.0400190Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-09-07T06:19:13.0400425Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-09-07T06:19:13.0400733Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-09-07T06:19:13.0400961Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-09-07T06:19:13.0401195Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-09-07T06:19:13.0401427Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-09-07T06:19:13.0401655Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-09-07T06:19:13.0401885Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-09-07T06:19:13.0402111Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-09-07T06:19:13.0402336Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-09-07T06:19:13.0402574Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-09-07T06:19:13.0402808Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-09-07T06:19:13.0403036Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-09-07T06:19:13.0403264Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-09-07T06:19:13.0403504Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-09-07T06:19:13.0403732Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-09-07T06:19:13.0403959Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-09-07T06:19:13.0404200Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-09-07T06:19:13.0404434Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-09-07T06:19:13.0404707Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-09-07T06:19:13.0404989Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-09-07T06:19:13.0405215Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-09-07T06:19:13.0405443Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-09-07T06:19:13.0405681Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-09-07T06:19:13.0405909Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-09-07T06:19:13.0406137Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-09-07T06:19:13.0406371Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-09-07T06:19:13.0407090Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-09-07T06:19:13.0407325Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-09-07T06:19:13.0407563Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-09-07T06:19:13.0407791Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-09-07T06:19:13.0408020Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-09-07T06:19:13.0408258Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-09-07T06:19:13.0408487Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-09-07T06:19:13.0408716Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-09-07T06:19:13.0409020Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-09-07T06:19:13.0409247Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-09-07T06:19:13.0409476Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-09-07T06:19:13.0409716Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-09-07T06:19:13.0409944Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-09-07T06:19:13.0410172Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-09-07T06:19:13.0410447Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-09-07T06:19:13.0410725Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-09-07T06:19:13.0410960Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-09-07T06:19:13.0411189Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-09-07T06:19:13.0411423Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-09-07T06:19:13.0411651Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-09-07T06:19:13.0411884Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-09-07T06:19:13.0412119Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-09-07T06:19:13.0412348Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-09-07T06:19:13.0412574Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-09-07T06:19:13.0412820Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-09-07T06:19:13.0413055Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-09-07T06:19:13.0413283Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-09-07T06:19:13.0413524Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-09-07T06:19:13.0413754Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-09-07T06:19:13.0413986Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-09-07T06:19:13.0414222Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-09-07T06:19:13.0414448Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-09-07T06:19:13.0414680Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-09-07T06:19:13.0415182Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-09-07T06:19:13.0415415Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-09-07T06:19:13.0415641Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-09-07T06:19:13.0415879Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-09-07T06:19:13.0416155Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-09-07T06:19:13.0416429Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-09-07T06:19:13.0416670Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-09-07T06:19:13.0416896Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-09-07T06:19:13.0417202Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-09-07T06:19:13.0417437Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-09-07T06:19:13.0417665Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-09-07T06:19:13.0417891Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-09-07T06:19:13.0418123Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-09-07T06:19:13.0418363Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-09-07T06:19:13.0418588Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-09-07T06:19:13.0418816Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-09-07T06:19:13.0419065Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-09-07T06:19:13.0419294Z * [new branch] gh/guilhermeleobas/234/base -> origin/gh/guilhermeleobas/234/base 2025-09-07T06:19:13.0419530Z * [new branch] gh/guilhermeleobas/234/head -> origin/gh/guilhermeleobas/234/head 2025-09-07T06:19:13.0419767Z * [new branch] gh/guilhermeleobas/234/orig -> origin/gh/guilhermeleobas/234/orig 2025-09-07T06:19:13.0419995Z * [new branch] gh/guilhermeleobas/235/base -> origin/gh/guilhermeleobas/235/base 2025-09-07T06:19:13.0420225Z * [new branch] gh/guilhermeleobas/235/head -> origin/gh/guilhermeleobas/235/head 2025-09-07T06:19:13.0420457Z * [new branch] gh/guilhermeleobas/235/orig -> origin/gh/guilhermeleobas/235/orig 2025-09-07T06:19:13.0420681Z * [new branch] gh/guilhermeleobas/236/base -> origin/gh/guilhermeleobas/236/base 2025-09-07T06:19:13.0420917Z * [new branch] gh/guilhermeleobas/236/head -> origin/gh/guilhermeleobas/236/head 2025-09-07T06:19:13.0421156Z * [new branch] gh/guilhermeleobas/236/orig -> origin/gh/guilhermeleobas/236/orig 2025-09-07T06:19:13.0421382Z * [new branch] gh/guilhermeleobas/237/base -> origin/gh/guilhermeleobas/237/base 2025-09-07T06:19:13.0421611Z * [new branch] gh/guilhermeleobas/237/head -> origin/gh/guilhermeleobas/237/head 2025-09-07T06:19:13.0421888Z * [new branch] gh/guilhermeleobas/237/orig -> origin/gh/guilhermeleobas/237/orig 2025-09-07T06:19:13.0422153Z * [new branch] gh/guilhermeleobas/238/base -> origin/gh/guilhermeleobas/238/base 2025-09-07T06:19:13.0422386Z * [new branch] gh/guilhermeleobas/238/head -> origin/gh/guilhermeleobas/238/head 2025-09-07T06:19:13.0422619Z * [new branch] gh/guilhermeleobas/238/orig -> origin/gh/guilhermeleobas/238/orig 2025-09-07T06:19:13.0422853Z * [new branch] gh/guilhermeleobas/239/base -> origin/gh/guilhermeleobas/239/base 2025-09-07T06:19:13.0423337Z * [new branch] gh/guilhermeleobas/239/head -> origin/gh/guilhermeleobas/239/head 2025-09-07T06:19:13.0423579Z * [new branch] gh/guilhermeleobas/239/orig -> origin/gh/guilhermeleobas/239/orig 2025-09-07T06:19:13.0423807Z * [new branch] gh/guilhermeleobas/240/base -> origin/gh/guilhermeleobas/240/base 2025-09-07T06:19:13.0424039Z * [new branch] gh/guilhermeleobas/240/head -> origin/gh/guilhermeleobas/240/head 2025-09-07T06:19:13.0424282Z * [new branch] gh/guilhermeleobas/240/orig -> origin/gh/guilhermeleobas/240/orig 2025-09-07T06:19:13.0424510Z * [new branch] gh/guilhermeleobas/241/base -> origin/gh/guilhermeleobas/241/base 2025-09-07T06:19:13.0424741Z * [new branch] gh/guilhermeleobas/241/head -> origin/gh/guilhermeleobas/241/head 2025-09-07T06:19:13.0425134Z * [new branch] gh/guilhermeleobas/241/orig -> origin/gh/guilhermeleobas/241/orig 2025-09-07T06:19:13.0425380Z * [new branch] gh/guilhermeleobas/242/base -> origin/gh/guilhermeleobas/242/base 2025-09-07T06:19:13.0425610Z * [new branch] gh/guilhermeleobas/242/head -> origin/gh/guilhermeleobas/242/head 2025-09-07T06:19:13.0425845Z * [new branch] gh/guilhermeleobas/242/orig -> origin/gh/guilhermeleobas/242/orig 2025-09-07T06:19:13.0426082Z * [new branch] gh/guilhermeleobas/243/base -> origin/gh/guilhermeleobas/243/base 2025-09-07T06:19:13.0426315Z * [new branch] gh/guilhermeleobas/243/head -> origin/gh/guilhermeleobas/243/head 2025-09-07T06:19:13.0426547Z * [new branch] gh/guilhermeleobas/243/orig -> origin/gh/guilhermeleobas/243/orig 2025-09-07T06:19:13.0426788Z * [new branch] gh/guilhermeleobas/244/base -> origin/gh/guilhermeleobas/244/base 2025-09-07T06:19:13.0427020Z * [new branch] gh/guilhermeleobas/244/head -> origin/gh/guilhermeleobas/244/head 2025-09-07T06:19:13.0427255Z * [new branch] gh/guilhermeleobas/244/orig -> origin/gh/guilhermeleobas/244/orig 2025-09-07T06:19:13.0427542Z * [new branch] gh/guilhermeleobas/245/base -> origin/gh/guilhermeleobas/245/base 2025-09-07T06:19:13.0427777Z * [new branch] gh/guilhermeleobas/245/head -> origin/gh/guilhermeleobas/245/head 2025-09-07T06:19:13.0428049Z * [new branch] gh/guilhermeleobas/245/orig -> origin/gh/guilhermeleobas/245/orig 2025-09-07T06:19:13.0428294Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-09-07T06:19:13.0428522Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-09-07T06:19:13.0428752Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-09-07T06:19:13.0428976Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-09-07T06:19:13.0429202Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-09-07T06:19:13.0429416Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-09-07T06:19:13.0429633Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-09-07T06:19:13.0429846Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-09-07T06:19:13.0430055Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-09-07T06:19:13.0430272Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-09-07T06:19:13.0430483Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-09-07T06:19:13.0430695Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-09-07T06:19:13.0430925Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-09-07T06:19:13.0431408Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-09-07T06:19:13.0431626Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-09-07T06:19:13.0431842Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-09-07T06:19:13.0432065Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-09-07T06:19:13.0432281Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-09-07T06:19:13.0432491Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-09-07T06:19:13.0432715Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-09-07T06:19:13.0432999Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-09-07T06:19:13.0433267Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-09-07T06:19:13.0433489Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-09-07T06:19:13.0433743Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-09-07T06:19:13.0433961Z * [new branch] gh/henrylhtsang/147/base -> origin/gh/henrylhtsang/147/base 2025-09-07T06:19:13.0434180Z * [new branch] gh/henrylhtsang/147/head -> origin/gh/henrylhtsang/147/head 2025-09-07T06:19:13.0434394Z * [new branch] gh/henrylhtsang/147/orig -> origin/gh/henrylhtsang/147/orig 2025-09-07T06:19:13.0434608Z * [new branch] gh/henrylhtsang/148/base -> origin/gh/henrylhtsang/148/base 2025-09-07T06:19:13.0434835Z * [new branch] gh/henrylhtsang/148/head -> origin/gh/henrylhtsang/148/head 2025-09-07T06:19:13.0435054Z * [new branch] gh/henrylhtsang/148/orig -> origin/gh/henrylhtsang/148/orig 2025-09-07T06:19:13.0435266Z * [new branch] gh/henrylhtsang/149/base -> origin/gh/henrylhtsang/149/base 2025-09-07T06:19:13.0435484Z * [new branch] gh/henrylhtsang/149/head -> origin/gh/henrylhtsang/149/head 2025-09-07T06:19:13.0435696Z * [new branch] gh/henrylhtsang/149/orig -> origin/gh/henrylhtsang/149/orig 2025-09-07T06:19:13.0435882Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-09-07T06:19:13.0436061Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-09-07T06:19:13.0436235Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-09-07T06:19:13.0436410Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-09-07T06:19:13.0436588Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-09-07T06:19:13.0436767Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-09-07T06:19:13.0436938Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-09-07T06:19:13.0437107Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-09-07T06:19:13.0437303Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-09-07T06:19:13.0437486Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-09-07T06:19:13.0437666Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-09-07T06:19:13.0437852Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-09-07T06:19:13.0438030Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-09-07T06:19:13.0438212Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-09-07T06:19:13.0438681Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-09-07T06:19:13.0438913Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-09-07T06:19:13.0439096Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-09-07T06:19:13.0439317Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-09-07T06:19:13.0439503Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-09-07T06:19:13.0439682Z * [new branch] gh/isuruf/144/base -> origin/gh/isuruf/144/base 2025-09-07T06:19:13.0439868Z * [new branch] gh/isuruf/144/head -> origin/gh/isuruf/144/head 2025-09-07T06:19:13.0440051Z * [new branch] gh/isuruf/144/orig -> origin/gh/isuruf/144/orig 2025-09-07T06:19:13.0440302Z * [new branch] gh/isuruf/145/base -> origin/gh/isuruf/145/base 2025-09-07T06:19:13.0440495Z * [new branch] gh/isuruf/145/head -> origin/gh/isuruf/145/head 2025-09-07T06:19:13.0440675Z * [new branch] gh/isuruf/145/orig -> origin/gh/isuruf/145/orig 2025-09-07T06:19:13.0440854Z * [new branch] gh/isuruf/146/base -> origin/gh/isuruf/146/base 2025-09-07T06:19:13.0441043Z * [new branch] gh/isuruf/146/head -> origin/gh/isuruf/146/head 2025-09-07T06:19:13.0441222Z * [new branch] gh/isuruf/146/orig -> origin/gh/isuruf/146/orig 2025-09-07T06:19:13.0441404Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-09-07T06:19:13.0441583Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-09-07T06:19:13.0441771Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-09-07T06:19:13.0441968Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-09-07T06:19:13.0442173Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-09-07T06:19:13.0442371Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-09-07T06:19:13.0442560Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-09-07T06:19:13.0442747Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-09-07T06:19:13.0442940Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-09-07T06:19:13.0443126Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-09-07T06:19:13.0443319Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-09-07T06:19:13.0443516Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-09-07T06:19:13.0443711Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-09-07T06:19:13.0443897Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-09-07T06:19:13.0444094Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-09-07T06:19:13.0444282Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-09-07T06:19:13.0444469Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-09-07T06:19:13.0444715Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-09-07T06:19:13.0444903Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-09-07T06:19:13.0445140Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-09-07T06:19:13.0445331Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-09-07T06:19:13.0445795Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-09-07T06:19:13.0445984Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-09-07T06:19:13.0446173Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-09-07T06:19:13.0446369Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-09-07T06:19:13.0446560Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-09-07T06:19:13.0446750Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-09-07T06:19:13.0446937Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-09-07T06:19:13.0447134Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-09-07T06:19:13.0447389Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-09-07T06:19:13.0447578Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-09-07T06:19:13.0447770Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-09-07T06:19:13.0447961Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-09-07T06:19:13.0448149Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-09-07T06:19:13.0448348Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-09-07T06:19:13.0448540Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-09-07T06:19:13.0448735Z * [new branch] gh/jamesjwu/185/base -> origin/gh/jamesjwu/185/base 2025-09-07T06:19:13.0448929Z * [new branch] gh/jamesjwu/185/head -> origin/gh/jamesjwu/185/head 2025-09-07T06:19:13.0449124Z * [new branch] gh/jamesjwu/185/orig -> origin/gh/jamesjwu/185/orig 2025-09-07T06:19:13.0449313Z * [new branch] gh/jamesjwu/186/base -> origin/gh/jamesjwu/186/base 2025-09-07T06:19:13.0449517Z * [new branch] gh/jamesjwu/186/head -> origin/gh/jamesjwu/186/head 2025-09-07T06:19:13.0449706Z * [new branch] gh/jamesjwu/186/orig -> origin/gh/jamesjwu/186/orig 2025-09-07T06:19:13.0449893Z * [new branch] gh/jamesjwu/187/base -> origin/gh/jamesjwu/187/base 2025-09-07T06:19:13.0450090Z * [new branch] gh/jamesjwu/187/head -> origin/gh/jamesjwu/187/head 2025-09-07T06:19:13.0450280Z * [new branch] gh/jamesjwu/187/orig -> origin/gh/jamesjwu/187/orig 2025-09-07T06:19:13.0450515Z * [new branch] gh/jamesjwu/188/base -> origin/gh/jamesjwu/188/base 2025-09-07T06:19:13.0450711Z * [new branch] gh/jamesjwu/188/head -> origin/gh/jamesjwu/188/head 2025-09-07T06:19:13.0450949Z * [new branch] gh/jamesjwu/188/orig -> origin/gh/jamesjwu/188/orig 2025-09-07T06:19:13.0451139Z * [new branch] gh/jamesjwu/189/base -> origin/gh/jamesjwu/189/base 2025-09-07T06:19:13.0451326Z * [new branch] gh/jamesjwu/189/head -> origin/gh/jamesjwu/189/head 2025-09-07T06:19:13.0451519Z * [new branch] gh/jamesjwu/189/orig -> origin/gh/jamesjwu/189/orig 2025-09-07T06:19:13.0451706Z * [new branch] gh/jamesjwu/190/base -> origin/gh/jamesjwu/190/base 2025-09-07T06:19:13.0451896Z * [new branch] gh/jamesjwu/190/head -> origin/gh/jamesjwu/190/head 2025-09-07T06:19:13.0452098Z * [new branch] gh/jamesjwu/190/orig -> origin/gh/jamesjwu/190/orig 2025-09-07T06:19:13.0452286Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-09-07T06:19:13.0452476Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-09-07T06:19:13.0452937Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-09-07T06:19:13.0453128Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-09-07T06:19:13.0453315Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-09-07T06:19:13.0453510Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-09-07T06:19:13.0453696Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-09-07T06:19:13.0453881Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-09-07T06:19:13.0454070Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-09-07T06:19:13.0454253Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-09-07T06:19:13.0454501Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-09-07T06:19:13.0454696Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-09-07T06:19:13.0454880Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-09-07T06:19:13.0455066Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-09-07T06:19:13.0455265Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-09-07T06:19:13.0455452Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-09-07T06:19:13.0455641Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-09-07T06:19:13.0455825Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-09-07T06:19:13.0456020Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-09-07T06:19:13.0456257Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-09-07T06:19:13.0456443Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-09-07T06:19:13.0456681Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-09-07T06:19:13.0456868Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-09-07T06:19:13.0457054Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-09-07T06:19:13.0457248Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-09-07T06:19:13.0457432Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-09-07T06:19:13.0457615Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-09-07T06:19:13.0457807Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-09-07T06:19:13.0457999Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-09-07T06:19:13.0458189Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-09-07T06:19:13.0458386Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-09-07T06:19:13.0458574Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-09-07T06:19:13.0458761Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-09-07T06:19:13.0458956Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-09-07T06:19:13.0459142Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-09-07T06:19:13.0459330Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-09-07T06:19:13.0459531Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-09-07T06:19:13.0459975Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-09-07T06:19:13.0460167Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-09-07T06:19:13.0460352Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-09-07T06:19:13.0460549Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-09-07T06:19:13.0460730Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-09-07T06:19:13.0460918Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-09-07T06:19:13.0461109Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-09-07T06:19:13.0461297Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-09-07T06:19:13.0461557Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-09-07T06:19:13.0461752Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-09-07T06:19:13.0461982Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-09-07T06:19:13.0462168Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-09-07T06:19:13.0462399Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-09-07T06:19:13.0462590Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-09-07T06:19:13.0462772Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-09-07T06:19:13.0462967Z * [new branch] gh/janeyx99/301/base -> origin/gh/janeyx99/301/base 2025-09-07T06:19:13.0463154Z * [new branch] gh/janeyx99/301/head -> origin/gh/janeyx99/301/head 2025-09-07T06:19:13.0463348Z * [new branch] gh/janeyx99/301/orig -> origin/gh/janeyx99/301/orig 2025-09-07T06:19:13.0463542Z * [new branch] gh/janeyx99/302/base -> origin/gh/janeyx99/302/base 2025-09-07T06:19:13.0463728Z * [new branch] gh/janeyx99/302/head -> origin/gh/janeyx99/302/head 2025-09-07T06:19:13.0463915Z * [new branch] gh/janeyx99/303/base -> origin/gh/janeyx99/303/base 2025-09-07T06:19:13.0464112Z * [new branch] gh/janeyx99/303/head -> origin/gh/janeyx99/303/head 2025-09-07T06:19:13.0464296Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-09-07T06:19:13.0464477Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-09-07T06:19:13.0464660Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-09-07T06:19:13.0464851Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-09-07T06:19:13.0465109Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-09-07T06:19:13.0465301Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-09-07T06:19:13.0465490Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-09-07T06:19:13.0465674Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-09-07T06:19:13.0465857Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-09-07T06:19:13.0466047Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-09-07T06:19:13.0466232Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-09-07T06:19:13.0466410Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-09-07T06:19:13.0466605Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-09-07T06:19:13.0467059Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-09-07T06:19:13.0467281Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-09-07T06:19:13.0467511Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-09-07T06:19:13.0467768Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-09-07T06:19:13.0467974Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-09-07T06:19:13.0468182Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-09-07T06:19:13.0468430Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-09-07T06:19:13.0468634Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-09-07T06:19:13.0468921Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-09-07T06:19:13.0469130Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-09-07T06:19:13.0469332Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-09-07T06:19:13.0469534Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-09-07T06:19:13.0469727Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-09-07T06:19:13.0469919Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-09-07T06:19:13.0470111Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-09-07T06:19:13.0470308Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-09-07T06:19:13.0470500Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-09-07T06:19:13.0470693Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-09-07T06:19:13.0470896Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-09-07T06:19:13.0471087Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-09-07T06:19:13.0471276Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-09-07T06:19:13.0471490Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-09-07T06:19:13.0471713Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-09-07T06:19:13.0471927Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-09-07T06:19:13.0472132Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-09-07T06:19:13.0472330Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-09-07T06:19:13.0472519Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-09-07T06:19:13.0472720Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-09-07T06:19:13.0472912Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-09-07T06:19:13.0473100Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-09-07T06:19:13.0473301Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-09-07T06:19:13.0473493Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-09-07T06:19:13.0473728Z * [new branch] gh/jiayisunx/69/base -> origin/gh/jiayisunx/69/base 2025-09-07T06:19:13.0473928Z * [new branch] gh/jiayisunx/69/head -> origin/gh/jiayisunx/69/head 2025-09-07T06:19:13.0474422Z * [new branch] gh/jiayisunx/69/orig -> origin/gh/jiayisunx/69/orig 2025-09-07T06:19:13.0474621Z * [new branch] gh/jiayisunx/70/base -> origin/gh/jiayisunx/70/base 2025-09-07T06:19:13.0474811Z * [new branch] gh/jiayisunx/70/head -> origin/gh/jiayisunx/70/head 2025-09-07T06:19:13.0475008Z * [new branch] gh/jiayisunx/70/orig -> origin/gh/jiayisunx/70/orig 2025-09-07T06:19:13.0475206Z * [new branch] gh/jiayisunx/71/base -> origin/gh/jiayisunx/71/base 2025-09-07T06:19:13.0475393Z * [new branch] gh/jiayisunx/71/head -> origin/gh/jiayisunx/71/head 2025-09-07T06:19:13.0475594Z * [new branch] gh/jiayisunx/71/orig -> origin/gh/jiayisunx/71/orig 2025-09-07T06:19:13.0475783Z * [new branch] gh/jiayisunx/72/base -> origin/gh/jiayisunx/72/base 2025-09-07T06:19:13.0476038Z * [new branch] gh/jiayisunx/72/head -> origin/gh/jiayisunx/72/head 2025-09-07T06:19:13.0476237Z * [new branch] gh/jiayisunx/72/orig -> origin/gh/jiayisunx/72/orig 2025-09-07T06:19:13.0476425Z * [new branch] gh/jiayisunx/73/base -> origin/gh/jiayisunx/73/base 2025-09-07T06:19:13.0476618Z * [new branch] gh/jiayisunx/73/head -> origin/gh/jiayisunx/73/head 2025-09-07T06:19:13.0476820Z * [new branch] gh/jiayisunx/73/orig -> origin/gh/jiayisunx/73/orig 2025-09-07T06:19:13.0477009Z * [new branch] gh/jiayisunx/74/base -> origin/gh/jiayisunx/74/base 2025-09-07T06:19:13.0477198Z * [new branch] gh/jiayisunx/74/head -> origin/gh/jiayisunx/74/head 2025-09-07T06:19:13.0477396Z * [new branch] gh/jiayisunx/74/orig -> origin/gh/jiayisunx/74/orig 2025-09-07T06:19:13.0477586Z * [new branch] gh/jiayisunx/75/base -> origin/gh/jiayisunx/75/base 2025-09-07T06:19:13.0477783Z * [new branch] gh/jiayisunx/75/head -> origin/gh/jiayisunx/75/head 2025-09-07T06:19:13.0477989Z * [new branch] gh/jiayisunx/75/orig -> origin/gh/jiayisunx/75/orig 2025-09-07T06:19:13.0478180Z * [new branch] gh/jiayisunx/76/base -> origin/gh/jiayisunx/76/base 2025-09-07T06:19:13.0478370Z * [new branch] gh/jiayisunx/76/head -> origin/gh/jiayisunx/76/head 2025-09-07T06:19:13.0478566Z * [new branch] gh/jiayisunx/76/orig -> origin/gh/jiayisunx/76/orig 2025-09-07T06:19:13.0478780Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-09-07T06:19:13.0478977Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-09-07T06:19:13.0479189Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-09-07T06:19:13.0479449Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-09-07T06:19:13.0479664Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-09-07T06:19:13.0479907Z * [new branch] gh/justinchuby/112/base -> origin/gh/justinchuby/112/base 2025-09-07T06:19:13.0480126Z * [new branch] gh/justinchuby/112/head -> origin/gh/justinchuby/112/head 2025-09-07T06:19:13.0480336Z * [new branch] gh/justinchuby/112/orig -> origin/gh/justinchuby/112/orig 2025-09-07T06:19:13.0480539Z * [new branch] gh/justinchuby/113/base -> origin/gh/justinchuby/113/base 2025-09-07T06:19:13.0480754Z * [new branch] gh/justinchuby/113/head -> origin/gh/justinchuby/113/head 2025-09-07T06:19:13.0480957Z * [new branch] gh/justinchuby/113/orig -> origin/gh/justinchuby/113/orig 2025-09-07T06:19:13.0481164Z * [new branch] gh/justinchuby/114/base -> origin/gh/justinchuby/114/base 2025-09-07T06:19:13.0481629Z * [new branch] gh/justinchuby/114/head -> origin/gh/justinchuby/114/head 2025-09-07T06:19:13.0481840Z * [new branch] gh/justinchuby/114/orig -> origin/gh/justinchuby/114/orig 2025-09-07T06:19:13.0482050Z * [new branch] gh/justinchuby/115/base -> origin/gh/justinchuby/115/base 2025-09-07T06:19:13.0482264Z * [new branch] gh/justinchuby/115/head -> origin/gh/justinchuby/115/head 2025-09-07T06:19:13.0482472Z * [new branch] gh/justinchuby/115/orig -> origin/gh/justinchuby/115/orig 2025-09-07T06:19:13.0482673Z * [new branch] gh/karthickai/1/base -> origin/gh/karthickai/1/base 2025-09-07T06:19:13.0482889Z * [new branch] gh/karthickai/1/head -> origin/gh/karthickai/1/head 2025-09-07T06:19:13.0483081Z * [new branch] gh/karthickai/1/orig -> origin/gh/karthickai/1/orig 2025-09-07T06:19:13.0483345Z * [new branch] gh/karthickai/2/base -> origin/gh/karthickai/2/base 2025-09-07T06:19:13.0483547Z * [new branch] gh/karthickai/2/head -> origin/gh/karthickai/2/head 2025-09-07T06:19:13.0483740Z * [new branch] gh/karthickai/2/orig -> origin/gh/karthickai/2/orig 2025-09-07T06:19:13.0483947Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-09-07T06:19:13.0484160Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-09-07T06:19:13.0484365Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-09-07T06:19:13.0484570Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-09-07T06:19:13.0484770Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-09-07T06:19:13.0484979Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-09-07T06:19:13.0485227Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-09-07T06:19:13.0485442Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-09-07T06:19:13.0485653Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-09-07T06:19:13.0485898Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-09-07T06:19:13.0486101Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-09-07T06:19:13.0486309Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-09-07T06:19:13.0486511Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-09-07T06:19:13.0486712Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-09-07T06:19:13.0486919Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-09-07T06:19:13.0487128Z * [new branch] gh/kurtamohler/47/base -> origin/gh/kurtamohler/47/base 2025-09-07T06:19:13.0487362Z * [new branch] gh/kurtamohler/47/head -> origin/gh/kurtamohler/47/head 2025-09-07T06:19:13.0487573Z * [new branch] gh/kurtamohler/47/orig -> origin/gh/kurtamohler/47/orig 2025-09-07T06:19:13.0487771Z * [new branch] gh/kurtamohler/48/base -> origin/gh/kurtamohler/48/base 2025-09-07T06:19:13.0487968Z * [new branch] gh/kurtamohler/48/head -> origin/gh/kurtamohler/48/head 2025-09-07T06:19:13.0488180Z * [new branch] gh/kurtamohler/48/orig -> origin/gh/kurtamohler/48/orig 2025-09-07T06:19:13.0488380Z * [new branch] gh/kurtamohler/49/base -> origin/gh/kurtamohler/49/base 2025-09-07T06:19:13.0488578Z * [new branch] gh/kurtamohler/49/head -> origin/gh/kurtamohler/49/head 2025-09-07T06:19:13.0488787Z * [new branch] gh/kurtamohler/49/orig -> origin/gh/kurtamohler/49/orig 2025-09-07T06:19:13.0489060Z * [new branch] gh/kurtamohler/50/base -> origin/gh/kurtamohler/50/base 2025-09-07T06:19:13.0489260Z * [new branch] gh/kurtamohler/50/head -> origin/gh/kurtamohler/50/head 2025-09-07T06:19:13.0489469Z * [new branch] gh/kurtamohler/50/orig -> origin/gh/kurtamohler/50/orig 2025-09-07T06:19:13.0489654Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-09-07T06:19:13.0489837Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-09-07T06:19:13.0490017Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-09-07T06:19:13.0490208Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-09-07T06:19:13.0490398Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-09-07T06:19:13.0490659Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-09-07T06:19:13.0490849Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-09-07T06:19:13.0491079Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-09-07T06:19:13.0491263Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-09-07T06:19:13.0491458Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-09-07T06:19:13.0491680Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-09-07T06:19:13.0491863Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-09-07T06:19:13.0492052Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-09-07T06:19:13.0492238Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-09-07T06:19:13.0492422Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-09-07T06:19:13.0492607Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-09-07T06:19:13.0492789Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-09-07T06:19:13.0492971Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-09-07T06:19:13.0493162Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-09-07T06:19:13.0493344Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-09-07T06:19:13.0493527Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-09-07T06:19:13.0493718Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-09-07T06:19:13.0493901Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-09-07T06:19:13.0494088Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-09-07T06:19:13.0494269Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-09-07T06:19:13.0494463Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-09-07T06:19:13.0494651Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-09-07T06:19:13.0494877Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-09-07T06:19:13.0495080Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-09-07T06:19:13.0495261Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-09-07T06:19:13.0495442Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-09-07T06:19:13.0495714Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-09-07T06:19:13.0495898Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-09-07T06:19:13.0496080Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-09-07T06:19:13.0496270Z * [new branch] gh/kwen2501/204/base -> origin/gh/kwen2501/204/base 2025-09-07T06:19:13.0496450Z * [new branch] gh/kwen2501/204/head -> origin/gh/kwen2501/204/head 2025-09-07T06:19:13.0496633Z * [new branch] gh/kwen2501/204/orig -> origin/gh/kwen2501/204/orig 2025-09-07T06:19:13.0496870Z * [new branch] gh/kwen2501/205/base -> origin/gh/kwen2501/205/base 2025-09-07T06:19:13.0497057Z * [new branch] gh/kwen2501/205/head -> origin/gh/kwen2501/205/head 2025-09-07T06:19:13.0497356Z * [new branch] gh/kwen2501/205/orig -> origin/gh/kwen2501/205/orig 2025-09-07T06:19:13.0497559Z * [new branch] gh/kwen2501/206/base -> origin/gh/kwen2501/206/base 2025-09-07T06:19:13.0497742Z * [new branch] gh/kwen2501/206/head -> origin/gh/kwen2501/206/head 2025-09-07T06:19:13.0497929Z * [new branch] gh/kwen2501/206/orig -> origin/gh/kwen2501/206/orig 2025-09-07T06:19:13.0498120Z * [new branch] gh/kwen2501/207/base -> origin/gh/kwen2501/207/base 2025-09-07T06:19:13.0498303Z * [new branch] gh/kwen2501/207/head -> origin/gh/kwen2501/207/head 2025-09-07T06:19:13.0498486Z * [new branch] gh/kwen2501/207/orig -> origin/gh/kwen2501/207/orig 2025-09-07T06:19:13.0498668Z * [new branch] gh/kwen2501/208/base -> origin/gh/kwen2501/208/base 2025-09-07T06:19:13.0498859Z * [new branch] gh/kwen2501/208/head -> origin/gh/kwen2501/208/head 2025-09-07T06:19:13.0499047Z * [new branch] gh/kwen2501/208/orig -> origin/gh/kwen2501/208/orig 2025-09-07T06:19:13.0499237Z * [new branch] gh/kwen2501/209/base -> origin/gh/kwen2501/209/base 2025-09-07T06:19:13.0499435Z * [new branch] gh/kwen2501/209/head -> origin/gh/kwen2501/209/head 2025-09-07T06:19:13.0499616Z * [new branch] gh/kwen2501/209/orig -> origin/gh/kwen2501/209/orig 2025-09-07T06:19:13.0499802Z * [new branch] gh/kwen2501/210/base -> origin/gh/kwen2501/210/base 2025-09-07T06:19:13.0499993Z * [new branch] gh/kwen2501/210/head -> origin/gh/kwen2501/210/head 2025-09-07T06:19:13.0500180Z * [new branch] gh/kwen2501/210/orig -> origin/gh/kwen2501/210/orig 2025-09-07T06:19:13.0500361Z * [new branch] gh/kwen2501/211/base -> origin/gh/kwen2501/211/base 2025-09-07T06:19:13.0500549Z * [new branch] gh/kwen2501/211/head -> origin/gh/kwen2501/211/head 2025-09-07T06:19:13.0500739Z * [new branch] gh/kwen2501/212/base -> origin/gh/kwen2501/212/base 2025-09-07T06:19:13.0500924Z * [new branch] gh/kwen2501/212/head -> origin/gh/kwen2501/212/head 2025-09-07T06:19:13.0501114Z * [new branch] gh/kwen2501/212/orig -> origin/gh/kwen2501/212/orig 2025-09-07T06:19:13.0501298Z * [new branch] gh/kwen2501/213/base -> origin/gh/kwen2501/213/base 2025-09-07T06:19:13.0501488Z * [new branch] gh/kwen2501/213/head -> origin/gh/kwen2501/213/head 2025-09-07T06:19:13.0501681Z * [new branch] gh/kwen2501/213/orig -> origin/gh/kwen2501/213/orig 2025-09-07T06:19:13.0501864Z * [new branch] gh/kwen2501/214/base -> origin/gh/kwen2501/214/base 2025-09-07T06:19:13.0502047Z * [new branch] gh/kwen2501/214/head -> origin/gh/kwen2501/214/head 2025-09-07T06:19:13.0502240Z * [new branch] gh/kwen2501/214/orig -> origin/gh/kwen2501/214/orig 2025-09-07T06:19:13.0502499Z * [new branch] gh/kwen2501/215/base -> origin/gh/kwen2501/215/base 2025-09-07T06:19:13.0502726Z * [new branch] gh/kwen2501/215/head -> origin/gh/kwen2501/215/head 2025-09-07T06:19:13.0502915Z * [new branch] gh/kwen2501/215/orig -> origin/gh/kwen2501/215/orig 2025-09-07T06:19:13.0503113Z * [new branch] gh/kwen2501/216/base -> origin/gh/kwen2501/216/base 2025-09-07T06:19:13.0503341Z * [new branch] gh/kwen2501/216/head -> origin/gh/kwen2501/216/head 2025-09-07T06:19:13.0503533Z * [new branch] gh/kwen2501/216/orig -> origin/gh/kwen2501/216/orig 2025-09-07T06:19:13.0503736Z * [new branch] gh/kwen2501/217/base -> origin/gh/kwen2501/217/base 2025-09-07T06:19:13.0503921Z * [new branch] gh/kwen2501/217/head -> origin/gh/kwen2501/217/head 2025-09-07T06:19:13.0504176Z * [new branch] gh/kwen2501/217/orig -> origin/gh/kwen2501/217/orig 2025-09-07T06:19:13.0504372Z * [new branch] gh/kwen2501/218/base -> origin/gh/kwen2501/218/base 2025-09-07T06:19:13.0504555Z * [new branch] gh/kwen2501/218/head -> origin/gh/kwen2501/218/head 2025-09-07T06:19:13.0504737Z * [new branch] gh/kwen2501/218/orig -> origin/gh/kwen2501/218/orig 2025-09-07T06:19:13.0504927Z * [new branch] gh/kwen2501/219/base -> origin/gh/kwen2501/219/base 2025-09-07T06:19:13.0505188Z * [new branch] gh/kwen2501/219/head -> origin/gh/kwen2501/219/head 2025-09-07T06:19:13.0505379Z * [new branch] gh/kwen2501/219/orig -> origin/gh/kwen2501/219/orig 2025-09-07T06:19:13.0505581Z * [new branch] gh/kwen2501/220/base -> origin/gh/kwen2501/220/base 2025-09-07T06:19:13.0505766Z * [new branch] gh/kwen2501/220/head -> origin/gh/kwen2501/220/head 2025-09-07T06:19:13.0505960Z * [new branch] gh/kwen2501/220/orig -> origin/gh/kwen2501/220/orig 2025-09-07T06:19:13.0506155Z * [new branch] gh/kwen2501/221/base -> origin/gh/kwen2501/221/base 2025-09-07T06:19:13.0506338Z * [new branch] gh/kwen2501/221/head -> origin/gh/kwen2501/221/head 2025-09-07T06:19:13.0506525Z * [new branch] gh/kwen2501/221/orig -> origin/gh/kwen2501/221/orig 2025-09-07T06:19:13.0506719Z * [new branch] gh/kwen2501/222/base -> origin/gh/kwen2501/222/base 2025-09-07T06:19:13.0506903Z * [new branch] gh/kwen2501/222/head -> origin/gh/kwen2501/222/head 2025-09-07T06:19:13.0507089Z * [new branch] gh/kwen2501/222/orig -> origin/gh/kwen2501/222/orig 2025-09-07T06:19:13.0507278Z * [new branch] gh/kwen2501/223/base -> origin/gh/kwen2501/223/base 2025-09-07T06:19:13.0507466Z * [new branch] gh/kwen2501/223/head -> origin/gh/kwen2501/223/head 2025-09-07T06:19:13.0507657Z * [new branch] gh/kwen2501/223/orig -> origin/gh/kwen2501/223/orig 2025-09-07T06:19:13.0507844Z * [new branch] gh/kwen2501/224/base -> origin/gh/kwen2501/224/base 2025-09-07T06:19:13.0508036Z * [new branch] gh/kwen2501/224/head -> origin/gh/kwen2501/224/head 2025-09-07T06:19:13.0508222Z * [new branch] gh/kwen2501/224/orig -> origin/gh/kwen2501/224/orig 2025-09-07T06:19:13.0508403Z * [new branch] gh/kwen2501/225/base -> origin/gh/kwen2501/225/base 2025-09-07T06:19:13.0508647Z * [new branch] gh/kwen2501/225/head -> origin/gh/kwen2501/225/head 2025-09-07T06:19:13.0508829Z * [new branch] gh/kwen2501/225/orig -> origin/gh/kwen2501/225/orig 2025-09-07T06:19:13.0509049Z * [new branch] gh/kwen2501/226/base -> origin/gh/kwen2501/226/base 2025-09-07T06:19:13.0509252Z * [new branch] gh/kwen2501/226/head -> origin/gh/kwen2501/226/head 2025-09-07T06:19:13.0509512Z * [new branch] gh/kwen2501/226/orig -> origin/gh/kwen2501/226/orig 2025-09-07T06:19:13.0509696Z * [new branch] gh/kwen2501/227/base -> origin/gh/kwen2501/227/base 2025-09-07T06:19:13.0509890Z * [new branch] gh/kwen2501/227/head -> origin/gh/kwen2501/227/head 2025-09-07T06:19:13.0510072Z * [new branch] gh/kwen2501/227/orig -> origin/gh/kwen2501/227/orig 2025-09-07T06:19:13.0510258Z * [new branch] gh/kwen2501/228/base -> origin/gh/kwen2501/228/base 2025-09-07T06:19:13.0510450Z * [new branch] gh/kwen2501/228/head -> origin/gh/kwen2501/228/head 2025-09-07T06:19:13.0510634Z * [new branch] gh/kwen2501/228/orig -> origin/gh/kwen2501/228/orig 2025-09-07T06:19:13.0510816Z * [new branch] gh/kwen2501/229/base -> origin/gh/kwen2501/229/base 2025-09-07T06:19:13.0511471Z * [new branch] gh/kwen2501/229/head -> origin/gh/kwen2501/229/head 2025-09-07T06:19:13.0511658Z * [new branch] gh/kwen2501/229/orig -> origin/gh/kwen2501/229/orig 2025-09-07T06:19:13.0511845Z * [new branch] gh/kwen2501/230/base -> origin/gh/kwen2501/230/base 2025-09-07T06:19:13.0512027Z * [new branch] gh/kwen2501/230/head -> origin/gh/kwen2501/230/head 2025-09-07T06:19:13.0512228Z * [new branch] gh/kwen2501/230/orig -> origin/gh/kwen2501/230/orig 2025-09-07T06:19:13.0512412Z * [new branch] gh/kwen2501/231/base -> origin/gh/kwen2501/231/base 2025-09-07T06:19:13.0512599Z * [new branch] gh/kwen2501/231/head -> origin/gh/kwen2501/231/head 2025-09-07T06:19:13.0512794Z * [new branch] gh/kwen2501/231/orig -> origin/gh/kwen2501/231/orig 2025-09-07T06:19:13.0512981Z * [new branch] gh/kwen2501/232/base -> origin/gh/kwen2501/232/base 2025-09-07T06:19:13.0513168Z * [new branch] gh/kwen2501/232/head -> origin/gh/kwen2501/232/head 2025-09-07T06:19:13.0513360Z * [new branch] gh/kwen2501/232/orig -> origin/gh/kwen2501/232/orig 2025-09-07T06:19:13.0513565Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-09-07T06:19:13.0513769Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-09-07T06:19:13.0513979Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-09-07T06:19:13.0514181Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-09-07T06:19:13.0514437Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-09-07T06:19:13.0514646Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-09-07T06:19:13.0514888Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-09-07T06:19:13.0515101Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-09-07T06:19:13.0515327Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-09-07T06:19:13.0515551Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-09-07T06:19:13.0515749Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-09-07T06:19:13.0515960Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-09-07T06:19:13.0516159Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-09-07T06:19:13.0516356Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-09-07T06:19:13.0516561Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-09-07T06:19:13.0516860Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-09-07T06:19:13.0517060Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-09-07T06:19:13.0517266Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-09-07T06:19:13.0517474Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-09-07T06:19:13.0517675Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-09-07T06:19:13.0517879Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-09-07T06:19:13.0518098Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-09-07T06:19:13.0518300Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-09-07T06:19:13.0518566Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-09-07T06:19:13.0518805Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-09-07T06:19:13.0519015Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-09-07T06:19:13.0519216Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-09-07T06:19:13.0519427Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-09-07T06:19:13.0519627Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-09-07T06:19:13.0519827Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-09-07T06:19:13.0520037Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-09-07T06:19:13.0520283Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-09-07T06:19:13.0520490Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-09-07T06:19:13.0520744Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-09-07T06:19:13.0520947Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-09-07T06:19:13.0521195Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-09-07T06:19:13.0521413Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-09-07T06:19:13.0521653Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-09-07T06:19:13.0521857Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-09-07T06:19:13.0522092Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-09-07T06:19:13.0522306Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-09-07T06:19:13.0522555Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-09-07T06:19:13.0522757Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-09-07T06:19:13.0523007Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-09-07T06:19:13.0523208Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-09-07T06:19:13.0523448Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-09-07T06:19:13.0523654Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-09-07T06:19:13.0523890Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-09-07T06:19:13.0524092Z * [new branch] gh/laithsakka/263/base -> origin/gh/laithsakka/263/base 2025-09-07T06:19:13.0524610Z * [new branch] gh/laithsakka/263/head -> origin/gh/laithsakka/263/head 2025-09-07T06:19:13.0524868Z * [new branch] gh/laithsakka/263/orig -> origin/gh/laithsakka/263/orig 2025-09-07T06:19:13.0525068Z * [new branch] gh/laithsakka/264/base -> origin/gh/laithsakka/264/base 2025-09-07T06:19:13.0525317Z * [new branch] gh/laithsakka/264/head -> origin/gh/laithsakka/264/head 2025-09-07T06:19:13.0525516Z * [new branch] gh/laithsakka/264/orig -> origin/gh/laithsakka/264/orig 2025-09-07T06:19:13.0525756Z * [new branch] gh/laithsakka/265/base -> origin/gh/laithsakka/265/base 2025-09-07T06:19:13.0525962Z * [new branch] gh/laithsakka/265/head -> origin/gh/laithsakka/265/head 2025-09-07T06:19:13.0526202Z * [new branch] gh/laithsakka/265/orig -> origin/gh/laithsakka/265/orig 2025-09-07T06:19:13.0526516Z * [new branch] gh/laithsakka/266/base -> origin/gh/laithsakka/266/base 2025-09-07T06:19:13.0526740Z * [new branch] gh/laithsakka/266/head -> origin/gh/laithsakka/266/head 2025-09-07T06:19:13.0526989Z * [new branch] gh/laithsakka/266/orig -> origin/gh/laithsakka/266/orig 2025-09-07T06:19:13.0527189Z * [new branch] gh/laithsakka/267/base -> origin/gh/laithsakka/267/base 2025-09-07T06:19:13.0527439Z * [new branch] gh/laithsakka/267/head -> origin/gh/laithsakka/267/head 2025-09-07T06:19:13.0527643Z * [new branch] gh/laithsakka/267/orig -> origin/gh/laithsakka/267/orig 2025-09-07T06:19:13.0527882Z * [new branch] gh/laithsakka/268/base -> origin/gh/laithsakka/268/base 2025-09-07T06:19:13.0528084Z * [new branch] gh/laithsakka/268/head -> origin/gh/laithsakka/268/head 2025-09-07T06:19:13.0528328Z * [new branch] gh/laithsakka/268/orig -> origin/gh/laithsakka/268/orig 2025-09-07T06:19:13.0528533Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-09-07T06:19:13.0528789Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-09-07T06:19:13.0529010Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-09-07T06:19:13.0529249Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-09-07T06:19:13.0529442Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-09-07T06:19:13.0529685Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-09-07T06:19:13.0529882Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-09-07T06:19:13.0530117Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-09-07T06:19:13.0530332Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-09-07T06:19:13.0530579Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-09-07T06:19:13.0530782Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-09-07T06:19:13.0531027Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-09-07T06:19:13.0531228Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-09-07T06:19:13.0531468Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-09-07T06:19:13.0531674Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-09-07T06:19:13.0531915Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-09-07T06:19:13.0532116Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-09-07T06:19:13.0532366Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-09-07T06:19:13.0532680Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-09-07T06:19:13.0532883Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-09-07T06:19:13.0533124Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-09-07T06:19:13.0533338Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-09-07T06:19:13.0533573Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-09-07T06:19:13.0533779Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-09-07T06:19:13.0534024Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-09-07T06:19:13.0534225Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-09-07T06:19:13.0534536Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-09-07T06:19:13.0534787Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-09-07T06:19:13.0534992Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-09-07T06:19:13.0535228Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-09-07T06:19:13.0535440Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-09-07T06:19:13.0535678Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-09-07T06:19:13.0535882Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-09-07T06:19:13.0536128Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-09-07T06:19:13.0536338Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-09-07T06:19:13.0536578Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-09-07T06:19:13.0536790Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-09-07T06:19:13.0537030Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-09-07T06:19:13.0537227Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-09-07T06:19:13.0537461Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-09-07T06:19:13.0537661Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-09-07T06:19:13.0537897Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-09-07T06:19:13.0538105Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-09-07T06:19:13.0538347Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-09-07T06:19:13.0538546Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-09-07T06:19:13.0538783Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-09-07T06:19:13.0538996Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-09-07T06:19:13.0539238Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-09-07T06:19:13.0539436Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-09-07T06:19:13.0539679Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-09-07T06:19:13.0539879Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-09-07T06:19:13.0540123Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-09-07T06:19:13.0540440Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-09-07T06:19:13.0540645Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-09-07T06:19:13.0540840Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-09-07T06:19:13.0541043Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-09-07T06:19:13.0541245Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-09-07T06:19:13.0541441Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-09-07T06:19:13.0541622Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-09-07T06:19:13.0541784Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-09-07T06:19:13.0542006Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-09-07T06:19:13.0542198Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-09-07T06:19:13.0542382Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-09-07T06:19:13.0542563Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-09-07T06:19:13.0542749Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-09-07T06:19:13.0542929Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-09-07T06:19:13.0543107Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-09-07T06:19:13.0543288Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-09-07T06:19:13.0543480Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-09-07T06:19:13.0543667Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-09-07T06:19:13.0543854Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-09-07T06:19:13.0544051Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-09-07T06:19:13.0544234Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-09-07T06:19:13.0544417Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-09-07T06:19:13.0544607Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-09-07T06:19:13.0544785Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-09-07T06:19:13.0544962Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-09-07T06:19:13.0545230Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-09-07T06:19:13.0545424Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-09-07T06:19:13.0545604Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-09-07T06:19:13.0545831Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-09-07T06:19:13.0546016Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-09-07T06:19:13.0546225Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-09-07T06:19:13.0546419Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-09-07T06:19:13.0546634Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-09-07T06:19:13.0546818Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-09-07T06:19:13.0546999Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-09-07T06:19:13.0547266Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-09-07T06:19:13.0547450Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-09-07T06:19:13.0547633Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-09-07T06:19:13.0547835Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-09-07T06:19:13.0548011Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-09-07T06:19:13.0548190Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-09-07T06:19:13.0548379Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-09-07T06:19:13.0548556Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-09-07T06:19:13.0548799Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-09-07T06:19:13.0548994Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-09-07T06:19:13.0549173Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-09-07T06:19:13.0549351Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-09-07T06:19:13.0549541Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-09-07T06:19:13.0549719Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-09-07T06:19:13.0549898Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-09-07T06:19:13.0550086Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-09-07T06:19:13.0550266Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-09-07T06:19:13.0550451Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-09-07T06:19:13.0550679Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-09-07T06:19:13.0550863Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-09-07T06:19:13.0551043Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-09-07T06:19:13.0551229Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-09-07T06:19:13.0551406Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-09-07T06:19:13.0551584Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-09-07T06:19:13.0551761Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-09-07T06:19:13.0551986Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-09-07T06:19:13.0552174Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-09-07T06:19:13.0552397Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-09-07T06:19:13.0552587Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-09-07T06:19:13.0552803Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-09-07T06:19:13.0552986Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-09-07T06:19:13.0553172Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-09-07T06:19:13.0553354Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-09-07T06:19:13.0553538Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-09-07T06:19:13.0553726Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-09-07T06:19:13.0553984Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-09-07T06:19:13.0554164Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-09-07T06:19:13.0554352Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-09-07T06:19:13.0554538Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-09-07T06:19:13.0554718Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-09-07T06:19:13.0554905Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-09-07T06:19:13.0555086Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-09-07T06:19:13.0555268Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-09-07T06:19:13.0555451Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-09-07T06:19:13.0555713Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-09-07T06:19:13.0555892Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-09-07T06:19:13.0556069Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-09-07T06:19:13.0556255Z * [new branch] gh/malfet/491/base -> origin/gh/malfet/491/base 2025-09-07T06:19:13.0556437Z * [new branch] gh/malfet/491/head -> origin/gh/malfet/491/head 2025-09-07T06:19:13.0556616Z * [new branch] gh/malfet/491/orig -> origin/gh/malfet/491/orig 2025-09-07T06:19:13.0556806Z * [new branch] gh/malfet/492/base -> origin/gh/malfet/492/base 2025-09-07T06:19:13.0556985Z * [new branch] gh/malfet/492/head -> origin/gh/malfet/492/head 2025-09-07T06:19:13.0557165Z * [new branch] gh/malfet/492/orig -> origin/gh/malfet/492/orig 2025-09-07T06:19:13.0557362Z * [new branch] gh/malfet/493/base -> origin/gh/malfet/493/base 2025-09-07T06:19:13.0557544Z * [new branch] gh/malfet/493/head -> origin/gh/malfet/493/head 2025-09-07T06:19:13.0557727Z * [new branch] gh/malfet/493/orig -> origin/gh/malfet/493/orig 2025-09-07T06:19:13.0557918Z * [new branch] gh/malfet/494/base -> origin/gh/malfet/494/base 2025-09-07T06:19:13.0558135Z * [new branch] gh/malfet/494/head -> origin/gh/malfet/494/head 2025-09-07T06:19:13.0558314Z * [new branch] gh/malfet/494/orig -> origin/gh/malfet/494/orig 2025-09-07T06:19:13.0558541Z * [new branch] gh/malfet/495/base -> origin/gh/malfet/495/base 2025-09-07T06:19:13.0558720Z * [new branch] gh/malfet/495/head -> origin/gh/malfet/495/head 2025-09-07T06:19:13.0558941Z * [new branch] gh/malfet/495/orig -> origin/gh/malfet/495/orig 2025-09-07T06:19:13.0559134Z * [new branch] gh/malfet/496/base -> origin/gh/malfet/496/base 2025-09-07T06:19:13.0559313Z * [new branch] gh/malfet/496/head -> origin/gh/malfet/496/head 2025-09-07T06:19:13.0559491Z * [new branch] gh/malfet/496/orig -> origin/gh/malfet/496/orig 2025-09-07T06:19:13.0559669Z * [new branch] gh/malfet/497/base -> origin/gh/malfet/497/base 2025-09-07T06:19:13.0559858Z * [new branch] gh/malfet/497/head -> origin/gh/malfet/497/head 2025-09-07T06:19:13.0560043Z * [new branch] gh/malfet/497/orig -> origin/gh/malfet/497/orig 2025-09-07T06:19:13.0560225Z * [new branch] gh/malfet/498/base -> origin/gh/malfet/498/base 2025-09-07T06:19:13.0560412Z * [new branch] gh/malfet/498/head -> origin/gh/malfet/498/head 2025-09-07T06:19:13.0560594Z * [new branch] gh/malfet/498/orig -> origin/gh/malfet/498/orig 2025-09-07T06:19:13.0560839Z * [new branch] gh/malfet/499/base -> origin/gh/malfet/499/base 2025-09-07T06:19:13.0561029Z * [new branch] gh/malfet/499/head -> origin/gh/malfet/499/head 2025-09-07T06:19:13.0561207Z * [new branch] gh/malfet/499/orig -> origin/gh/malfet/499/orig 2025-09-07T06:19:13.0561384Z * [new branch] gh/malfet/500/base -> origin/gh/malfet/500/base 2025-09-07T06:19:13.0561568Z * [new branch] gh/malfet/500/head -> origin/gh/malfet/500/head 2025-09-07T06:19:13.0561747Z * [new branch] gh/malfet/500/orig -> origin/gh/malfet/500/orig 2025-09-07T06:19:13.0561929Z * [new branch] gh/malfet/501/base -> origin/gh/malfet/501/base 2025-09-07T06:19:13.0562113Z * [new branch] gh/malfet/501/head -> origin/gh/malfet/501/head 2025-09-07T06:19:13.0562361Z * [new branch] gh/malfet/501/orig -> origin/gh/malfet/501/orig 2025-09-07T06:19:13.0562546Z * [new branch] gh/malfet/502/base -> origin/gh/malfet/502/base 2025-09-07T06:19:13.0562729Z * [new branch] gh/malfet/502/head -> origin/gh/malfet/502/head 2025-09-07T06:19:13.0562907Z * [new branch] gh/malfet/502/orig -> origin/gh/malfet/502/orig 2025-09-07T06:19:13.0563087Z * [new branch] gh/malfet/503/base -> origin/gh/malfet/503/base 2025-09-07T06:19:13.0563272Z * [new branch] gh/malfet/503/head -> origin/gh/malfet/503/head 2025-09-07T06:19:13.0563448Z * [new branch] gh/malfet/503/orig -> origin/gh/malfet/503/orig 2025-09-07T06:19:13.0563624Z * [new branch] gh/malfet/504/base -> origin/gh/malfet/504/base 2025-09-07T06:19:13.0563801Z * [new branch] gh/malfet/504/head -> origin/gh/malfet/504/head 2025-09-07T06:19:13.0563996Z * [new branch] gh/malfet/504/orig -> origin/gh/malfet/504/orig 2025-09-07T06:19:13.0564176Z * [new branch] gh/malfet/505/base -> origin/gh/malfet/505/base 2025-09-07T06:19:13.0564400Z * [new branch] gh/malfet/505/head -> origin/gh/malfet/505/head 2025-09-07T06:19:13.0564591Z * [new branch] gh/malfet/505/orig -> origin/gh/malfet/505/orig 2025-09-07T06:19:13.0564808Z * [new branch] gh/malfet/506/base -> origin/gh/malfet/506/base 2025-09-07T06:19:13.0565031Z * [new branch] gh/malfet/506/head -> origin/gh/malfet/506/head 2025-09-07T06:19:13.0565220Z * [new branch] gh/malfet/506/orig -> origin/gh/malfet/506/orig 2025-09-07T06:19:13.0565400Z * [new branch] gh/malfet/507/base -> origin/gh/malfet/507/base 2025-09-07T06:19:13.0565580Z * [new branch] gh/malfet/507/head -> origin/gh/malfet/507/head 2025-09-07T06:19:13.0565774Z * [new branch] gh/malfet/507/orig -> origin/gh/malfet/507/orig 2025-09-07T06:19:13.0565953Z * [new branch] gh/malfet/508/base -> origin/gh/malfet/508/base 2025-09-07T06:19:13.0566131Z * [new branch] gh/malfet/508/head -> origin/gh/malfet/508/head 2025-09-07T06:19:13.0566316Z * [new branch] gh/malfet/508/orig -> origin/gh/malfet/508/orig 2025-09-07T06:19:13.0566493Z * [new branch] gh/malfet/509/base -> origin/gh/malfet/509/base 2025-09-07T06:19:13.0566671Z * [new branch] gh/malfet/509/head -> origin/gh/malfet/509/head 2025-09-07T06:19:13.0566860Z * [new branch] gh/malfet/509/orig -> origin/gh/malfet/509/orig 2025-09-07T06:19:13.0567038Z * [new branch] gh/malfet/510/base -> origin/gh/malfet/510/base 2025-09-07T06:19:13.0567217Z * [new branch] gh/malfet/510/head -> origin/gh/malfet/510/head 2025-09-07T06:19:13.0567489Z * [new branch] gh/malfet/510/orig -> origin/gh/malfet/510/orig 2025-09-07T06:19:13.0567671Z * [new branch] gh/malfet/511/base -> origin/gh/malfet/511/base 2025-09-07T06:19:13.0567856Z * [new branch] gh/malfet/511/head -> origin/gh/malfet/511/head 2025-09-07T06:19:13.0568035Z * [new branch] gh/malfet/511/orig -> origin/gh/malfet/511/orig 2025-09-07T06:19:13.0568218Z * [new branch] gh/malfet/512/base -> origin/gh/malfet/512/base 2025-09-07T06:19:13.0568397Z * [new branch] gh/malfet/512/head -> origin/gh/malfet/512/head 2025-09-07T06:19:13.0568576Z * [new branch] gh/malfet/512/orig -> origin/gh/malfet/512/orig 2025-09-07T06:19:13.0568763Z * [new branch] gh/malfet/513/base -> origin/gh/malfet/513/base 2025-09-07T06:19:13.0569008Z * [new branch] gh/malfet/513/head -> origin/gh/malfet/513/head 2025-09-07T06:19:13.0569192Z * [new branch] gh/malfet/513/orig -> origin/gh/malfet/513/orig 2025-09-07T06:19:13.0569377Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-09-07T06:19:13.0569553Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-09-07T06:19:13.0569783Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-09-07T06:19:13.0570014Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-09-07T06:19:13.0570231Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-09-07T06:19:13.0570448Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-09-07T06:19:13.0570671Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-09-07T06:19:13.0570894Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-09-07T06:19:13.0571117Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-09-07T06:19:13.0571346Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-09-07T06:19:13.0571567Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-09-07T06:19:13.0571749Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-09-07T06:19:13.0571958Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-09-07T06:19:13.0572158Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-09-07T06:19:13.0572351Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-09-07T06:19:13.0572557Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-09-07T06:19:13.0572757Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-09-07T06:19:13.0572952Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-09-07T06:19:13.0573147Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-09-07T06:19:13.0573347Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-09-07T06:19:13.0573539Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-09-07T06:19:13.0573731Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-09-07T06:19:13.0573927Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-09-07T06:19:13.0574113Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-09-07T06:19:13.0574304Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-09-07T06:19:13.0574569Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-09-07T06:19:13.0574754Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-09-07T06:19:13.0574940Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-09-07T06:19:13.0575139Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-09-07T06:19:13.0575371Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-09-07T06:19:13.0575559Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-09-07T06:19:13.0575797Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-09-07T06:19:13.0575989Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-09-07T06:19:13.0576352Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-09-07T06:19:13.0576607Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-09-07T06:19:13.0576848Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-09-07T06:19:13.0577086Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-09-07T06:19:13.0577334Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-09-07T06:19:13.0577572Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-09-07T06:19:13.0577811Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-09-07T06:19:13.0578053Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-09-07T06:19:13.0578316Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-09-07T06:19:13.0578555Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-09-07T06:19:13.0578793Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-09-07T06:19:13.0579042Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-09-07T06:19:13.0579277Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-09-07T06:19:13.0579513Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-09-07T06:19:13.0579764Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-09-07T06:19:13.0580000Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-09-07T06:19:13.0580240Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-09-07T06:19:13.0580501Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-09-07T06:19:13.0580742Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-09-07T06:19:13.0580981Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-09-07T06:19:13.0581229Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-09-07T06:19:13.0581465Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-09-07T06:19:13.0581702Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-09-07T06:19:13.0581949Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-09-07T06:19:13.0582192Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-09-07T06:19:13.0582498Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-09-07T06:19:13.0582752Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-09-07T06:19:13.0582990Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-09-07T06:19:13.0583229Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-09-07T06:19:13.0583474Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-09-07T06:19:13.0583715Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-09-07T06:19:13.0583956Z * [new branch] gh/mikaylagawarecki/335/base -> origin/gh/mikaylagawarecki/335/base 2025-09-07T06:19:13.0584271Z * [new branch] gh/mikaylagawarecki/335/head -> origin/gh/mikaylagawarecki/335/head 2025-09-07T06:19:13.0584515Z * [new branch] gh/mikaylagawarecki/335/orig -> origin/gh/mikaylagawarecki/335/orig 2025-09-07T06:19:13.0584751Z * [new branch] gh/mikaylagawarecki/336/base -> origin/gh/mikaylagawarecki/336/base 2025-09-07T06:19:13.0585004Z * [new branch] gh/mikaylagawarecki/336/head -> origin/gh/mikaylagawarecki/336/head 2025-09-07T06:19:13.0585315Z * [new branch] gh/mikaylagawarecki/336/orig -> origin/gh/mikaylagawarecki/336/orig 2025-09-07T06:19:13.0585557Z * [new branch] gh/mikaylagawarecki/337/base -> origin/gh/mikaylagawarecki/337/base 2025-09-07T06:19:13.0585797Z * [new branch] gh/mikaylagawarecki/337/head -> origin/gh/mikaylagawarecki/337/head 2025-09-07T06:19:13.0586051Z * [new branch] gh/mikaylagawarecki/337/orig -> origin/gh/mikaylagawarecki/337/orig 2025-09-07T06:19:13.0586300Z * [new branch] gh/mikaylagawarecki/338/base -> origin/gh/mikaylagawarecki/338/base 2025-09-07T06:19:13.0586543Z * [new branch] gh/mikaylagawarecki/338/head -> origin/gh/mikaylagawarecki/338/head 2025-09-07T06:19:13.0586793Z * [new branch] gh/mikaylagawarecki/338/orig -> origin/gh/mikaylagawarecki/338/orig 2025-09-07T06:19:13.0587038Z * [new branch] gh/mikaylagawarecki/339/base -> origin/gh/mikaylagawarecki/339/base 2025-09-07T06:19:13.0587279Z * [new branch] gh/mikaylagawarecki/339/head -> origin/gh/mikaylagawarecki/339/head 2025-09-07T06:19:13.0587526Z * [new branch] gh/mikaylagawarecki/339/orig -> origin/gh/mikaylagawarecki/339/orig 2025-09-07T06:19:13.0588281Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-09-07T06:19:13.0588460Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-09-07T06:19:13.0588639Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-09-07T06:19:13.0588832Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-09-07T06:19:13.0589011Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-09-07T06:19:13.0589207Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-09-07T06:19:13.0589385Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-09-07T06:19:13.0589567Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-09-07T06:19:13.0589749Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-09-07T06:19:13.0589929Z * [new branch] gh/mlazos/14/base -> origin/gh/mlazos/14/base 2025-09-07T06:19:13.0590109Z * [new branch] gh/mlazos/14/head -> origin/gh/mlazos/14/head 2025-09-07T06:19:13.0590297Z * [new branch] gh/mlazos/14/orig -> origin/gh/mlazos/14/orig 2025-09-07T06:19:13.0590554Z * [new branch] gh/mlazos/15/base -> origin/gh/mlazos/15/base 2025-09-07T06:19:13.0590739Z * [new branch] gh/mlazos/15/head -> origin/gh/mlazos/15/head 2025-09-07T06:19:13.0590929Z * [new branch] gh/mlazos/15/orig -> origin/gh/mlazos/15/orig 2025-09-07T06:19:13.0591112Z * [new branch] gh/mlazos/16/base -> origin/gh/mlazos/16/base 2025-09-07T06:19:13.0591297Z * [new branch] gh/mlazos/16/head -> origin/gh/mlazos/16/head 2025-09-07T06:19:13.0591522Z * [new branch] gh/mlazos/16/orig -> origin/gh/mlazos/16/orig 2025-09-07T06:19:13.0591753Z * [new branch] gh/mlazos/17/base -> origin/gh/mlazos/17/base 2025-09-07T06:19:13.0591938Z * [new branch] gh/mlazos/17/head -> origin/gh/mlazos/17/head 2025-09-07T06:19:13.0592229Z * [new branch] gh/mlazos/17/orig -> origin/gh/mlazos/17/orig 2025-09-07T06:19:13.0592428Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-09-07T06:19:13.0592609Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-09-07T06:19:13.0592781Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-09-07T06:19:13.0592969Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-09-07T06:19:13.0593145Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-09-07T06:19:13.0593318Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-09-07T06:19:13.0593515Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-09-07T06:19:13.0593696Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-09-07T06:19:13.0593900Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-09-07T06:19:13.0594114Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-09-07T06:19:13.0594311Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-09-07T06:19:13.0594501Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-09-07T06:19:13.0594697Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-09-07T06:19:13.0594886Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-09-07T06:19:13.0595074Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-09-07T06:19:13.0595269Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-09-07T06:19:13.0595469Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-09-07T06:19:13.0595662Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-09-07T06:19:13.0595855Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-09-07T06:19:13.0596053Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-09-07T06:19:13.0596281Z * [new branch] gh/naveenthangudu/1/base -> origin/gh/naveenthangudu/1/base 2025-09-07T06:19:13.0596505Z * [new branch] gh/naveenthangudu/1/head -> origin/gh/naveenthangudu/1/head 2025-09-07T06:19:13.0596736Z * [new branch] gh/naveenthangudu/1/orig -> origin/gh/naveenthangudu/1/orig 2025-09-07T06:19:13.0596962Z * [new branch] gh/naveenthangudu/2/base -> origin/gh/naveenthangudu/2/base 2025-09-07T06:19:13.0597182Z * [new branch] gh/naveenthangudu/2/head -> origin/gh/naveenthangudu/2/head 2025-09-07T06:19:13.0597414Z * [new branch] gh/naveenthangudu/2/orig -> origin/gh/naveenthangudu/2/orig 2025-09-07T06:19:13.0597699Z * [new branch] gh/naveenthangudu/3/base -> origin/gh/naveenthangudu/3/base 2025-09-07T06:19:13.0597918Z * [new branch] gh/naveenthangudu/3/head -> origin/gh/naveenthangudu/3/head 2025-09-07T06:19:13.0598143Z * [new branch] gh/naveenthangudu/3/orig -> origin/gh/naveenthangudu/3/orig 2025-09-07T06:19:13.0598364Z * [new branch] gh/naveenthangudu/4/base -> origin/gh/naveenthangudu/4/base 2025-09-07T06:19:13.0598581Z * [new branch] gh/naveenthangudu/4/head -> origin/gh/naveenthangudu/4/head 2025-09-07T06:19:13.0598812Z * [new branch] gh/naveenthangudu/4/orig -> origin/gh/naveenthangudu/4/orig 2025-09-07T06:19:13.0599027Z * [new branch] gh/naveenthangudu/5/base -> origin/gh/naveenthangudu/5/base 2025-09-07T06:19:13.0599248Z * [new branch] gh/naveenthangudu/5/head -> origin/gh/naveenthangudu/5/head 2025-09-07T06:19:13.0599541Z * [new branch] gh/naveenthangudu/5/orig -> origin/gh/naveenthangudu/5/orig 2025-09-07T06:19:13.0599758Z * [new branch] gh/naveenthangudu/6/base -> origin/gh/naveenthangudu/6/base 2025-09-07T06:19:13.0599972Z * [new branch] gh/naveenthangudu/6/head -> origin/gh/naveenthangudu/6/head 2025-09-07T06:19:13.0600199Z * [new branch] gh/naveenthangudu/6/orig -> origin/gh/naveenthangudu/6/orig 2025-09-07T06:19:13.0600387Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-09-07T06:19:13.0600567Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-09-07T06:19:13.0600745Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-09-07T06:19:13.0600943Z * [new branch] gh/oulgen/48/base -> origin/gh/oulgen/48/base 2025-09-07T06:19:13.0601122Z * [new branch] gh/oulgen/48/head -> origin/gh/oulgen/48/head 2025-09-07T06:19:13.0601305Z * [new branch] gh/oulgen/48/orig -> origin/gh/oulgen/48/orig 2025-09-07T06:19:13.0601489Z * [new branch] gh/oulgen/49/base -> origin/gh/oulgen/49/base 2025-09-07T06:19:13.0601666Z * [new branch] gh/oulgen/49/head -> origin/gh/oulgen/49/head 2025-09-07T06:19:13.0601841Z * [new branch] gh/oulgen/49/orig -> origin/gh/oulgen/49/orig 2025-09-07T06:19:13.0602031Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-09-07T06:19:13.0602208Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-09-07T06:19:13.0602384Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-09-07T06:19:13.0602567Z * [new branch] gh/pearu/109/base -> origin/gh/pearu/109/base 2025-09-07T06:19:13.0602749Z * [new branch] gh/pearu/109/head -> origin/gh/pearu/109/head 2025-09-07T06:19:13.0602930Z * [new branch] gh/pearu/109/orig -> origin/gh/pearu/109/orig 2025-09-07T06:19:13.0603112Z * [new branch] gh/pearu/110/base -> origin/gh/pearu/110/base 2025-09-07T06:19:13.0603291Z * [new branch] gh/pearu/110/head -> origin/gh/pearu/110/head 2025-09-07T06:19:13.0603468Z * [new branch] gh/pearu/110/orig -> origin/gh/pearu/110/orig 2025-09-07T06:19:13.0603652Z * [new branch] gh/pearu/111/base -> origin/gh/pearu/111/base 2025-09-07T06:19:13.0603828Z * [new branch] gh/pearu/111/head -> origin/gh/pearu/111/head 2025-09-07T06:19:13.0604004Z * [new branch] gh/pearu/111/orig -> origin/gh/pearu/111/orig 2025-09-07T06:19:13.0604180Z * [new branch] gh/pearu/112/base -> origin/gh/pearu/112/base 2025-09-07T06:19:13.0604368Z * [new branch] gh/pearu/112/head -> origin/gh/pearu/112/head 2025-09-07T06:19:13.0604611Z * [new branch] gh/pearu/112/orig -> origin/gh/pearu/112/orig 2025-09-07T06:19:13.0604789Z * [new branch] gh/pearu/113/base -> origin/gh/pearu/113/base 2025-09-07T06:19:13.0604983Z * [new branch] gh/pearu/113/head -> origin/gh/pearu/113/head 2025-09-07T06:19:13.0605163Z * [new branch] gh/pearu/113/orig -> origin/gh/pearu/113/orig 2025-09-07T06:19:13.0605339Z * [new branch] gh/pearu/114/base -> origin/gh/pearu/114/base 2025-09-07T06:19:13.0605532Z * [new branch] gh/pearu/114/head -> origin/gh/pearu/114/head 2025-09-07T06:19:13.0605710Z * [new branch] gh/pearu/114/orig -> origin/gh/pearu/114/orig 2025-09-07T06:19:13.0605885Z * [new branch] gh/pearu/115/base -> origin/gh/pearu/115/base 2025-09-07T06:19:13.0606142Z * [new branch] gh/pearu/115/head -> origin/gh/pearu/115/head 2025-09-07T06:19:13.0606325Z * [new branch] gh/pearu/115/orig -> origin/gh/pearu/115/orig 2025-09-07T06:19:13.0606504Z * [new branch] gh/pearu/116/base -> origin/gh/pearu/116/base 2025-09-07T06:19:13.0606694Z * [new branch] gh/pearu/116/head -> origin/gh/pearu/116/head 2025-09-07T06:19:13.0606869Z * [new branch] gh/pearu/116/orig -> origin/gh/pearu/116/orig 2025-09-07T06:19:13.0607045Z * [new branch] gh/pearu/117/base -> origin/gh/pearu/117/base 2025-09-07T06:19:13.0607228Z * [new branch] gh/pearu/117/head -> origin/gh/pearu/117/head 2025-09-07T06:19:13.0607405Z * [new branch] gh/pearu/117/orig -> origin/gh/pearu/117/orig 2025-09-07T06:19:13.0607582Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-09-07T06:19:13.0607769Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-09-07T06:19:13.0607947Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-09-07T06:19:13.0608120Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-09-07T06:19:13.0608292Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-09-07T06:19:13.0608469Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-09-07T06:19:13.0608648Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-09-07T06:19:13.0608826Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-09-07T06:19:13.0609011Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-09-07T06:19:13.0609234Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-09-07T06:19:13.0609409Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-09-07T06:19:13.0609588Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-09-07T06:19:13.0609754Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-09-07T06:19:13.0609924Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-09-07T06:19:13.0610101Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-09-07T06:19:13.0610270Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-09-07T06:19:13.0610438Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-09-07T06:19:13.0610610Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-09-07T06:19:13.0610774Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-09-07T06:19:13.0610944Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-09-07T06:19:13.0611176Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-09-07T06:19:13.0611342Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-09-07T06:19:13.0611511Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-09-07T06:19:13.0611677Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-09-07T06:19:13.0611851Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-09-07T06:19:13.0612020Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-09-07T06:19:13.0612192Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-09-07T06:19:13.0612368Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-09-07T06:19:13.0612596Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-09-07T06:19:13.0612765Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-09-07T06:19:13.0612946Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-09-07T06:19:13.0613111Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-09-07T06:19:13.0613279Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-09-07T06:19:13.0613460Z * [new branch] gh/rec/165/base -> origin/gh/rec/165/base 2025-09-07T06:19:13.0613628Z * [new branch] gh/rec/165/head -> origin/gh/rec/165/head 2025-09-07T06:19:13.0613793Z * [new branch] gh/rec/165/orig -> origin/gh/rec/165/orig 2025-09-07T06:19:13.0613968Z * [new branch] gh/rec/166/base -> origin/gh/rec/166/base 2025-09-07T06:19:13.0614139Z * [new branch] gh/rec/166/head -> origin/gh/rec/166/head 2025-09-07T06:19:13.0614311Z * [new branch] gh/rec/166/orig -> origin/gh/rec/166/orig 2025-09-07T06:19:13.0614553Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-09-07T06:19:13.0614777Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-09-07T06:19:13.0615000Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-09-07T06:19:13.0615224Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-09-07T06:19:13.0615450Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-09-07T06:19:13.0615666Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-09-07T06:19:13.0615880Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-09-07T06:19:13.0616109Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-09-07T06:19:13.0616323Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-09-07T06:19:13.0616538Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-09-07T06:19:13.0616766Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-09-07T06:19:13.0616980Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-09-07T06:19:13.0617163Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-09-07T06:19:13.0617348Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-09-07T06:19:13.0617535Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-09-07T06:19:13.0617723Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-09-07T06:19:13.0617983Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-09-07T06:19:13.0618161Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-09-07T06:19:13.0618337Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-09-07T06:19:13.0618527Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-09-07T06:19:13.0618702Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-09-07T06:19:13.0618882Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-09-07T06:19:13.0619076Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-09-07T06:19:13.0619256Z * [new branch] gh/rtimpe/13/base -> origin/gh/rtimpe/13/base 2025-09-07T06:19:13.0619500Z * [new branch] gh/rtimpe/13/head -> origin/gh/rtimpe/13/head 2025-09-07T06:19:13.0619688Z * [new branch] gh/rtimpe/13/orig -> origin/gh/rtimpe/13/orig 2025-09-07T06:19:13.0619873Z * [new branch] gh/rtimpe/14/base -> origin/gh/rtimpe/14/base 2025-09-07T06:19:13.0620056Z * [new branch] gh/rtimpe/14/head -> origin/gh/rtimpe/14/head 2025-09-07T06:19:13.0620234Z * [new branch] gh/rtimpe/14/orig -> origin/gh/rtimpe/14/orig 2025-09-07T06:19:13.0620420Z * [new branch] gh/rtimpe/15/base -> origin/gh/rtimpe/15/base 2025-09-07T06:19:13.0620598Z * [new branch] gh/rtimpe/15/head -> origin/gh/rtimpe/15/head 2025-09-07T06:19:13.0620772Z * [new branch] gh/rtimpe/15/orig -> origin/gh/rtimpe/15/orig 2025-09-07T06:19:13.0620957Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-09-07T06:19:13.0621136Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-09-07T06:19:13.0621316Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-09-07T06:19:13.0621501Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-09-07T06:19:13.0621676Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-09-07T06:19:13.0621854Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-09-07T06:19:13.0622035Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-09-07T06:19:13.0622207Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-09-07T06:19:13.0622438Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-09-07T06:19:13.0622683Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-09-07T06:19:13.0622941Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-09-07T06:19:13.0623158Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-09-07T06:19:13.0623368Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-09-07T06:19:13.0623587Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-09-07T06:19:13.0623792Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-09-07T06:19:13.0623998Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-09-07T06:19:13.0624215Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-09-07T06:19:13.0624421Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-09-07T06:19:13.0624629Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-09-07T06:19:13.0624924Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-09-07T06:19:13.0625200Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-09-07T06:19:13.0625412Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-09-07T06:19:13.0625639Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-09-07T06:19:13.0625846Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-09-07T06:19:13.0626053Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-09-07T06:19:13.0626276Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-09-07T06:19:13.0626480Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-09-07T06:19:13.0627197Z * [new branch] gh/ruisizhang123/9/base -> origin/gh/ruisizhang123/9/base 2025-09-07T06:19:13.0627421Z * [new branch] gh/ruisizhang123/9/head -> origin/gh/ruisizhang123/9/head 2025-09-07T06:19:13.0627632Z * [new branch] gh/ruisizhang123/9/orig -> origin/gh/ruisizhang123/9/orig 2025-09-07T06:19:13.0627809Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-09-07T06:19:13.0627997Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-09-07T06:19:13.0628171Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-09-07T06:19:13.0628377Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-09-07T06:19:13.0628592Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-09-07T06:19:13.0628791Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-09-07T06:19:13.0628994Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-09-07T06:19:13.0629188Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-09-07T06:19:13.0629400Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-09-07T06:19:13.0629594Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-09-07T06:19:13.0629787Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-09-07T06:19:13.0629992Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-09-07T06:19:13.0630184Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-09-07T06:19:13.0630378Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-09-07T06:19:13.0630584Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-09-07T06:19:13.0630780Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-09-07T06:19:13.0630972Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-09-07T06:19:13.0631172Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-09-07T06:19:13.0631368Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-09-07T06:19:13.0631561Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-09-07T06:19:13.0631764Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-09-07T06:19:13.0631958Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-09-07T06:19:13.0632153Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-09-07T06:19:13.0632426Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-09-07T06:19:13.0632622Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-09-07T06:19:13.0632815Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-09-07T06:19:13.0633019Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-09-07T06:19:13.0633218Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-09-07T06:19:13.0633413Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-09-07T06:19:13.0633606Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-09-07T06:19:13.0633809Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-09-07T06:19:13.0634075Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-09-07T06:19:13.0634275Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-09-07T06:19:13.0634480Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-09-07T06:19:13.0634673Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-09-07T06:19:13.0634868Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-09-07T06:19:13.0635073Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-09-07T06:19:13.0635268Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-09-07T06:19:13.0635462Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-09-07T06:19:13.0635666Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-09-07T06:19:13.0635864Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-09-07T06:19:13.0636064Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-09-07T06:19:13.0636263Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-09-07T06:19:13.0636458Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-09-07T06:19:13.0636652Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-09-07T06:19:13.0636855Z * [new branch] gh/seemethere/60/base -> origin/gh/seemethere/60/base 2025-09-07T06:19:13.0637051Z * [new branch] gh/seemethere/60/head -> origin/gh/seemethere/60/head 2025-09-07T06:19:13.0637243Z * [new branch] gh/seemethere/60/orig -> origin/gh/seemethere/60/orig 2025-09-07T06:19:13.0637448Z * [new branch] gh/seemethere/61/base -> origin/gh/seemethere/61/base 2025-09-07T06:19:13.0637648Z * [new branch] gh/seemethere/61/head -> origin/gh/seemethere/61/head 2025-09-07T06:19:13.0637847Z * [new branch] gh/seemethere/61/orig -> origin/gh/seemethere/61/orig 2025-09-07T06:19:13.0638039Z * [new branch] gh/seemethere/62/base -> origin/gh/seemethere/62/base 2025-09-07T06:19:13.0638243Z * [new branch] gh/seemethere/62/head -> origin/gh/seemethere/62/head 2025-09-07T06:19:13.0638438Z * [new branch] gh/seemethere/62/orig -> origin/gh/seemethere/62/orig 2025-09-07T06:19:13.0638634Z * [new branch] gh/seemethere/63/base -> origin/gh/seemethere/63/base 2025-09-07T06:19:13.0638839Z * [new branch] gh/seemethere/63/head -> origin/gh/seemethere/63/head 2025-09-07T06:19:13.0639033Z * [new branch] gh/seemethere/63/orig -> origin/gh/seemethere/63/orig 2025-09-07T06:19:13.0639244Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-09-07T06:19:13.0639851Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-09-07T06:19:13.0640063Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-09-07T06:19:13.0640271Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-09-07T06:19:13.0640481Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-09-07T06:19:13.0640683Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-09-07T06:19:13.0640886Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-09-07T06:19:13.0641096Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-09-07T06:19:13.0641298Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-09-07T06:19:13.0641572Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-09-07T06:19:13.0641786Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-09-07T06:19:13.0641985Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-09-07T06:19:13.0642194Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-09-07T06:19:13.0642402Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-09-07T06:19:13.0642601Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-09-07T06:19:13.0642803Z * [new branch] gh/shunting314/214/base -> origin/gh/shunting314/214/base 2025-09-07T06:19:13.0643008Z * [new branch] gh/shunting314/214/head -> origin/gh/shunting314/214/head 2025-09-07T06:19:13.0643223Z * [new branch] gh/shunting314/214/orig -> origin/gh/shunting314/214/orig 2025-09-07T06:19:13.0643430Z * [new branch] gh/shunting314/215/base -> origin/gh/shunting314/215/base 2025-09-07T06:19:13.0643635Z * [new branch] gh/shunting314/215/head -> origin/gh/shunting314/215/head 2025-09-07T06:19:13.0643846Z * [new branch] gh/shunting314/215/orig -> origin/gh/shunting314/215/orig 2025-09-07T06:19:13.0644050Z * [new branch] gh/shunting314/216/base -> origin/gh/shunting314/216/base 2025-09-07T06:19:13.0644251Z * [new branch] gh/shunting314/216/head -> origin/gh/shunting314/216/head 2025-09-07T06:19:13.0644467Z * [new branch] gh/shunting314/216/orig -> origin/gh/shunting314/216/orig 2025-09-07T06:19:13.0644666Z * [new branch] gh/shunting314/217/base -> origin/gh/shunting314/217/base 2025-09-07T06:19:13.0644873Z * [new branch] gh/shunting314/217/head -> origin/gh/shunting314/217/head 2025-09-07T06:19:13.0645087Z * [new branch] gh/shunting314/217/orig -> origin/gh/shunting314/217/orig 2025-09-07T06:19:13.0645285Z * [new branch] gh/shunting314/218/base -> origin/gh/shunting314/218/base 2025-09-07T06:19:13.0645492Z * [new branch] gh/shunting314/218/head -> origin/gh/shunting314/218/head 2025-09-07T06:19:13.0645705Z * [new branch] gh/shunting314/218/orig -> origin/gh/shunting314/218/orig 2025-09-07T06:19:13.0645903Z * [new branch] gh/shunting314/219/base -> origin/gh/shunting314/219/base 2025-09-07T06:19:13.0646104Z * [new branch] gh/shunting314/219/head -> origin/gh/shunting314/219/head 2025-09-07T06:19:13.0646316Z * [new branch] gh/shunting314/219/orig -> origin/gh/shunting314/219/orig 2025-09-07T06:19:13.0646514Z * [new branch] gh/shunting314/220/base -> origin/gh/shunting314/220/base 2025-09-07T06:19:13.0646720Z * [new branch] gh/shunting314/220/head -> origin/gh/shunting314/220/head 2025-09-07T06:19:13.0647000Z * [new branch] gh/shunting314/220/orig -> origin/gh/shunting314/220/orig 2025-09-07T06:19:13.0647201Z * [new branch] gh/shunting314/221/base -> origin/gh/shunting314/221/base 2025-09-07T06:19:13.0647400Z * [new branch] gh/shunting314/221/head -> origin/gh/shunting314/221/head 2025-09-07T06:19:13.0647620Z * [new branch] gh/shunting314/221/orig -> origin/gh/shunting314/221/orig 2025-09-07T06:19:13.0647819Z * [new branch] gh/shunting314/222/base -> origin/gh/shunting314/222/base 2025-09-07T06:19:13.0648019Z * [new branch] gh/shunting314/222/head -> origin/gh/shunting314/222/head 2025-09-07T06:19:13.0648217Z * [new branch] gh/shunting314/222/orig -> origin/gh/shunting314/222/orig 2025-09-07T06:19:13.0648426Z * [new branch] gh/shunting314/223/base -> origin/gh/shunting314/223/base 2025-09-07T06:19:13.0648699Z * [new branch] gh/shunting314/223/head -> origin/gh/shunting314/223/head 2025-09-07T06:19:13.0648901Z * [new branch] gh/shunting314/223/orig -> origin/gh/shunting314/223/orig 2025-09-07T06:19:13.0649104Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-09-07T06:19:13.0649298Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-09-07T06:19:13.0649491Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-09-07T06:19:13.0649686Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-09-07T06:19:13.0649873Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-09-07T06:19:13.0650057Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-09-07T06:19:13.0650256Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-09-07T06:19:13.0650455Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-09-07T06:19:13.0650659Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-09-07T06:19:13.0650865Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-09-07T06:19:13.0651050Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-09-07T06:19:13.0651237Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-09-07T06:19:13.0651430Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-09-07T06:19:13.0651614Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-09-07T06:19:13.0651802Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-09-07T06:19:13.0652009Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-09-07T06:19:13.0652193Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-09-07T06:19:13.0652380Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-09-07T06:19:13.0652567Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-09-07T06:19:13.0652766Z * [new branch] gh/slayton58/1/base -> origin/gh/slayton58/1/base 2025-09-07T06:19:13.0652950Z * [new branch] gh/slayton58/1/head -> origin/gh/slayton58/1/head 2025-09-07T06:19:13.0653140Z * [new branch] gh/slayton58/1/orig -> origin/gh/slayton58/1/orig 2025-09-07T06:19:13.0653339Z * [new branch] gh/slayton58/2/base -> origin/gh/slayton58/2/base 2025-09-07T06:19:13.0653526Z * [new branch] gh/slayton58/2/head -> origin/gh/slayton58/2/head 2025-09-07T06:19:13.0653786Z * [new branch] gh/slayton58/2/orig -> origin/gh/slayton58/2/orig 2025-09-07T06:19:13.0653980Z * [new branch] gh/slayton58/3/base -> origin/gh/slayton58/3/base 2025-09-07T06:19:13.0654165Z * [new branch] gh/slayton58/3/head -> origin/gh/slayton58/3/head 2025-09-07T06:19:13.0654348Z * [new branch] gh/slayton58/3/orig -> origin/gh/slayton58/3/orig 2025-09-07T06:19:13.0654543Z * [new branch] gh/slayton58/4/base -> origin/gh/slayton58/4/base 2025-09-07T06:19:13.0654729Z * [new branch] gh/slayton58/4/head -> origin/gh/slayton58/4/head 2025-09-07T06:19:13.0654914Z * [new branch] gh/slayton58/4/orig -> origin/gh/slayton58/4/orig 2025-09-07T06:19:13.0655118Z * [new branch] gh/slayton58/5/base -> origin/gh/slayton58/5/base 2025-09-07T06:19:13.0655375Z * [new branch] gh/slayton58/5/head -> origin/gh/slayton58/5/head 2025-09-07T06:19:13.0655563Z * [new branch] gh/slayton58/5/orig -> origin/gh/slayton58/5/orig 2025-09-07T06:19:13.0655769Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-09-07T06:19:13.0655964Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-09-07T06:19:13.0656161Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-09-07T06:19:13.0656362Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-09-07T06:19:13.0656554Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-09-07T06:19:13.0656748Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-09-07T06:19:13.0656942Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-09-07T06:19:13.0657151Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-09-07T06:19:13.0657353Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-09-07T06:19:13.0657543Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-09-07T06:19:13.0657743Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-09-07T06:19:13.0657935Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-09-07T06:19:13.0658126Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-09-07T06:19:13.0658325Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-09-07T06:19:13.0658519Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-09-07T06:19:13.0658710Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-09-07T06:19:13.0658916Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-09-07T06:19:13.0659108Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-09-07T06:19:13.0659304Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-09-07T06:19:13.0659509Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-09-07T06:19:13.0659704Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-09-07T06:19:13.0659899Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-09-07T06:19:13.0660101Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-09-07T06:19:13.0660295Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-09-07T06:19:13.0660490Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-09-07T06:19:13.0660757Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-09-07T06:19:13.0660951Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-09-07T06:19:13.0661146Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-09-07T06:19:13.0661346Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-09-07T06:19:13.0661546Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-09-07T06:19:13.0661736Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-09-07T06:19:13.0661926Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-09-07T06:19:13.0662123Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-09-07T06:19:13.0662387Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-09-07T06:19:13.0662581Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-09-07T06:19:13.0662788Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-09-07T06:19:13.0662981Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-09-07T06:19:13.0663177Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-09-07T06:19:13.0663377Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-09-07T06:19:13.0663571Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-09-07T06:19:13.0663767Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-09-07T06:19:13.0663973Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-09-07T06:19:13.0664181Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-09-07T06:19:13.0664371Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-09-07T06:19:13.0664577Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-09-07T06:19:13.0664769Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-09-07T06:19:13.0664961Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-09-07T06:19:13.0665252Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-09-07T06:19:13.0665452Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-09-07T06:19:13.0665647Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-09-07T06:19:13.0665850Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-09-07T06:19:13.0666063Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-09-07T06:19:13.0666258Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-09-07T06:19:13.0666461Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-09-07T06:19:13.0666668Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-09-07T06:19:13.0666864Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-09-07T06:19:13.0667057Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-09-07T06:19:13.0667261Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-09-07T06:19:13.0667457Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-09-07T06:19:13.0667732Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-09-07T06:19:13.0667938Z * [new branch] gh/soulitzer/373/base -> origin/gh/soulitzer/373/base 2025-09-07T06:19:13.0668135Z * [new branch] gh/soulitzer/373/head -> origin/gh/soulitzer/373/head 2025-09-07T06:19:13.0668329Z * [new branch] gh/soulitzer/373/orig -> origin/gh/soulitzer/373/orig 2025-09-07T06:19:13.0668541Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-09-07T06:19:13.0668738Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-09-07T06:19:13.0668933Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-09-07T06:19:13.0669145Z * [new branch] gh/soulitzer/375/base -> origin/gh/soulitzer/375/base 2025-09-07T06:19:13.0669411Z * [new branch] gh/soulitzer/375/head -> origin/gh/soulitzer/375/head 2025-09-07T06:19:13.0669609Z * [new branch] gh/soulitzer/375/orig -> origin/gh/soulitzer/375/orig 2025-09-07T06:19:13.0669807Z * [new branch] gh/soulitzer/376/base -> origin/gh/soulitzer/376/base 2025-09-07T06:19:13.0669999Z * [new branch] gh/soulitzer/376/head -> origin/gh/soulitzer/376/head 2025-09-07T06:19:13.0670192Z * [new branch] gh/soulitzer/376/orig -> origin/gh/soulitzer/376/orig 2025-09-07T06:19:13.0670386Z * [new branch] gh/soulitzer/377/base -> origin/gh/soulitzer/377/base 2025-09-07T06:19:13.0670588Z * [new branch] gh/soulitzer/377/head -> origin/gh/soulitzer/377/head 2025-09-07T06:19:13.0670781Z * [new branch] gh/soulitzer/377/orig -> origin/gh/soulitzer/377/orig 2025-09-07T06:19:13.0670975Z * [new branch] gh/soulitzer/378/base -> origin/gh/soulitzer/378/base 2025-09-07T06:19:13.0671180Z * [new branch] gh/soulitzer/378/head -> origin/gh/soulitzer/378/head 2025-09-07T06:19:13.0671379Z * [new branch] gh/soulitzer/378/orig -> origin/gh/soulitzer/378/orig 2025-09-07T06:19:13.0671573Z * [new branch] gh/soulitzer/379/base -> origin/gh/soulitzer/379/base 2025-09-07T06:19:13.0671772Z * [new branch] gh/soulitzer/379/head -> origin/gh/soulitzer/379/head 2025-09-07T06:19:13.0671963Z * [new branch] gh/soulitzer/379/orig -> origin/gh/soulitzer/379/orig 2025-09-07T06:19:13.0672153Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-09-07T06:19:13.0672353Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-09-07T06:19:13.0672544Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-09-07T06:19:13.0672734Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-09-07T06:19:13.0672939Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-09-07T06:19:13.0673128Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-09-07T06:19:13.0673317Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-09-07T06:19:13.0673518Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-09-07T06:19:13.0673708Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-09-07T06:19:13.0673898Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-09-07T06:19:13.0674097Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-09-07T06:19:13.0674286Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-09-07T06:19:13.0674479Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-09-07T06:19:13.0674736Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-09-07T06:19:13.0674935Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-09-07T06:19:13.0675126Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-09-07T06:19:13.0675317Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-09-07T06:19:13.0675514Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-09-07T06:19:13.0675701Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-09-07T06:19:13.0675896Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-09-07T06:19:13.0676095Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-09-07T06:19:13.0676356Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-09-07T06:19:13.0676545Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-09-07T06:19:13.0676744Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-09-07T06:19:13.0676934Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-09-07T06:19:13.0677123Z * [new branch] gh/swolchok/788/base -> origin/gh/swolchok/788/base 2025-09-07T06:19:13.0677322Z * [new branch] gh/swolchok/788/head -> origin/gh/swolchok/788/head 2025-09-07T06:19:13.0677513Z * [new branch] gh/swolchok/788/orig -> origin/gh/swolchok/788/orig 2025-09-07T06:19:13.0677707Z * [new branch] gh/swolchok/789/base -> origin/gh/swolchok/789/base 2025-09-07T06:19:13.0677909Z * [new branch] gh/swolchok/789/head -> origin/gh/swolchok/789/head 2025-09-07T06:19:13.0678106Z * [new branch] gh/swolchok/789/orig -> origin/gh/swolchok/789/orig 2025-09-07T06:19:13.0678364Z * [new branch] gh/swolchok/790/base -> origin/gh/swolchok/790/base 2025-09-07T06:19:13.0678570Z * [new branch] gh/swolchok/790/head -> origin/gh/swolchok/790/head 2025-09-07T06:19:13.0678792Z * [new branch] gh/swolchok/790/orig -> origin/gh/swolchok/790/orig 2025-09-07T06:19:13.0678990Z * [new branch] gh/swolchok/791/base -> origin/gh/swolchok/791/base 2025-09-07T06:19:13.0679183Z * [new branch] gh/swolchok/791/head -> origin/gh/swolchok/791/head 2025-09-07T06:19:13.0679378Z * [new branch] gh/swolchok/791/orig -> origin/gh/swolchok/791/orig 2025-09-07T06:19:13.0679568Z * [new branch] gh/swolchok/792/base -> origin/gh/swolchok/792/base 2025-09-07T06:19:13.0679758Z * [new branch] gh/swolchok/792/head -> origin/gh/swolchok/792/head 2025-09-07T06:19:13.0679956Z * [new branch] gh/swolchok/792/orig -> origin/gh/swolchok/792/orig 2025-09-07T06:19:13.0680144Z * [new branch] gh/swolchok/793/base -> origin/gh/swolchok/793/base 2025-09-07T06:19:13.0680331Z * [new branch] gh/swolchok/793/head -> origin/gh/swolchok/793/head 2025-09-07T06:19:13.0680524Z * [new branch] gh/swolchok/793/orig -> origin/gh/swolchok/793/orig 2025-09-07T06:19:13.0680713Z * [new branch] gh/swolchok/794/base -> origin/gh/swolchok/794/base 2025-09-07T06:19:13.0680909Z * [new branch] gh/swolchok/794/head -> origin/gh/swolchok/794/head 2025-09-07T06:19:13.0681116Z * [new branch] gh/swolchok/794/orig -> origin/gh/swolchok/794/orig 2025-09-07T06:19:13.0681303Z * [new branch] gh/swolchok/795/base -> origin/gh/swolchok/795/base 2025-09-07T06:19:13.0681567Z * [new branch] gh/swolchok/795/head -> origin/gh/swolchok/795/head 2025-09-07T06:19:13.0681763Z * [new branch] gh/swolchok/795/orig -> origin/gh/swolchok/795/orig 2025-09-07T06:19:13.0681951Z * [new branch] gh/swolchok/796/base -> origin/gh/swolchok/796/base 2025-09-07T06:19:13.0682140Z * [new branch] gh/swolchok/796/head -> origin/gh/swolchok/796/head 2025-09-07T06:19:13.0682341Z * [new branch] gh/swolchok/796/orig -> origin/gh/swolchok/796/orig 2025-09-07T06:19:13.0682531Z * [new branch] gh/swolchok/797/base -> origin/gh/swolchok/797/base 2025-09-07T06:19:13.0682719Z * [new branch] gh/swolchok/797/head -> origin/gh/swolchok/797/head 2025-09-07T06:19:13.0682919Z * [new branch] gh/swolchok/797/orig -> origin/gh/swolchok/797/orig 2025-09-07T06:19:13.0683106Z * [new branch] gh/swolchok/798/base -> origin/gh/swolchok/798/base 2025-09-07T06:19:13.0683373Z * [new branch] gh/swolchok/798/head -> origin/gh/swolchok/798/head 2025-09-07T06:19:13.0683565Z * [new branch] gh/swolchok/798/orig -> origin/gh/swolchok/798/orig 2025-09-07T06:19:13.0683769Z * [new branch] gh/swolchok/799/base -> origin/gh/swolchok/799/base 2025-09-07T06:19:13.0683961Z * [new branch] gh/swolchok/799/head -> origin/gh/swolchok/799/head 2025-09-07T06:19:13.0684198Z * [new branch] gh/swolchok/799/orig -> origin/gh/swolchok/799/orig 2025-09-07T06:19:13.0684399Z * [new branch] gh/swolchok/800/base -> origin/gh/swolchok/800/base 2025-09-07T06:19:13.0684639Z * [new branch] gh/swolchok/800/head -> origin/gh/swolchok/800/head 2025-09-07T06:19:13.0684828Z * [new branch] gh/swolchok/800/orig -> origin/gh/swolchok/800/orig 2025-09-07T06:19:13.0685031Z * [new branch] gh/swolchok/801/base -> origin/gh/swolchok/801/base 2025-09-07T06:19:13.0685222Z * [new branch] gh/swolchok/801/head -> origin/gh/swolchok/801/head 2025-09-07T06:19:13.0685409Z * [new branch] gh/swolchok/801/orig -> origin/gh/swolchok/801/orig 2025-09-07T06:19:13.0685609Z * [new branch] gh/swolchok/802/base -> origin/gh/swolchok/802/base 2025-09-07T06:19:13.0685798Z * [new branch] gh/swolchok/802/head -> origin/gh/swolchok/802/head 2025-09-07T06:19:13.0685987Z * [new branch] gh/swolchok/802/orig -> origin/gh/swolchok/802/orig 2025-09-07T06:19:13.0686183Z * [new branch] gh/swolchok/803/base -> origin/gh/swolchok/803/base 2025-09-07T06:19:13.0686372Z * [new branch] gh/swolchok/803/head -> origin/gh/swolchok/803/head 2025-09-07T06:19:13.0686557Z * [new branch] gh/swolchok/803/orig -> origin/gh/swolchok/803/orig 2025-09-07T06:19:13.0686756Z * [new branch] gh/swolchok/804/base -> origin/gh/swolchok/804/base 2025-09-07T06:19:13.0686947Z * [new branch] gh/swolchok/804/head -> origin/gh/swolchok/804/head 2025-09-07T06:19:13.0687134Z * [new branch] gh/swolchok/804/orig -> origin/gh/swolchok/804/orig 2025-09-07T06:19:13.0687327Z * [new branch] gh/swolchok/805/base -> origin/gh/swolchok/805/base 2025-09-07T06:19:13.0687517Z * [new branch] gh/swolchok/805/head -> origin/gh/swolchok/805/head 2025-09-07T06:19:13.0687709Z * [new branch] gh/swolchok/805/orig -> origin/gh/swolchok/805/orig 2025-09-07T06:19:13.0687896Z * [new branch] gh/swolchok/806/base -> origin/gh/swolchok/806/base 2025-09-07T06:19:13.0688089Z * [new branch] gh/swolchok/806/head -> origin/gh/swolchok/806/head 2025-09-07T06:19:13.0688277Z * [new branch] gh/swolchok/806/orig -> origin/gh/swolchok/806/orig 2025-09-07T06:19:13.0688534Z * [new branch] gh/swolchok/807/base -> origin/gh/swolchok/807/base 2025-09-07T06:19:13.0688733Z * [new branch] gh/swolchok/807/head -> origin/gh/swolchok/807/head 2025-09-07T06:19:13.0688923Z * [new branch] gh/swolchok/807/orig -> origin/gh/swolchok/807/orig 2025-09-07T06:19:13.0689212Z * [new branch] gh/swolchok/808/base -> origin/gh/swolchok/808/base 2025-09-07T06:19:13.0689425Z * [new branch] gh/swolchok/808/head -> origin/gh/swolchok/808/head 2025-09-07T06:19:13.0689617Z * [new branch] gh/swolchok/808/orig -> origin/gh/swolchok/808/orig 2025-09-07T06:19:13.0689850Z * [new branch] gh/swolchok/809/base -> origin/gh/swolchok/809/base 2025-09-07T06:19:13.0690046Z * [new branch] gh/swolchok/809/head -> origin/gh/swolchok/809/head 2025-09-07T06:19:13.0690370Z * [new branch] gh/swolchok/809/orig -> origin/gh/swolchok/809/orig 2025-09-07T06:19:13.0690563Z * [new branch] gh/swolchok/810/base -> origin/gh/swolchok/810/base 2025-09-07T06:19:13.0690767Z * [new branch] gh/swolchok/810/head -> origin/gh/swolchok/810/head 2025-09-07T06:19:13.0690958Z * [new branch] gh/swolchok/810/orig -> origin/gh/swolchok/810/orig 2025-09-07T06:19:13.0691146Z * [new branch] gh/swolchok/811/base -> origin/gh/swolchok/811/base 2025-09-07T06:19:13.0691342Z * [new branch] gh/swolchok/811/head -> origin/gh/swolchok/811/head 2025-09-07T06:19:13.0691533Z * [new branch] gh/swolchok/811/orig -> origin/gh/swolchok/811/orig 2025-09-07T06:19:13.0691721Z * [new branch] gh/swolchok/812/base -> origin/gh/swolchok/812/base 2025-09-07T06:19:13.0691928Z * [new branch] gh/swolchok/812/head -> origin/gh/swolchok/812/head 2025-09-07T06:19:13.0692123Z * [new branch] gh/swolchok/812/orig -> origin/gh/swolchok/812/orig 2025-09-07T06:19:13.0692314Z * [new branch] gh/swolchok/813/base -> origin/gh/swolchok/813/base 2025-09-07T06:19:13.0692501Z * [new branch] gh/swolchok/813/head -> origin/gh/swolchok/813/head 2025-09-07T06:19:13.0692700Z * [new branch] gh/swolchok/813/orig -> origin/gh/swolchok/813/orig 2025-09-07T06:19:13.0692893Z * [new branch] gh/swolchok/814/base -> origin/gh/swolchok/814/base 2025-09-07T06:19:13.0693082Z * [new branch] gh/swolchok/814/head -> origin/gh/swolchok/814/head 2025-09-07T06:19:13.0693285Z * [new branch] gh/swolchok/814/orig -> origin/gh/swolchok/814/orig 2025-09-07T06:19:13.0693476Z * [new branch] gh/swolchok/815/base -> origin/gh/swolchok/815/base 2025-09-07T06:19:13.0693663Z * [new branch] gh/swolchok/815/head -> origin/gh/swolchok/815/head 2025-09-07T06:19:13.0693871Z * [new branch] gh/swolchok/815/orig -> origin/gh/swolchok/815/orig 2025-09-07T06:19:13.0694061Z * [new branch] gh/swolchok/816/base -> origin/gh/swolchok/816/base 2025-09-07T06:19:13.0694251Z * [new branch] gh/swolchok/816/head -> origin/gh/swolchok/816/head 2025-09-07T06:19:13.0694448Z * [new branch] gh/swolchok/816/orig -> origin/gh/swolchok/816/orig 2025-09-07T06:19:13.0694637Z * [new branch] gh/swolchok/817/base -> origin/gh/swolchok/817/base 2025-09-07T06:19:13.0694825Z * [new branch] gh/swolchok/817/head -> origin/gh/swolchok/817/head 2025-09-07T06:19:13.0695020Z * [new branch] gh/swolchok/817/orig -> origin/gh/swolchok/817/orig 2025-09-07T06:19:13.0695207Z * [new branch] gh/swolchok/818/base -> origin/gh/swolchok/818/base 2025-09-07T06:19:13.0695397Z * [new branch] gh/swolchok/818/head -> origin/gh/swolchok/818/head 2025-09-07T06:19:13.0695706Z * [new branch] gh/swolchok/818/orig -> origin/gh/swolchok/818/orig 2025-09-07T06:19:13.0695895Z * [new branch] gh/swolchok/819/base -> origin/gh/swolchok/819/base 2025-09-07T06:19:13.0696123Z * [new branch] gh/swolchok/819/head -> origin/gh/swolchok/819/head 2025-09-07T06:19:13.0696321Z * [new branch] gh/swolchok/819/orig -> origin/gh/swolchok/819/orig 2025-09-07T06:19:13.0696512Z * [new branch] gh/swolchok/820/base -> origin/gh/swolchok/820/base 2025-09-07T06:19:13.0696702Z * [new branch] gh/swolchok/820/head -> origin/gh/swolchok/820/head 2025-09-07T06:19:13.0696895Z * [new branch] gh/swolchok/820/orig -> origin/gh/swolchok/820/orig 2025-09-07T06:19:13.0697094Z * [new branch] gh/swolchok/821/base -> origin/gh/swolchok/821/base 2025-09-07T06:19:13.0697353Z * [new branch] gh/swolchok/821/head -> origin/gh/swolchok/821/head 2025-09-07T06:19:13.0697547Z * [new branch] gh/swolchok/821/orig -> origin/gh/swolchok/821/orig 2025-09-07T06:19:13.0697744Z * [new branch] gh/swolchok/822/base -> origin/gh/swolchok/822/base 2025-09-07T06:19:13.0697933Z * [new branch] gh/swolchok/822/head -> origin/gh/swolchok/822/head 2025-09-07T06:19:13.0698120Z * [new branch] gh/swolchok/822/orig -> origin/gh/swolchok/822/orig 2025-09-07T06:19:13.0698323Z * [new branch] gh/swolchok/823/base -> origin/gh/swolchok/823/base 2025-09-07T06:19:13.0698512Z * [new branch] gh/swolchok/823/head -> origin/gh/swolchok/823/head 2025-09-07T06:19:13.0698701Z * [new branch] gh/swolchok/823/orig -> origin/gh/swolchok/823/orig 2025-09-07T06:19:13.0698897Z * [new branch] gh/swolchok/824/base -> origin/gh/swolchok/824/base 2025-09-07T06:19:13.0699090Z * [new branch] gh/swolchok/824/head -> origin/gh/swolchok/824/head 2025-09-07T06:19:13.0699277Z * [new branch] gh/swolchok/824/orig -> origin/gh/swolchok/824/orig 2025-09-07T06:19:13.0699470Z * [new branch] gh/swolchok/825/base -> origin/gh/swolchok/825/base 2025-09-07T06:19:13.0699661Z * [new branch] gh/swolchok/825/head -> origin/gh/swolchok/825/head 2025-09-07T06:19:13.0699848Z * [new branch] gh/swolchok/825/orig -> origin/gh/swolchok/825/orig 2025-09-07T06:19:13.0700046Z * [new branch] gh/swolchok/826/base -> origin/gh/swolchok/826/base 2025-09-07T06:19:13.0700236Z * [new branch] gh/swolchok/826/head -> origin/gh/swolchok/826/head 2025-09-07T06:19:13.0700424Z * [new branch] gh/swolchok/826/orig -> origin/gh/swolchok/826/orig 2025-09-07T06:19:13.0700621Z * [new branch] gh/swolchok/827/base -> origin/gh/swolchok/827/base 2025-09-07T06:19:13.0700810Z * [new branch] gh/swolchok/827/head -> origin/gh/swolchok/827/head 2025-09-07T06:19:13.0701007Z * [new branch] gh/swolchok/827/orig -> origin/gh/swolchok/827/orig 2025-09-07T06:19:13.0701196Z * [new branch] gh/swolchok/828/base -> origin/gh/swolchok/828/base 2025-09-07T06:19:13.0701438Z * [new branch] gh/swolchok/828/head -> origin/gh/swolchok/828/head 2025-09-07T06:19:13.0701626Z * [new branch] gh/swolchok/828/orig -> origin/gh/swolchok/828/orig 2025-09-07T06:19:13.0701819Z * [new branch] gh/swolchok/829/base -> origin/gh/swolchok/829/base 2025-09-07T06:19:13.0702021Z * [new branch] gh/swolchok/829/head -> origin/gh/swolchok/829/head 2025-09-07T06:19:13.0702248Z * [new branch] gh/swolchok/829/orig -> origin/gh/swolchok/829/orig 2025-09-07T06:19:13.0702441Z * [new branch] gh/swolchok/830/base -> origin/gh/swolchok/830/base 2025-09-07T06:19:13.0702721Z * [new branch] gh/swolchok/830/head -> origin/gh/swolchok/830/head 2025-09-07T06:19:13.0702908Z * [new branch] gh/swolchok/830/orig -> origin/gh/swolchok/830/orig 2025-09-07T06:19:13.0703093Z * [new branch] gh/swolchok/831/base -> origin/gh/swolchok/831/base 2025-09-07T06:19:13.0703292Z * [new branch] gh/swolchok/831/head -> origin/gh/swolchok/831/head 2025-09-07T06:19:13.0703480Z * [new branch] gh/swolchok/831/orig -> origin/gh/swolchok/831/orig 2025-09-07T06:19:13.0703666Z * [new branch] gh/swolchok/832/base -> origin/gh/swolchok/832/base 2025-09-07T06:19:13.0703870Z * [new branch] gh/swolchok/832/head -> origin/gh/swolchok/832/head 2025-09-07T06:19:13.0704057Z * [new branch] gh/swolchok/832/orig -> origin/gh/swolchok/832/orig 2025-09-07T06:19:13.0704329Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-09-07T06:19:13.0704528Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-09-07T06:19:13.0704713Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-09-07T06:19:13.0704899Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-09-07T06:19:13.0705182Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-09-07T06:19:13.0705373Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-09-07T06:19:13.0705562Z * [new branch] gh/syed-ahmed/5/base -> origin/gh/syed-ahmed/5/base 2025-09-07T06:19:13.0705751Z * [new branch] gh/syed-ahmed/5/head -> origin/gh/syed-ahmed/5/head 2025-09-07T06:19:13.0705952Z * [new branch] gh/syed-ahmed/5/orig -> origin/gh/syed-ahmed/5/orig 2025-09-07T06:19:13.0706141Z * [new branch] gh/teja-rao/4/base -> origin/gh/teja-rao/4/base 2025-09-07T06:19:13.0706329Z * [new branch] gh/teja-rao/4/head -> origin/gh/teja-rao/4/head 2025-09-07T06:19:13.0706525Z * [new branch] gh/teja-rao/4/orig -> origin/gh/teja-rao/4/orig 2025-09-07T06:19:13.0706708Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-09-07T06:19:13.0706893Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-09-07T06:19:13.0707086Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-09-07T06:19:13.0707266Z * [new branch] gh/tianyu-l/3/base -> origin/gh/tianyu-l/3/base 2025-09-07T06:19:13.0707489Z * [new branch] gh/tianyu-l/3/head -> origin/gh/tianyu-l/3/head 2025-09-07T06:19:13.0707694Z * [new branch] gh/tianyu-l/3/orig -> origin/gh/tianyu-l/3/orig 2025-09-07T06:19:13.0707918Z * [new branch] gh/tianyu-l/4/base -> origin/gh/tianyu-l/4/base 2025-09-07T06:19:13.0708098Z * [new branch] gh/tianyu-l/4/head -> origin/gh/tianyu-l/4/head 2025-09-07T06:19:13.0708291Z * [new branch] gh/tianyu-l/4/orig -> origin/gh/tianyu-l/4/orig 2025-09-07T06:19:13.0708518Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-09-07T06:19:13.0708736Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-09-07T06:19:13.0708959Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-09-07T06:19:13.0709186Z * [new branch] gh/tugsbayasgalan/10/base -> origin/gh/tugsbayasgalan/10/base 2025-09-07T06:19:13.0709408Z * [new branch] gh/tugsbayasgalan/10/head -> origin/gh/tugsbayasgalan/10/head 2025-09-07T06:19:13.0709713Z * [new branch] gh/tugsbayasgalan/10/orig -> origin/gh/tugsbayasgalan/10/orig 2025-09-07T06:19:13.0709933Z * [new branch] gh/tugsbayasgalan/11/base -> origin/gh/tugsbayasgalan/11/base 2025-09-07T06:19:13.0710154Z * [new branch] gh/tugsbayasgalan/11/head -> origin/gh/tugsbayasgalan/11/head 2025-09-07T06:19:13.0710375Z * [new branch] gh/tugsbayasgalan/11/orig -> origin/gh/tugsbayasgalan/11/orig 2025-09-07T06:19:13.0710603Z * [new branch] gh/tugsbayasgalan/12/base -> origin/gh/tugsbayasgalan/12/base 2025-09-07T06:19:13.0710822Z * [new branch] gh/tugsbayasgalan/12/head -> origin/gh/tugsbayasgalan/12/head 2025-09-07T06:19:13.0711042Z * [new branch] gh/tugsbayasgalan/12/orig -> origin/gh/tugsbayasgalan/12/orig 2025-09-07T06:19:13.0711272Z * [new branch] gh/tugsbayasgalan/13/base -> origin/gh/tugsbayasgalan/13/base 2025-09-07T06:19:13.0711555Z * [new branch] gh/tugsbayasgalan/13/head -> origin/gh/tugsbayasgalan/13/head 2025-09-07T06:19:13.0711777Z * [new branch] gh/tugsbayasgalan/13/orig -> origin/gh/tugsbayasgalan/13/orig 2025-09-07T06:19:13.0712005Z * [new branch] gh/tugsbayasgalan/14/base -> origin/gh/tugsbayasgalan/14/base 2025-09-07T06:19:13.0712223Z * [new branch] gh/tugsbayasgalan/14/head -> origin/gh/tugsbayasgalan/14/head 2025-09-07T06:19:13.0712442Z * [new branch] gh/tugsbayasgalan/14/orig -> origin/gh/tugsbayasgalan/14/orig 2025-09-07T06:19:13.0712669Z * [new branch] gh/tugsbayasgalan/15/base -> origin/gh/tugsbayasgalan/15/base 2025-09-07T06:19:13.0712889Z * [new branch] gh/tugsbayasgalan/15/head -> origin/gh/tugsbayasgalan/15/head 2025-09-07T06:19:13.0713146Z * [new branch] gh/tugsbayasgalan/15/orig -> origin/gh/tugsbayasgalan/15/orig 2025-09-07T06:19:13.0713380Z * [new branch] gh/tugsbayasgalan/2/base -> origin/gh/tugsbayasgalan/2/base 2025-09-07T06:19:13.0713604Z * [new branch] gh/tugsbayasgalan/2/head -> origin/gh/tugsbayasgalan/2/head 2025-09-07T06:19:13.0713863Z * [new branch] gh/tugsbayasgalan/2/orig -> origin/gh/tugsbayasgalan/2/orig 2025-09-07T06:19:13.0714093Z * [new branch] gh/tugsbayasgalan/3/base -> origin/gh/tugsbayasgalan/3/base 2025-09-07T06:19:13.0714310Z * [new branch] gh/tugsbayasgalan/3/head -> origin/gh/tugsbayasgalan/3/head 2025-09-07T06:19:13.0714530Z * [new branch] gh/tugsbayasgalan/3/orig -> origin/gh/tugsbayasgalan/3/orig 2025-09-07T06:19:13.0714755Z * [new branch] gh/tugsbayasgalan/4/base -> origin/gh/tugsbayasgalan/4/base 2025-09-07T06:19:13.0714975Z * [new branch] gh/tugsbayasgalan/4/head -> origin/gh/tugsbayasgalan/4/head 2025-09-07T06:19:13.0715190Z * [new branch] gh/tugsbayasgalan/4/orig -> origin/gh/tugsbayasgalan/4/orig 2025-09-07T06:19:13.0715426Z * [new branch] gh/tugsbayasgalan/5/base -> origin/gh/tugsbayasgalan/5/base 2025-09-07T06:19:13.0715641Z * [new branch] gh/tugsbayasgalan/5/head -> origin/gh/tugsbayasgalan/5/head 2025-09-07T06:19:13.0715863Z * [new branch] gh/tugsbayasgalan/5/orig -> origin/gh/tugsbayasgalan/5/orig 2025-09-07T06:19:13.0716083Z * [new branch] gh/tugsbayasgalan/6/base -> origin/gh/tugsbayasgalan/6/base 2025-09-07T06:19:13.0716309Z * [new branch] gh/tugsbayasgalan/6/head -> origin/gh/tugsbayasgalan/6/head 2025-09-07T06:19:13.0716528Z * [new branch] gh/tugsbayasgalan/6/orig -> origin/gh/tugsbayasgalan/6/orig 2025-09-07T06:19:13.0716745Z * [new branch] gh/tugsbayasgalan/7/base -> origin/gh/tugsbayasgalan/7/base 2025-09-07T06:19:13.0716977Z * [new branch] gh/tugsbayasgalan/7/head -> origin/gh/tugsbayasgalan/7/head 2025-09-07T06:19:13.0717202Z * [new branch] gh/tugsbayasgalan/7/orig -> origin/gh/tugsbayasgalan/7/orig 2025-09-07T06:19:13.0717487Z * [new branch] gh/tugsbayasgalan/8/base -> origin/gh/tugsbayasgalan/8/base 2025-09-07T06:19:13.0717714Z * [new branch] gh/tugsbayasgalan/8/head -> origin/gh/tugsbayasgalan/8/head 2025-09-07T06:19:13.0717929Z * [new branch] gh/tugsbayasgalan/8/orig -> origin/gh/tugsbayasgalan/8/orig 2025-09-07T06:19:13.0718146Z * [new branch] gh/tugsbayasgalan/9/base -> origin/gh/tugsbayasgalan/9/base 2025-09-07T06:19:13.0718370Z * [new branch] gh/tugsbayasgalan/9/head -> origin/gh/tugsbayasgalan/9/head 2025-09-07T06:19:13.0718587Z * [new branch] gh/tugsbayasgalan/9/orig -> origin/gh/tugsbayasgalan/9/orig 2025-09-07T06:19:13.0718763Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-09-07T06:19:13.0718972Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-09-07T06:19:13.0719218Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-09-07T06:19:13.0719386Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-09-07T06:19:13.0719603Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-09-07T06:19:13.0719767Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-09-07T06:19:13.0719929Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-09-07T06:19:13.0720105Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-09-07T06:19:13.0720270Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-09-07T06:19:13.0720431Z * [new branch] gh/v0i0/7/base -> origin/gh/v0i0/7/base 2025-09-07T06:19:13.0720592Z * [new branch] gh/v0i0/7/head -> origin/gh/v0i0/7/head 2025-09-07T06:19:13.0720763Z * [new branch] gh/v0i0/7/orig -> origin/gh/v0i0/7/orig 2025-09-07T06:19:13.0720927Z * [new branch] gh/v0i0/8/base -> origin/gh/v0i0/8/base 2025-09-07T06:19:13.0721092Z * [new branch] gh/v0i0/8/head -> origin/gh/v0i0/8/head 2025-09-07T06:19:13.0721263Z * [new branch] gh/v0i0/8/orig -> origin/gh/v0i0/8/orig 2025-09-07T06:19:13.0721424Z * [new branch] gh/v0i0/9/base -> origin/gh/v0i0/9/base 2025-09-07T06:19:13.0721584Z * [new branch] gh/v0i0/9/head -> origin/gh/v0i0/9/head 2025-09-07T06:19:13.0721754Z * [new branch] gh/v0i0/9/orig -> origin/gh/v0i0/9/orig 2025-09-07T06:19:13.0721930Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-09-07T06:19:13.0722104Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-09-07T06:19:13.0722283Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-09-07T06:19:13.0722459Z * [new branch] gh/vkuzo/4/base -> origin/gh/vkuzo/4/base 2025-09-07T06:19:13.0722628Z * [new branch] gh/vkuzo/4/head -> origin/gh/vkuzo/4/head 2025-09-07T06:19:13.0722805Z * [new branch] gh/vkuzo/4/orig -> origin/gh/vkuzo/4/orig 2025-09-07T06:19:13.0722971Z * [new branch] gh/vkuzo/5/base -> origin/gh/vkuzo/5/base 2025-09-07T06:19:13.0723138Z * [new branch] gh/vkuzo/5/head -> origin/gh/vkuzo/5/head 2025-09-07T06:19:13.0723311Z * [new branch] gh/vkuzo/5/orig -> origin/gh/vkuzo/5/orig 2025-09-07T06:19:13.0723478Z * [new branch] gh/vkuzo/6/base -> origin/gh/vkuzo/6/base 2025-09-07T06:19:13.0723647Z * [new branch] gh/vkuzo/6/head -> origin/gh/vkuzo/6/head 2025-09-07T06:19:13.0723816Z * [new branch] gh/vkuzo/6/orig -> origin/gh/vkuzo/6/orig 2025-09-07T06:19:13.0724063Z * [new branch] gh/vkuzo/7/base -> origin/gh/vkuzo/7/base 2025-09-07T06:19:13.0724234Z * [new branch] gh/vkuzo/7/head -> origin/gh/vkuzo/7/head 2025-09-07T06:19:13.0724401Z * [new branch] gh/vkuzo/7/orig -> origin/gh/vkuzo/7/orig 2025-09-07T06:19:13.0724605Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-09-07T06:19:13.0724839Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-09-07T06:19:13.0725037Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-09-07T06:19:13.0725277Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-09-07T06:19:13.0725467Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-09-07T06:19:13.0725726Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-09-07T06:19:13.0725928Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-09-07T06:19:13.0726115Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-09-07T06:19:13.0726305Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-09-07T06:19:13.0726499Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-09-07T06:19:13.0726687Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-09-07T06:19:13.0737987Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-09-07T06:19:13.0738316Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-09-07T06:19:13.0738522Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-09-07T06:19:13.0738748Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-09-07T06:19:13.0738941Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-09-07T06:19:13.0739127Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-09-07T06:19:13.0739327Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-09-07T06:19:13.0739515Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-09-07T06:19:13.0739710Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-09-07T06:19:13.0739918Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-09-07T06:19:13.0740108Z * [new branch] gh/wconstab/443/base -> origin/gh/wconstab/443/base 2025-09-07T06:19:13.0740302Z * [new branch] gh/wconstab/443/head -> origin/gh/wconstab/443/head 2025-09-07T06:19:13.0740503Z * [new branch] gh/wconstab/443/orig -> origin/gh/wconstab/443/orig 2025-09-07T06:19:13.0740690Z * [new branch] gh/wconstab/444/base -> origin/gh/wconstab/444/base 2025-09-07T06:19:13.0740882Z * [new branch] gh/wconstab/444/head -> origin/gh/wconstab/444/head 2025-09-07T06:19:13.0741088Z * [new branch] gh/wconstab/444/orig -> origin/gh/wconstab/444/orig 2025-09-07T06:19:13.0741276Z * [new branch] gh/wconstab/445/base -> origin/gh/wconstab/445/base 2025-09-07T06:19:13.0741463Z * [new branch] gh/wconstab/445/head -> origin/gh/wconstab/445/head 2025-09-07T06:19:13.0741658Z * [new branch] gh/wconstab/445/orig -> origin/gh/wconstab/445/orig 2025-09-07T06:19:13.0741861Z * [new branch] gh/wconstab/446/base -> origin/gh/wconstab/446/base 2025-09-07T06:19:13.0742111Z * [new branch] gh/wconstab/446/head -> origin/gh/wconstab/446/head 2025-09-07T06:19:13.0742476Z * [new branch] gh/wconstab/446/orig -> origin/gh/wconstab/446/orig 2025-09-07T06:19:13.0742678Z * [new branch] gh/wconstab/447/base -> origin/gh/wconstab/447/base 2025-09-07T06:19:13.0742865Z * [new branch] gh/wconstab/447/head -> origin/gh/wconstab/447/head 2025-09-07T06:19:13.0743054Z * [new branch] gh/wconstab/447/orig -> origin/gh/wconstab/447/orig 2025-09-07T06:19:13.0743260Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-09-07T06:19:13.0743458Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-09-07T06:19:13.0743648Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-09-07T06:19:13.0743849Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-09-07T06:19:13.0744126Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-09-07T06:19:13.0744320Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-09-07T06:19:13.0744548Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-09-07T06:19:13.0744766Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-09-07T06:19:13.0744981Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-09-07T06:19:13.0745279Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-09-07T06:19:13.0745490Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-09-07T06:19:13.0745699Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-09-07T06:19:13.0745931Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-09-07T06:19:13.0746143Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-09-07T06:19:13.0746358Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-09-07T06:19:13.0746576Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-09-07T06:19:13.0746795Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-09-07T06:19:13.0747004Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-09-07T06:19:13.0747219Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-09-07T06:19:13.0747442Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-09-07T06:19:13.0747650Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-09-07T06:19:13.0747910Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-09-07T06:19:13.0748131Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-09-07T06:19:13.0748383Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-09-07T06:19:13.0748593Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-09-07T06:19:13.0748826Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-09-07T06:19:13.0749040Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-09-07T06:19:13.0749255Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-09-07T06:19:13.0749480Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-09-07T06:19:13.0749779Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-09-07T06:19:13.0749989Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-09-07T06:19:13.0750214Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-09-07T06:19:13.0750425Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-09-07T06:19:13.0750634Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-09-07T06:19:13.0750858Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-09-07T06:19:13.0751078Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-09-07T06:19:13.0751288Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-09-07T06:19:13.0752136Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-09-07T06:19:13.0752355Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-09-07T06:19:13.0752564Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-09-07T06:19:13.0752793Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-09-07T06:19:13.0753007Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-09-07T06:19:13.0753220Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-09-07T06:19:13.0753487Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-09-07T06:19:13.0753705Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-09-07T06:19:13.0753912Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-09-07T06:19:13.0754167Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-09-07T06:19:13.0754392Z * [new branch] gh/williamwen42/280/base -> origin/gh/williamwen42/280/base 2025-09-07T06:19:13.0754602Z * [new branch] gh/williamwen42/280/head -> origin/gh/williamwen42/280/head 2025-09-07T06:19:13.0754815Z * [new branch] gh/williamwen42/280/orig -> origin/gh/williamwen42/280/orig 2025-09-07T06:19:13.0755027Z * [new branch] gh/williamwen42/281/base -> origin/gh/williamwen42/281/base 2025-09-07T06:19:13.0755246Z * [new branch] gh/williamwen42/281/head -> origin/gh/williamwen42/281/head 2025-09-07T06:19:13.0755458Z * [new branch] gh/williamwen42/281/orig -> origin/gh/williamwen42/281/orig 2025-09-07T06:19:13.0755665Z * [new branch] gh/williamwen42/282/base -> origin/gh/williamwen42/282/base 2025-09-07T06:19:13.0755891Z * [new branch] gh/williamwen42/282/head -> origin/gh/williamwen42/282/head 2025-09-07T06:19:13.0756102Z * [new branch] gh/williamwen42/282/orig -> origin/gh/williamwen42/282/orig 2025-09-07T06:19:13.0756308Z * [new branch] gh/williamwen42/283/base -> origin/gh/williamwen42/283/base 2025-09-07T06:19:13.0756529Z * [new branch] gh/williamwen42/283/head -> origin/gh/williamwen42/283/head 2025-09-07T06:19:13.0756736Z * [new branch] gh/williamwen42/283/orig -> origin/gh/williamwen42/283/orig 2025-09-07T06:19:13.0756944Z * [new branch] gh/williamwen42/284/base -> origin/gh/williamwen42/284/base 2025-09-07T06:19:13.0757163Z * [new branch] gh/williamwen42/284/head -> origin/gh/williamwen42/284/head 2025-09-07T06:19:13.0757369Z * [new branch] gh/williamwen42/284/orig -> origin/gh/williamwen42/284/orig 2025-09-07T06:19:13.0757583Z * [new branch] gh/williamwen42/285/base -> origin/gh/williamwen42/285/base 2025-09-07T06:19:13.0757887Z * [new branch] gh/williamwen42/285/head -> origin/gh/williamwen42/285/head 2025-09-07T06:19:13.0758099Z * [new branch] gh/williamwen42/285/orig -> origin/gh/williamwen42/285/orig 2025-09-07T06:19:13.0758306Z * [new branch] gh/williamwen42/286/base -> origin/gh/williamwen42/286/base 2025-09-07T06:19:13.0758522Z * [new branch] gh/williamwen42/286/head -> origin/gh/williamwen42/286/head 2025-09-07T06:19:13.0758734Z * [new branch] gh/williamwen42/286/orig -> origin/gh/williamwen42/286/orig 2025-09-07T06:19:13.0758944Z * [new branch] gh/williamwen42/287/base -> origin/gh/williamwen42/287/base 2025-09-07T06:19:13.0759167Z * [new branch] gh/williamwen42/287/head -> origin/gh/williamwen42/287/head 2025-09-07T06:19:13.0759416Z * [new branch] gh/williamwen42/287/orig -> origin/gh/williamwen42/287/orig 2025-09-07T06:19:13.0759746Z * [new branch] gh/williamwen42/288/base -> origin/gh/williamwen42/288/base 2025-09-07T06:19:13.0759958Z * [new branch] gh/williamwen42/288/head -> origin/gh/williamwen42/288/head 2025-09-07T06:19:13.0760173Z * [new branch] gh/williamwen42/288/orig -> origin/gh/williamwen42/288/orig 2025-09-07T06:19:13.0760383Z * [new branch] gh/williamwen42/289/base -> origin/gh/williamwen42/289/base 2025-09-07T06:19:13.0760591Z * [new branch] gh/williamwen42/289/head -> origin/gh/williamwen42/289/head 2025-09-07T06:19:13.0760808Z * [new branch] gh/williamwen42/289/orig -> origin/gh/williamwen42/289/orig 2025-09-07T06:19:13.0760991Z * [new branch] gh/wychi/1/base -> origin/gh/wychi/1/base 2025-09-07T06:19:13.0761172Z * [new branch] gh/wychi/1/head -> origin/gh/wychi/1/head 2025-09-07T06:19:13.0761361Z * [new branch] gh/wychi/1/orig -> origin/gh/wychi/1/orig 2025-09-07T06:19:13.0761553Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-09-07T06:19:13.0761733Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-09-07T06:19:13.0761925Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-09-07T06:19:13.0762102Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-09-07T06:19:13.0762279Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-09-07T06:19:13.0762462Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-09-07T06:19:13.0762641Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-09-07T06:19:13.0762818Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-09-07T06:19:13.0763008Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-09-07T06:19:13.0763190Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-09-07T06:19:13.0763364Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-09-07T06:19:13.0763551Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-09-07T06:19:13.0763723Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-09-07T06:19:13.0763898Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-09-07T06:19:13.0764072Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-09-07T06:19:13.0764258Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-09-07T06:19:13.0764432Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-09-07T06:19:13.0764612Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-09-07T06:19:13.0765303Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-09-07T06:19:13.0765536Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-09-07T06:19:13.0765711Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-09-07T06:19:13.0765891Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-09-07T06:19:13.0766066Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-09-07T06:19:13.0766244Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-09-07T06:19:13.0766431Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-09-07T06:19:13.0766606Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-09-07T06:19:13.0766858Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-09-07T06:19:13.0767047Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-09-07T06:19:13.0767224Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-09-07T06:19:13.0767401Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-09-07T06:19:13.0767582Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-09-07T06:19:13.0767757Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-09-07T06:19:13.0767938Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-09-07T06:19:13.0768117Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-09-07T06:19:13.0768302Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-09-07T06:19:13.0768486Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-09-07T06:19:13.0768667Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-09-07T06:19:13.0768857Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-09-07T06:19:13.0769033Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-09-07T06:19:13.0769208Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-09-07T06:19:13.0769389Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-09-07T06:19:13.0769562Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-09-07T06:19:13.0769733Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-09-07T06:19:13.0769916Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-09-07T06:19:13.0770099Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-09-07T06:19:13.0770275Z * [new branch] gh/xmfan/278/base -> origin/gh/xmfan/278/base 2025-09-07T06:19:13.0770457Z * [new branch] gh/xmfan/278/head -> origin/gh/xmfan/278/head 2025-09-07T06:19:13.0770630Z * [new branch] gh/xmfan/278/orig -> origin/gh/xmfan/278/orig 2025-09-07T06:19:13.0770849Z * [new branch] gh/xmfan/279/base -> origin/gh/xmfan/279/base 2025-09-07T06:19:13.0771038Z * [new branch] gh/xmfan/279/head -> origin/gh/xmfan/279/head 2025-09-07T06:19:13.0771249Z * [new branch] gh/xmfan/279/orig -> origin/gh/xmfan/279/orig 2025-09-07T06:19:13.0771425Z * [new branch] gh/xmfan/280/base -> origin/gh/xmfan/280/base 2025-09-07T06:19:13.0771602Z * [new branch] gh/xmfan/280/head -> origin/gh/xmfan/280/head 2025-09-07T06:19:13.0771784Z * [new branch] gh/xmfan/280/orig -> origin/gh/xmfan/280/orig 2025-09-07T06:19:13.0772033Z * [new branch] gh/xmfan/281/base -> origin/gh/xmfan/281/base 2025-09-07T06:19:13.0772207Z * [new branch] gh/xmfan/281/head -> origin/gh/xmfan/281/head 2025-09-07T06:19:13.0772388Z * [new branch] gh/xmfan/281/orig -> origin/gh/xmfan/281/orig 2025-09-07T06:19:13.0772560Z * [new branch] gh/xmfan/282/base -> origin/gh/xmfan/282/base 2025-09-07T06:19:13.0772732Z * [new branch] gh/xmfan/282/head -> origin/gh/xmfan/282/head 2025-09-07T06:19:13.0772919Z * [new branch] gh/xmfan/283/base -> origin/gh/xmfan/283/base 2025-09-07T06:19:13.0773097Z * [new branch] gh/xmfan/283/head -> origin/gh/xmfan/283/head 2025-09-07T06:19:13.0773274Z * [new branch] gh/xmfan/283/orig -> origin/gh/xmfan/283/orig 2025-09-07T06:19:13.0773563Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-09-07T06:19:13.0773770Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-09-07T06:19:13.0773978Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-09-07T06:19:13.0774193Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-09-07T06:19:13.0774395Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-09-07T06:19:13.0774599Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-09-07T06:19:13.0774811Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-09-07T06:19:13.0775015Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-09-07T06:19:13.0775228Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-09-07T06:19:13.0775444Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-09-07T06:19:13.0775651Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-09-07T06:19:13.0775854Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-09-07T06:19:13.0776055Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-09-07T06:19:13.0776265Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-09-07T06:19:13.0776511Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-09-07T06:19:13.0776721Z * [new branch] gh/xuanzhang816/25/base -> origin/gh/xuanzhang816/25/base 2025-09-07T06:19:13.0776975Z * [new branch] gh/xuanzhang816/25/head -> origin/gh/xuanzhang816/25/head 2025-09-07T06:19:13.0777186Z * [new branch] gh/xuanzhang816/25/orig -> origin/gh/xuanzhang816/25/orig 2025-09-07T06:19:13.0777392Z * [new branch] gh/xuanzhang816/26/base -> origin/gh/xuanzhang816/26/base 2025-09-07T06:19:13.0777604Z * [new branch] gh/xuanzhang816/26/head -> origin/gh/xuanzhang816/26/head 2025-09-07T06:19:13.0777804Z * [new branch] gh/xuanzhang816/26/orig -> origin/gh/xuanzhang816/26/orig 2025-09-07T06:19:13.0777996Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-09-07T06:19:13.0778195Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-09-07T06:19:13.0778381Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-09-07T06:19:13.0778571Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-09-07T06:19:13.0778768Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-09-07T06:19:13.0779028Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-09-07T06:19:13.0779214Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-09-07T06:19:13.0779408Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-09-07T06:19:13.0779592Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-09-07T06:19:13.0779777Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-09-07T06:19:13.0779970Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-09-07T06:19:13.0780161Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-09-07T06:19:13.0780344Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-09-07T06:19:13.0780603Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-09-07T06:19:13.0780805Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-09-07T06:19:13.0780993Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-09-07T06:19:13.0781178Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-09-07T06:19:13.0781375Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-09-07T06:19:13.0781559Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-09-07T06:19:13.0781745Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-09-07T06:19:13.0781944Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-09-07T06:19:13.0782136Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-09-07T06:19:13.0782371Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-09-07T06:19:13.0782566Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-09-07T06:19:13.0782793Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-09-07T06:19:13.0782979Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-09-07T06:19:13.0783173Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-09-07T06:19:13.0783356Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-09-07T06:19:13.0783544Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-09-07T06:19:13.0783739Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-09-07T06:19:13.0783927Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-09-07T06:19:13.0784116Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-09-07T06:19:13.0784309Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-09-07T06:19:13.0784494Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-09-07T06:19:13.0784680Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-09-07T06:19:13.0784870Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-09-07T06:19:13.0785134Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-09-07T06:19:13.0785325Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-09-07T06:19:13.0785514Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-09-07T06:19:13.0785719Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-09-07T06:19:13.0785983Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-09-07T06:19:13.0786168Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-09-07T06:19:13.0786365Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-09-07T06:19:13.0786550Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-09-07T06:19:13.0786734Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-09-07T06:19:13.0786940Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-09-07T06:19:13.0787129Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-09-07T06:19:13.0787319Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-09-07T06:19:13.0787582Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-09-07T06:19:13.0787766Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-09-07T06:19:13.0787995Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-09-07T06:19:13.0788196Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-09-07T06:19:13.0788417Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-09-07T06:19:13.0788605Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-09-07T06:19:13.0788800Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-09-07T06:19:13.0788991Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-09-07T06:19:13.0789186Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-09-07T06:19:13.0789373Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-09-07T06:19:13.0789570Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-09-07T06:19:13.0789754Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-09-07T06:19:13.0789938Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-09-07T06:19:13.0790132Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-09-07T06:19:13.0790316Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-09-07T06:19:13.0790500Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-09-07T06:19:13.0790694Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-09-07T06:19:13.0790882Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-09-07T06:19:13.0791074Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-09-07T06:19:13.0791270Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-09-07T06:19:13.0791457Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-09-07T06:19:13.0791640Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-09-07T06:19:13.0791831Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-09-07T06:19:13.0792014Z * [new branch] gh/yangw-dev/20/base -> origin/gh/yangw-dev/20/base 2025-09-07T06:19:13.0792198Z * [new branch] gh/yangw-dev/20/head -> origin/gh/yangw-dev/20/head 2025-09-07T06:19:13.0792392Z * [new branch] gh/yangw-dev/20/orig -> origin/gh/yangw-dev/20/orig 2025-09-07T06:19:13.0792658Z * [new branch] gh/yangw-dev/21/base -> origin/gh/yangw-dev/21/base 2025-09-07T06:19:13.0792845Z * [new branch] gh/yangw-dev/21/head -> origin/gh/yangw-dev/21/head 2025-09-07T06:19:13.0793036Z * [new branch] gh/yangw-dev/21/orig -> origin/gh/yangw-dev/21/orig 2025-09-07T06:19:13.0793220Z * [new branch] gh/yangw-dev/22/base -> origin/gh/yangw-dev/22/base 2025-09-07T06:19:13.0793403Z * [new branch] gh/yangw-dev/22/head -> origin/gh/yangw-dev/22/head 2025-09-07T06:19:13.0793587Z * [new branch] gh/yangw-dev/22/orig -> origin/gh/yangw-dev/22/orig 2025-09-07T06:19:13.0793837Z * [new branch] gh/yangw-dev/23/base -> origin/gh/yangw-dev/23/base 2025-09-07T06:19:13.0794026Z * [new branch] gh/yangw-dev/23/head -> origin/gh/yangw-dev/23/head 2025-09-07T06:19:13.0794333Z * [new branch] gh/yangw-dev/23/orig -> origin/gh/yangw-dev/23/orig 2025-09-07T06:19:13.0794535Z * [new branch] gh/yangw-dev/24/base -> origin/gh/yangw-dev/24/base 2025-09-07T06:19:13.0794721Z * [new branch] gh/yangw-dev/24/head -> origin/gh/yangw-dev/24/head 2025-09-07T06:19:13.0794905Z * [new branch] gh/yangw-dev/24/orig -> origin/gh/yangw-dev/24/orig 2025-09-07T06:19:13.0795096Z * [new branch] gh/yangw-dev/25/base -> origin/gh/yangw-dev/25/base 2025-09-07T06:19:13.0795281Z * [new branch] gh/yangw-dev/25/head -> origin/gh/yangw-dev/25/head 2025-09-07T06:19:13.0795467Z * [new branch] gh/yangw-dev/25/orig -> origin/gh/yangw-dev/25/orig 2025-09-07T06:19:13.0795658Z * [new branch] gh/yangw-dev/26/base -> origin/gh/yangw-dev/26/base 2025-09-07T06:19:13.0795841Z * [new branch] gh/yangw-dev/26/head -> origin/gh/yangw-dev/26/head 2025-09-07T06:19:13.0796033Z * [new branch] gh/yangw-dev/26/orig -> origin/gh/yangw-dev/26/orig 2025-09-07T06:19:13.0796232Z * [new branch] gh/yangw-dev/27/base -> origin/gh/yangw-dev/27/base 2025-09-07T06:19:13.0796415Z * [new branch] gh/yangw-dev/27/head -> origin/gh/yangw-dev/27/head 2025-09-07T06:19:13.0796601Z * [new branch] gh/yangw-dev/27/orig -> origin/gh/yangw-dev/27/orig 2025-09-07T06:19:13.0796788Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-09-07T06:19:13.0796962Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-09-07T06:19:13.0797137Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-09-07T06:19:13.0797321Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-09-07T06:19:13.0797497Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-09-07T06:19:13.0797679Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-09-07T06:19:13.0797856Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-09-07T06:19:13.0798039Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-09-07T06:19:13.0798215Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-09-07T06:19:13.0798391Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-09-07T06:19:13.0798580Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-09-07T06:19:13.0798757Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-09-07T06:19:13.0798939Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-09-07T06:19:13.0799129Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-09-07T06:19:13.0799377Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-09-07T06:19:13.0799597Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-09-07T06:19:13.0799785Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-09-07T06:19:13.0800003Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-09-07T06:19:13.0800178Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-09-07T06:19:13.0800366Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-09-07T06:19:13.0800541Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-09-07T06:19:13.0800717Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-09-07T06:19:13.0800898Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-09-07T06:19:13.0801149Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-09-07T06:19:13.0801321Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-09-07T06:19:13.0801494Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-09-07T06:19:13.0801683Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-09-07T06:19:13.0801857Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-09-07T06:19:13.0802029Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-09-07T06:19:13.0802208Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-09-07T06:19:13.0802381Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-09-07T06:19:13.0802553Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-09-07T06:19:13.0802742Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-09-07T06:19:13.0802919Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-09-07T06:19:13.0803094Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-09-07T06:19:13.0803278Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-09-07T06:19:13.0803467Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-09-07T06:19:13.0803644Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-09-07T06:19:13.0803816Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-09-07T06:19:13.0804001Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-09-07T06:19:13.0804174Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-09-07T06:19:13.0804353Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-09-07T06:19:13.0804536Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-09-07T06:19:13.0804708Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-09-07T06:19:13.0804880Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-09-07T06:19:13.0805057Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-09-07T06:19:13.0805270Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-09-07T06:19:13.0805442Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-09-07T06:19:13.0805654Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-09-07T06:19:13.0805848Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-09-07T06:19:13.0806093Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-09-07T06:19:13.0806266Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-09-07T06:19:13.0806450Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-09-07T06:19:13.0806620Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-09-07T06:19:13.0806795Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-09-07T06:19:13.0806973Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-09-07T06:19:13.0807143Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-09-07T06:19:13.0807318Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-09-07T06:19:13.0807571Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-09-07T06:19:13.0807747Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-09-07T06:19:13.0807920Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-09-07T06:19:13.0808102Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-09-07T06:19:13.0808275Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-09-07T06:19:13.0808450Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-09-07T06:19:13.0808631Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-09-07T06:19:13.0808808Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-09-07T06:19:13.0808980Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-09-07T06:19:13.0809154Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-09-07T06:19:13.0809338Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-09-07T06:19:13.0809510Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-09-07T06:19:13.0809681Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-09-07T06:19:13.0809866Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-09-07T06:19:13.0810042Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-09-07T06:19:13.0810215Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-09-07T06:19:13.0810400Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-09-07T06:19:13.0810573Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-09-07T06:19:13.0810782Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-09-07T06:19:13.0811005Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-09-07T06:19:13.0811181Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-09-07T06:19:13.0811354Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-09-07T06:19:13.0811578Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-09-07T06:19:13.0811754Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-09-07T06:19:13.0811929Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-09-07T06:19:13.0812114Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-09-07T06:19:13.0812288Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-09-07T06:19:13.0812473Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-09-07T06:19:13.0812727Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-09-07T06:19:13.0812899Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-09-07T06:19:13.0813073Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-09-07T06:19:13.0813246Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-09-07T06:19:13.0813423Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-09-07T06:19:13.0813596Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-09-07T06:19:13.0813766Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-09-07T06:19:13.0813956Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-09-07T06:19:13.0814196Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-09-07T06:19:13.0814376Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-09-07T06:19:13.0814556Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-09-07T06:19:13.0814731Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-09-07T06:19:13.0814909Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-09-07T06:19:13.0815095Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-09-07T06:19:13.0815275Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-09-07T06:19:13.0815457Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-09-07T06:19:13.0815654Z * [new branch] gh/ydwu4/312/base -> origin/gh/ydwu4/312/base 2025-09-07T06:19:13.0815835Z * [new branch] gh/ydwu4/312/head -> origin/gh/ydwu4/312/head 2025-09-07T06:19:13.0816009Z * [new branch] gh/ydwu4/312/orig -> origin/gh/ydwu4/312/orig 2025-09-07T06:19:13.0816195Z * [new branch] gh/ydwu4/313/base -> origin/gh/ydwu4/313/base 2025-09-07T06:19:13.0816372Z * [new branch] gh/ydwu4/313/head -> origin/gh/ydwu4/313/head 2025-09-07T06:19:13.0816548Z * [new branch] gh/ydwu4/313/orig -> origin/gh/ydwu4/313/orig 2025-09-07T06:19:13.0816760Z * [new branch] gh/ydwu4/314/base -> origin/gh/ydwu4/314/base 2025-09-07T06:19:13.0816941Z * [new branch] gh/ydwu4/314/head -> origin/gh/ydwu4/314/head 2025-09-07T06:19:13.0817112Z * [new branch] gh/ydwu4/314/orig -> origin/gh/ydwu4/314/orig 2025-09-07T06:19:13.0817328Z * [new branch] gh/ydwu4/315/base -> origin/gh/ydwu4/315/base 2025-09-07T06:19:13.0817522Z * [new branch] gh/ydwu4/315/head -> origin/gh/ydwu4/315/head 2025-09-07T06:19:13.0817694Z * [new branch] gh/ydwu4/315/orig -> origin/gh/ydwu4/315/orig 2025-09-07T06:19:13.0817871Z * [new branch] gh/ydwu4/316/base -> origin/gh/ydwu4/316/base 2025-09-07T06:19:13.0818056Z * [new branch] gh/ydwu4/316/head -> origin/gh/ydwu4/316/head 2025-09-07T06:19:13.0818228Z * [new branch] gh/ydwu4/316/orig -> origin/gh/ydwu4/316/orig 2025-09-07T06:19:13.0818400Z * [new branch] gh/ydwu4/317/base -> origin/gh/ydwu4/317/base 2025-09-07T06:19:13.0818582Z * [new branch] gh/ydwu4/317/head -> origin/gh/ydwu4/317/head 2025-09-07T06:19:13.0818756Z * [new branch] gh/ydwu4/317/orig -> origin/gh/ydwu4/317/orig 2025-09-07T06:19:13.0818929Z * [new branch] gh/ydwu4/318/base -> origin/gh/ydwu4/318/base 2025-09-07T06:19:13.0819186Z * [new branch] gh/ydwu4/318/head -> origin/gh/ydwu4/318/head 2025-09-07T06:19:13.0819363Z * [new branch] gh/ydwu4/318/orig -> origin/gh/ydwu4/318/orig 2025-09-07T06:19:13.0819536Z * [new branch] gh/ydwu4/319/base -> origin/gh/ydwu4/319/base 2025-09-07T06:19:13.0819716Z * [new branch] gh/ydwu4/319/head -> origin/gh/ydwu4/319/head 2025-09-07T06:19:13.0819894Z * [new branch] gh/ydwu4/319/orig -> origin/gh/ydwu4/319/orig 2025-09-07T06:19:13.0820068Z * [new branch] gh/ydwu4/320/base -> origin/gh/ydwu4/320/base 2025-09-07T06:19:13.0820244Z * [new branch] gh/ydwu4/320/head -> origin/gh/ydwu4/320/head 2025-09-07T06:19:13.0820431Z * [new branch] gh/ydwu4/320/orig -> origin/gh/ydwu4/320/orig 2025-09-07T06:19:13.0820602Z * [new branch] gh/ydwu4/321/base -> origin/gh/ydwu4/321/base 2025-09-07T06:19:13.0820873Z * [new branch] gh/ydwu4/321/head -> origin/gh/ydwu4/321/head 2025-09-07T06:19:13.0821059Z * [new branch] gh/ydwu4/321/orig -> origin/gh/ydwu4/321/orig 2025-09-07T06:19:13.0821231Z * [new branch] gh/ydwu4/322/base -> origin/gh/ydwu4/322/base 2025-09-07T06:19:13.0821405Z * [new branch] gh/ydwu4/322/head -> origin/gh/ydwu4/322/head 2025-09-07T06:19:13.0821588Z * [new branch] gh/ydwu4/322/orig -> origin/gh/ydwu4/322/orig 2025-09-07T06:19:13.0821767Z * [new branch] gh/ydwu4/323/base -> origin/gh/ydwu4/323/base 2025-09-07T06:19:13.0821945Z * [new branch] gh/ydwu4/323/head -> origin/gh/ydwu4/323/head 2025-09-07T06:19:13.0822129Z * [new branch] gh/ydwu4/323/orig -> origin/gh/ydwu4/323/orig 2025-09-07T06:19:13.0822309Z * [new branch] gh/ydwu4/324/base -> origin/gh/ydwu4/324/base 2025-09-07T06:19:13.0822527Z * [new branch] gh/ydwu4/324/head -> origin/gh/ydwu4/324/head 2025-09-07T06:19:13.0822709Z * [new branch] gh/ydwu4/324/orig -> origin/gh/ydwu4/324/orig 2025-09-07T06:19:13.0822879Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-09-07T06:19:13.0823094Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-09-07T06:19:13.0823279Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-09-07T06:19:13.0823449Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-09-07T06:19:13.0823620Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-09-07T06:19:13.0823796Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-09-07T06:19:13.0823974Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-09-07T06:19:13.0824149Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-09-07T06:19:13.0824319Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-09-07T06:19:13.0824493Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-09-07T06:19:13.0824685Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-09-07T06:19:13.0824880Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-09-07T06:19:13.0825145Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-09-07T06:19:13.0825337Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-09-07T06:19:13.0825528Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-09-07T06:19:13.0825736Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-09-07T06:19:13.0826006Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-09-07T06:19:13.0826201Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-09-07T06:19:13.0826401Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-09-07T06:19:13.0826592Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-09-07T06:19:13.0826785Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-09-07T06:19:13.0826988Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-09-07T06:19:13.0827182Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-09-07T06:19:13.0827379Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-09-07T06:19:13.0827650Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-09-07T06:19:13.0827838Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-09-07T06:19:13.0828032Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-09-07T06:19:13.0828262Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-09-07T06:19:13.0828467Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-09-07T06:19:13.0828654Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-09-07T06:19:13.0828883Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-09-07T06:19:13.0829079Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-09-07T06:19:13.0829269Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-09-07T06:19:13.0829461Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-09-07T06:19:13.0829659Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-09-07T06:19:13.0829845Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-09-07T06:19:13.0830036Z * [new branch] gh/zhxchen17/37/base -> origin/gh/zhxchen17/37/base 2025-09-07T06:19:13.0830234Z * [new branch] gh/zhxchen17/37/head -> origin/gh/zhxchen17/37/head 2025-09-07T06:19:13.0830424Z * [new branch] gh/zhxchen17/37/orig -> origin/gh/zhxchen17/37/orig 2025-09-07T06:19:13.0830610Z * [new branch] gh/zhxchen17/38/base -> origin/gh/zhxchen17/38/base 2025-09-07T06:19:13.0830803Z * [new branch] gh/zhxchen17/38/head -> origin/gh/zhxchen17/38/head 2025-09-07T06:19:13.0830990Z * [new branch] gh/zhxchen17/38/orig -> origin/gh/zhxchen17/38/orig 2025-09-07T06:19:13.0831181Z * [new branch] gh/zhxchen17/39/base -> origin/gh/zhxchen17/39/base 2025-09-07T06:19:13.0831382Z * [new branch] gh/zhxchen17/39/head -> origin/gh/zhxchen17/39/head 2025-09-07T06:19:13.0831571Z * [new branch] gh/zhxchen17/39/orig -> origin/gh/zhxchen17/39/orig 2025-09-07T06:19:13.0831760Z * [new branch] gh/zhxchen17/40/base -> origin/gh/zhxchen17/40/base 2025-09-07T06:19:13.0831960Z * [new branch] gh/zhxchen17/40/head -> origin/gh/zhxchen17/40/head 2025-09-07T06:19:13.0832147Z * [new branch] gh/zhxchen17/40/orig -> origin/gh/zhxchen17/40/orig 2025-09-07T06:19:13.0832333Z * [new branch] gh/zhxchen17/41/base -> origin/gh/zhxchen17/41/base 2025-09-07T06:19:13.0832523Z * [new branch] gh/zhxchen17/41/head -> origin/gh/zhxchen17/41/head 2025-09-07T06:19:13.0832792Z * [new branch] gh/zhxchen17/41/orig -> origin/gh/zhxchen17/41/orig 2025-09-07T06:19:13.0832981Z * [new branch] gh/zhxchen17/42/base -> origin/gh/zhxchen17/42/base 2025-09-07T06:19:13.0833167Z * [new branch] gh/zhxchen17/42/head -> origin/gh/zhxchen17/42/head 2025-09-07T06:19:13.0833367Z * [new branch] gh/zhxchen17/42/orig -> origin/gh/zhxchen17/42/orig 2025-09-07T06:19:13.0833554Z * [new branch] gh/zhxchen17/43/base -> origin/gh/zhxchen17/43/base 2025-09-07T06:19:13.0833740Z * [new branch] gh/zhxchen17/43/head -> origin/gh/zhxchen17/43/head 2025-09-07T06:19:13.0833940Z * [new branch] gh/zhxchen17/43/orig -> origin/gh/zhxchen17/43/orig 2025-09-07T06:19:13.0834177Z * [new branch] gh/zhxchen17/44/base -> origin/gh/zhxchen17/44/base 2025-09-07T06:19:13.0834370Z * [new branch] gh/zhxchen17/44/head -> origin/gh/zhxchen17/44/head 2025-09-07T06:19:13.0834683Z * [new branch] gh/zhxchen17/44/orig -> origin/gh/zhxchen17/44/orig 2025-09-07T06:19:13.0834871Z * [new branch] gh/zhxchen17/45/base -> origin/gh/zhxchen17/45/base 2025-09-07T06:19:13.0835059Z * [new branch] gh/zhxchen17/45/head -> origin/gh/zhxchen17/45/head 2025-09-07T06:19:13.0835254Z * [new branch] gh/zhxchen17/45/orig -> origin/gh/zhxchen17/45/orig 2025-09-07T06:19:13.0835433Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-09-07T06:19:13.0835609Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-09-07T06:19:13.0835792Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-09-07T06:19:13.0835973Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-09-07T06:19:13.0836155Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-09-07T06:19:13.0836335Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-09-07T06:19:13.0836522Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-09-07T06:19:13.0836700Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-09-07T06:19:13.0836878Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-09-07T06:19:13.0837063Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-09-07T06:19:13.0837239Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-09-07T06:19:13.0837416Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-09-07T06:19:13.0837605Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-09-07T06:19:13.0837783Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-09-07T06:19:13.0837960Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-09-07T06:19:13.0838143Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-09-07T06:19:13.0838320Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-09-07T06:19:13.0838498Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-09-07T06:19:13.0838683Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-09-07T06:19:13.0838858Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-09-07T06:19:13.0839033Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-09-07T06:19:13.0839222Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-09-07T06:19:13.0839400Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-09-07T06:19:13.0839646Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-09-07T06:19:13.0839866Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-09-07T06:19:13.0840050Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-09-07T06:19:13.0840264Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-09-07T06:19:13.0840442Z * [new branch] gh/zklaus/20/base -> origin/gh/zklaus/20/base 2025-09-07T06:19:13.0840628Z * [new branch] gh/zklaus/20/head -> origin/gh/zklaus/20/head 2025-09-07T06:19:13.0840805Z * [new branch] gh/zklaus/20/orig -> origin/gh/zklaus/20/orig 2025-09-07T06:19:13.0840986Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-09-07T06:19:13.0841246Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-09-07T06:19:13.0841427Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-09-07T06:19:13.0841598Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-09-07T06:19:13.0841777Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-09-07T06:19:13.0841950Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-09-07T06:19:13.0842140Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-09-07T06:19:13.0842336Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-09-07T06:19:13.0842520Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-09-07T06:19:13.0842702Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-09-07T06:19:13.0842902Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-09-07T06:19:13.0843083Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-09-07T06:19:13.0843264Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-09-07T06:19:13.0843454Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-09-07T06:19:13.0843636Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-09-07T06:19:13.0843819Z * [new branch] gh/zou3519/1192/base -> origin/gh/zou3519/1192/base 2025-09-07T06:19:13.0844008Z * [new branch] gh/zou3519/1192/head -> origin/gh/zou3519/1192/head 2025-09-07T06:19:13.0844198Z * [new branch] gh/zou3519/1192/orig -> origin/gh/zou3519/1192/orig 2025-09-07T06:19:13.0844381Z * [new branch] gh/zou3519/1193/base -> origin/gh/zou3519/1193/base 2025-09-07T06:19:13.0844568Z * [new branch] gh/zou3519/1193/head -> origin/gh/zou3519/1193/head 2025-09-07T06:19:13.0844763Z * [new branch] gh/zou3519/1193/orig -> origin/gh/zou3519/1193/orig 2025-09-07T06:19:13.0844945Z * [new branch] gh/zou3519/1194/base -> origin/gh/zou3519/1194/base 2025-09-07T06:19:13.0845128Z * [new branch] gh/zou3519/1194/head -> origin/gh/zou3519/1194/head 2025-09-07T06:19:13.0845320Z * [new branch] gh/zou3519/1194/orig -> origin/gh/zou3519/1194/orig 2025-09-07T06:19:13.0845542Z * [new branch] gh/zou3519/1195/base -> origin/gh/zou3519/1195/base 2025-09-07T06:19:13.0845726Z * [new branch] gh/zou3519/1195/head -> origin/gh/zou3519/1195/head 2025-09-07T06:19:13.0845914Z * [new branch] gh/zou3519/1195/orig -> origin/gh/zou3519/1195/orig 2025-09-07T06:19:13.0846102Z * [new branch] gh/zou3519/1196/base -> origin/gh/zou3519/1196/base 2025-09-07T06:19:13.0846400Z * [new branch] gh/zou3519/1196/head -> origin/gh/zou3519/1196/head 2025-09-07T06:19:13.0846589Z * [new branch] gh/zou3519/1196/orig -> origin/gh/zou3519/1196/orig 2025-09-07T06:19:13.0846774Z * [new branch] gh/zou3519/1197/base -> origin/gh/zou3519/1197/base 2025-09-07T06:19:13.0846956Z * [new branch] gh/zou3519/1197/head -> origin/gh/zou3519/1197/head 2025-09-07T06:19:13.0847152Z * [new branch] gh/zou3519/1197/orig -> origin/gh/zou3519/1197/orig 2025-09-07T06:19:13.0847337Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-09-07T06:19:13.0847517Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-09-07T06:19:13.0847709Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-09-07T06:19:13.0847964Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-09-07T06:19:13.0848145Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-09-07T06:19:13.0848323Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-09-07T06:19:13.0848509Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-09-07T06:19:13.0848685Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-09-07T06:19:13.0848860Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-09-07T06:19:13.0849046Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-09-07T06:19:13.0849226Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-09-07T06:19:13.0849405Z * [new branch] gh/zpcore/13/base -> origin/gh/zpcore/13/base 2025-09-07T06:19:13.0849596Z * [new branch] gh/zpcore/13/head -> origin/gh/zpcore/13/head 2025-09-07T06:19:13.0849777Z * [new branch] gh/zpcore/13/orig -> origin/gh/zpcore/13/orig 2025-09-07T06:19:13.0849955Z * [new branch] gh/zpcore/14/base -> origin/gh/zpcore/14/base 2025-09-07T06:19:13.0850139Z * [new branch] gh/zpcore/14/head -> origin/gh/zpcore/14/head 2025-09-07T06:19:13.0850314Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-09-07T06:19:13.0850490Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-09-07T06:19:13.0850671Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-09-07T06:19:13.0850844Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-09-07T06:19:13.0851022Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-09-07T06:19:13.0851209Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-09-07T06:19:13.0851381Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-09-07T06:19:13.0851597Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-09-07T06:19:13.0851772Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-09-07T06:19:13.0851983Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-09-07T06:19:13.0852162Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-09-07T06:19:13.0852334Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-09-07T06:19:13.0852514Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-09-07T06:19:13.0852686Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-09-07T06:19:13.0852858Z * [new branch] google-main -> origin/google-main 2025-09-07T06:19:13.0853153Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-09-07T06:19:13.0853349Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-09-07T06:19:13.0853533Z * [new branch] guangyey/reimport -> origin/guangyey/reimport 2025-09-07T06:19:13.0853730Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-09-07T06:19:13.0854085Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-09-07T06:19:13.0854310Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-09-07T06:19:13.0854480Z * [new branch] hc_baseline -> origin/hc_baseline 2025-09-07T06:19:13.0854700Z * [new branch] hf_update -> origin/hf_update 2025-09-07T06:19:13.0854871Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-09-07T06:19:13.0855032Z * [new branch] hhh_rand -> origin/hhh_rand 2025-09-07T06:19:13.0855201Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-09-07T06:19:13.0855393Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-09-07T06:19:13.0855669Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-09-07T06:19:13.0855905Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-09-07T06:19:13.0856129Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-09-07T06:19:13.0856321Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-09-07T06:19:13.0856478Z * [new branch] inline -> origin/inline 2025-09-07T06:19:13.0856639Z * [new branch] inlining -> origin/inlining 2025-09-07T06:19:13.0856817Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-09-07T06:19:13.0857034Z * [new branch] install-torchao-0.13.0 -> origin/install-torchao-0.13.0 2025-09-07T06:19:13.0857190Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-09-07T06:19:13.0857414Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-09-07T06:19:13.0857580Z * [new branch] issue#58739 -> origin/issue#58739 2025-09-07T06:19:13.0857934Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-09-07T06:19:13.0858200Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-09-07T06:19:13.0858502Z * [new branch] jeanschmidt/disable_rocm_build_tests -> origin/jeanschmidt/disable_rocm_build_tests 2025-09-07T06:19:13.0858725Z * [new branch] jithunnair-amd-patch-1 -> origin/jithunnair-amd-patch-1 2025-09-07T06:19:13.0858939Z * [new branch] jithunnair-amd-patch-2 -> origin/jithunnair-amd-patch-2 2025-09-07T06:19:13.0859179Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-09-07T06:19:13.0859411Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-09-07T06:19:13.0859593Z * [new branch] justinchu/ort-122 -> origin/justinchu/ort-122 2025-09-07T06:19:13.0859816Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-09-07T06:19:13.0860002Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-09-07T06:19:13.0860165Z * [new branch] kainan_test -> origin/kainan_test 2025-09-07T06:19:13.0860416Z * [new branch] learnablebias -> origin/learnablebias 2025-09-07T06:19:13.0860690Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-09-07T06:19:13.0860952Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-09-07T06:19:13.0861157Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-09-07T06:19:13.0861418Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-09-07T06:19:13.0861625Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-09-07T06:19:13.0861811Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-09-07T06:19:13.0861993Z * [new branch] llama4-stable -> origin/llama4-stable 2025-09-07T06:19:13.0862674Z * [new branch] logdetfix -> origin/logdetfix 2025-09-07T06:19:13.0862850Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-09-07T06:19:13.0863103Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-09-07T06:19:13.0863322Z * [new branch] lucaskabela/flop_counter -> origin/lucaskabela/flop_counter 2025-09-07T06:19:13.0863611Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-09-07T06:19:13.0863889Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-09-07T06:19:13.0864210Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-09-07T06:19:13.0864424Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-09-07T06:19:13.0864688Z * [new branch] lucaskabela/misc_typing_dynamo -> origin/lucaskabela/misc_typing_dynamo 2025-09-07T06:19:13.0864988Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-09-07T06:19:13.0865403Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-09-07T06:19:13.0865625Z * [new branch] lucaskabela/rnn_decomp -> origin/lucaskabela/rnn_decomp 2025-09-07T06:19:13.0865859Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-09-07T06:19:13.0866145Z * [new branch] lucaskabela/typing_symbolic_convert -> origin/lucaskabela/typing_symbolic_convert 2025-09-07T06:19:13.0866464Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-09-07T06:19:13.0866611Z * [new branch] main -> origin/main 2025-09-07T06:19:13.0866928Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-09-07T06:19:13.0867124Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-09-07T06:19:13.0867307Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-09-07T06:19:13.0867491Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-09-07T06:19:13.0867677Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-09-07T06:19:13.0867851Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-09-07T06:19:13.0868294Z * [new branch] malfet/be-move-more-settings-to-checkout-pytorch -> origin/malfet/be-move-more-settings-to-checkout-pytorch 2025-09-07T06:19:13.0868530Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-09-07T06:19:13.0868823Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-09-07T06:19:13.0869261Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-09-07T06:19:13.0869460Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-09-07T06:19:13.0869663Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-09-07T06:19:13.0869822Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-09-07T06:19:13.0870009Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-09-07T06:19:13.0870255Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-09-07T06:19:13.0870458Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-09-07T06:19:13.0870635Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-09-07T06:19:13.0870964Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-09-07T06:19:13.0871153Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-09-07T06:19:13.0871336Z * [new branch] mlazos/better-msg -> origin/mlazos/better-msg 2025-09-07T06:19:13.0871517Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-09-07T06:19:13.0871695Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-09-07T06:19:13.0871868Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-09-07T06:19:13.0872037Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-09-07T06:19:13.0872239Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-09-07T06:19:13.0872428Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-09-07T06:19:13.0872637Z * [new branch] mlazos/cuda-cmd-log -> origin/mlazos/cuda-cmd-log 2025-09-07T06:19:13.0872852Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-09-07T06:19:13.0873112Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-09-07T06:19:13.0873304Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-09-07T06:19:13.0873529Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-09-07T06:19:13.0873716Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-09-07T06:19:13.0873901Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-09-07T06:19:13.0874093Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-09-07T06:19:13.0874306Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-09-07T06:19:13.0874519Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-09-07T06:19:13.0874707Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-09-07T06:19:13.0874882Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-09-07T06:19:13.0875137Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-09-07T06:19:13.0875330Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-09-07T06:19:13.0875507Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-09-07T06:19:13.0875684Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-09-07T06:19:13.0875852Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-09-07T06:19:13.0876044Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-09-07T06:19:13.0876752Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-09-07T06:19:13.0876960Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-09-07T06:19:13.0877117Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-09-07T06:19:13.0877295Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-09-07T06:19:13.0877518Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-09-07T06:19:13.0877697Z * [new branch] mlazos/fp8-fixes -> origin/mlazos/fp8-fixes 2025-09-07T06:19:13.0877876Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-09-07T06:19:13.0878048Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-09-07T06:19:13.0878309Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-09-07T06:19:13.0878487Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-09-07T06:19:13.0878642Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-09-07T06:19:13.0878830Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-09-07T06:19:13.0879003Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-09-07T06:19:13.0879184Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-09-07T06:19:13.0879371Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-09-07T06:19:13.0879544Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-09-07T06:19:13.0879713Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-09-07T06:19:13.0879891Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-09-07T06:19:13.0880054Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-09-07T06:19:13.0880255Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-09-07T06:19:13.0880422Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-09-07T06:19:13.0880576Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-09-07T06:19:13.0880781Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-09-07T06:19:13.0880951Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-09-07T06:19:13.0881109Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-09-07T06:19:13.0881262Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-09-07T06:19:13.0881413Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-09-07T06:19:13.0881585Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-09-07T06:19:13.0881739Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-09-07T06:19:13.0881889Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-09-07T06:19:13.0882089Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-09-07T06:19:13.0882300Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-09-07T06:19:13.0882494Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-09-07T06:19:13.0882688Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-09-07T06:19:13.0882898Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-09-07T06:19:13.0883053Z * [new branch] mlazos/main -> origin/mlazos/main 2025-09-07T06:19:13.0883373Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-09-07T06:19:13.0883543Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-09-07T06:19:13.0883766Z * [new branch] mlazos/mark-static-update -> origin/mlazos/mark-static-update 2025-09-07T06:19:13.0883929Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-09-07T06:19:13.0884086Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-09-07T06:19:13.0884273Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-09-07T06:19:13.0884463Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-09-07T06:19:13.0884727Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-09-07T06:19:13.0885032Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-09-07T06:19:13.0885206Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-09-07T06:19:13.0885391Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-09-07T06:19:13.0885578Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-09-07T06:19:13.0885747Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-09-07T06:19:13.0886053Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-09-07T06:19:13.0886223Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-09-07T06:19:13.0886464Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-09-07T06:19:13.0886646Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-09-07T06:19:13.0886841Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-09-07T06:19:13.0887021Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-09-07T06:19:13.0887209Z * [new branch] mlazos/resnet-fix -> origin/mlazos/resnet-fix 2025-09-07T06:19:13.0887403Z * [new branch] mlazos/revert-inline -> origin/mlazos/revert-inline 2025-09-07T06:19:13.0887590Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-09-07T06:19:13.0887763Z * [new branch] mlazos/rm-code -> origin/mlazos/rm-code 2025-09-07T06:19:13.0887931Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-09-07T06:19:13.0888089Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-09-07T06:19:13.0888303Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-09-07T06:19:13.0888527Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-09-07T06:19:13.0888728Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-09-07T06:19:13.0888896Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-09-07T06:19:13.0889111Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-09-07T06:19:13.0889269Z * [new branch] mlazos/test -> origin/mlazos/test 2025-09-07T06:19:13.0889437Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-09-07T06:19:13.0889647Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-09-07T06:19:13.0889845Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-09-07T06:19:13.0890043Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-09-07T06:19:13.0890320Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-09-07T06:19:13.0890503Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-09-07T06:19:13.0890700Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-09-07T06:19:13.0890890Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-09-07T06:19:13.0891078Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-09-07T06:19:13.0891278Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-09-07T06:19:13.0891495Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-09-07T06:19:13.0891733Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-09-07T06:19:13.0891911Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-09-07T06:19:13.0892219Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-09-07T06:19:13.0892409Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-09-07T06:19:13.0892602Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-09-07T06:19:13.0892799Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-09-07T06:19:13.0892968Z * [new branch] module-shim -> origin/module-shim 2025-09-07T06:19:13.0893175Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-09-07T06:19:13.0893344Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-09-07T06:19:13.0893535Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-09-07T06:19:13.0893777Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-09-07T06:19:13.0893964Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-09-07T06:19:13.0894151Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-09-07T06:19:13.0894304Z * [new branch] muon_dev -> origin/muon_dev 2025-09-07T06:19:13.0894457Z * [new branch] muon_dev_1 -> origin/muon_dev_1 2025-09-07T06:19:13.0894661Z * [new branch] nativert_num_outputs -> origin/nativert_num_outputs 2025-09-07T06:19:13.0894855Z * [new branch] nativert_numoutputs -> origin/nativert_numoutputs 2025-09-07T06:19:13.0895064Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-09-07T06:19:13.0895238Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-09-07T06:19:13.0895411Z * [new branch] new_zeros_dtype -> origin/new_zeros_dtype 2025-09-07T06:19:13.0895582Z * [new branch] newtest-base -> origin/newtest-base 2025-09-07T06:19:13.0895767Z * [new branch] ngimel/cat_perf1 -> origin/ngimel/cat_perf1 2025-09-07T06:19:13.0895948Z * [new branch] ngimel/einsum_fix -> origin/ngimel/einsum_fix 2025-09-07T06:19:13.0896154Z * [new branch] ngimel/error_index_list -> origin/ngimel/error_index_list 2025-09-07T06:19:13.0896352Z * [new branch] ngimel/fabric_check -> origin/ngimel/fabric_check 2025-09-07T06:19:13.0896533Z * [new branch] ngimel/fabric_fix -> origin/ngimel/fabric_fix 2025-09-07T06:19:13.0896759Z * [new branch] ngimel/fix_driver_init_error -> origin/ngimel/fix_driver_init_error 2025-09-07T06:19:13.0896993Z * [new branch] ngimel/fix_nccl_segment_seg -> origin/ngimel/fix_nccl_segment_seg 2025-09-07T06:19:13.0897162Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-09-07T06:19:13.0897446Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-09-07T06:19:13.0897646Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-09-07T06:19:13.0897898Z * [new branch] ngimel/rocm_handle_type -> origin/ngimel/rocm_handle_type 2025-09-07T06:19:13.0898112Z * [new branch] ngimel/symm_handle_fabric -> origin/ngimel/symm_handle_fabric 2025-09-07T06:19:13.0898318Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-09-07T06:19:13.0898479Z * [new branch] nightly -> origin/nightly 2025-09-07T06:19:13.0898682Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-09-07T06:19:13.0898879Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-09-07T06:19:13.0899157Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-09-07T06:19:13.0899354Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-09-07T06:19:13.0899548Z * [new branch] nullplay/fuse_matmul -> origin/nullplay/fuse_matmul 2025-09-07T06:19:13.0899749Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-09-07T06:19:13.0899898Z * [new branch] one-off -> origin/one-off 2025-09-07T06:19:13.0900077Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-09-07T06:19:13.0900266Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-09-07T06:19:13.0900445Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-09-07T06:19:13.0900619Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-09-07T06:19:13.0900804Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-09-07T06:19:13.0900982Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-09-07T06:19:13.0901154Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-09-07T06:19:13.0901326Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-09-07T06:19:13.0901503Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-09-07T06:19:13.0901674Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-09-07T06:19:13.0901844Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-09-07T06:19:13.0902022Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-09-07T06:19:13.0902194Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-09-07T06:19:13.0902367Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-09-07T06:19:13.0902553Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-09-07T06:19:13.0902726Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-09-07T06:19:13.0902897Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-09-07T06:19:13.0903077Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-09-07T06:19:13.0903295Z * [new branch] padded-tensor -> origin/padded-tensor 2025-09-07T06:19:13.0903443Z * [new branch] pca2 -> origin/pca2 2025-09-07T06:19:13.0903677Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-09-07T06:19:13.0903976Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-09-07T06:19:13.0904300Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-09-07T06:19:13.0904507Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-09-07T06:19:13.0904716Z * [new branch] pianpwk/maybe_guard_rel -> origin/pianpwk/maybe_guard_rel 2025-09-07T06:19:13.0904922Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-09-07T06:19:13.0905311Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-09-07T06:19:13.0905572Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-09-07T06:19:13.0905787Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-09-07T06:19:13.0906012Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-09-07T06:19:13.0906315Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-09-07T06:19:13.0906577Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-09-07T06:19:13.0906805Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-09-07T06:19:13.0907030Z * [new branch] pianpwk/sym_tokens_draft -> origin/pianpwk/sym_tokens_draft 2025-09-07T06:19:13.0907325Z * [new branch] pianpwk/test_pointwise_guard_or_false -> origin/pianpwk/test_pointwise_guard_or_false 2025-09-07T06:19:13.0907557Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-09-07T06:19:13.0907817Z * [new branch] pianpwk/totally_draft_sym_wrap -> origin/pianpwk/totally_draft_sym_wrap 2025-09-07T06:19:13.0908072Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-09-07T06:19:13.0908316Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-09-07T06:19:13.0908552Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-09-07T06:19:13.0908786Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-09-07T06:19:13.0909078Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-09-07T06:19:13.0909373Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-09-07T06:19:13.0909627Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-09-07T06:19:13.0909824Z * [new branch] pianpwk/user_symints -> origin/pianpwk/user_symints 2025-09-07T06:19:13.0910035Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-09-07T06:19:13.0910273Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-09-07T06:19:13.0910441Z * [new branch] pin-torchao -> origin/pin-torchao 2025-09-07T06:19:13.0910662Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-09-07T06:19:13.0910867Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-09-07T06:19:13.0911041Z * [new branch] pool-separate -> origin/pool-separate 2025-09-07T06:19:13.0911200Z * [new branch] pr-156087 -> origin/pr-156087 2025-09-07T06:19:13.0911351Z * [new branch] pr/131860 -> origin/pr/131860 2025-09-07T06:19:13.0911528Z * [new branch] predispatch_to -> origin/predispatch_to 2025-09-07T06:19:13.0911691Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-09-07T06:19:13.0911870Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-09-07T06:19:13.0912156Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-09-07T06:19:13.0912369Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-09-07T06:19:13.0912534Z * [new branch] quint-bits -> origin/quint-bits 2025-09-07T06:19:13.0912697Z * [new branch] release/1.10 -> origin/release/1.10 2025-09-07T06:19:13.0912855Z * [new branch] release/1.11 -> origin/release/1.11 2025-09-07T06:19:13.0913022Z * [new branch] release/1.12 -> origin/release/1.12 2025-09-07T06:19:13.0913179Z * [new branch] release/1.13 -> origin/release/1.13 2025-09-07T06:19:13.0913340Z * [new branch] release/1.4 -> origin/release/1.4 2025-09-07T06:19:13.0913580Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-09-07T06:19:13.0913741Z * [new branch] release/1.5 -> origin/release/1.5 2025-09-07T06:19:13.0913899Z * [new branch] release/1.6 -> origin/release/1.6 2025-09-07T06:19:13.0914060Z * [new branch] release/1.7 -> origin/release/1.7 2025-09-07T06:19:13.0914215Z * [new branch] release/1.8 -> origin/release/1.8 2025-09-07T06:19:13.0914367Z * [new branch] release/1.9 -> origin/release/1.9 2025-09-07T06:19:13.0914528Z * [new branch] release/2.0 -> origin/release/2.0 2025-09-07T06:19:13.0914732Z * [new branch] release/2.1 -> origin/release/2.1 2025-09-07T06:19:13.0914886Z * [new branch] release/2.2 -> origin/release/2.2 2025-09-07T06:19:13.0915040Z * [new branch] release/2.3 -> origin/release/2.3 2025-09-07T06:19:13.0915248Z * [new branch] release/2.4 -> origin/release/2.4 2025-09-07T06:19:13.0915404Z * [new branch] release/2.5 -> origin/release/2.5 2025-09-07T06:19:13.0915559Z * [new branch] release/2.6 -> origin/release/2.6 2025-09-07T06:19:13.0915730Z * [new branch] release/2.7 -> origin/release/2.7 2025-09-07T06:19:13.0915885Z * [new branch] release/2.8 -> origin/release/2.8 2025-09-07T06:19:13.0916046Z * [new branch] release_notes -> origin/release_notes 2025-09-07T06:19:13.0916287Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-09-07T06:19:13.0916443Z * [new branch] remove-ao -> origin/remove-ao 2025-09-07T06:19:13.0916686Z * [new branch] removedeprecatedvllmtest -> origin/removedeprecatedvllmtest 2025-09-07T06:19:13.0917020Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-09-07T06:19:13.0917336Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-09-07T06:19:13.0917650Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-09-07T06:19:13.0917976Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-09-07T06:19:13.0918285Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-09-07T06:19:13.0918594Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-09-07T06:19:13.0918937Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-09-07T06:19:13.0919293Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-09-07T06:19:13.0919562Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-09-07T06:19:13.0920017Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-09-07T06:19:13.0920199Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-09-07T06:19:13.0920428Z * [new branch] ruisi/relax_memory -> origin/ruisi/relax_memory 2025-09-07T06:19:13.0920723Z * [new branch] run-torchbench-smoke-test-h100 -> origin/run-torchbench-smoke-test-h100 2025-09-07T06:19:13.0921148Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-09-07T06:19:13.0921441Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-09-07T06:19:13.0921655Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-09-07T06:19:13.0921809Z * [new branch] rzou/njt -> origin/rzou/njt 2025-09-07T06:19:13.0921959Z * [new branch] rzou/pca -> origin/rzou/pca 2025-09-07T06:19:13.0922130Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-09-07T06:19:13.0922326Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-09-07T06:19:13.0922645Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-09-07T06:19:13.0923087Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-09-07T06:19:13.0923333Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-09-07T06:19:13.0923482Z * [new branch] save -> origin/save 2025-09-07T06:19:13.0923640Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-09-07T06:19:13.0923848Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-09-07T06:19:13.0924003Z * [new branch] setupvllm -> origin/setupvllm 2025-09-07T06:19:13.0924180Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-09-07T06:19:13.0924387Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-09-07T06:19:13.0924588Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-09-07T06:19:13.0924785Z * [new branch] shoumikhin-patch-1 -> origin/shoumikhin-patch-1 2025-09-07T06:19:13.0925000Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-09-07T06:19:13.0925223Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-09-07T06:19:13.0925418Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-09-07T06:19:13.0925634Z * [new branch] soulitzer/stash-tls-ac -> origin/soulitzer/stash-tls-ac 2025-09-07T06:19:13.0925811Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-09-07T06:19:13.0926009Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-09-07T06:19:13.0926285Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-09-07T06:19:13.0926462Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-09-07T06:19:13.0926740Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-09-07T06:19:13.0926964Z * [new branch] standalone-templates -> origin/standalone-templates 2025-09-07T06:19:13.0927253Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-09-07T06:19:13.0927448Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-09-07T06:19:13.0927620Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-09-07T06:19:13.0927855Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-09-07T06:19:13.0928008Z * [new branch] sve-poc -> origin/sve-poc 2025-09-07T06:19:13.0928189Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-09-07T06:19:13.0928354Z * [new branch] switch-bn -> origin/switch-bn 2025-09-07T06:19:13.0928570Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-09-07T06:19:13.0928844Z * [new branch] tenpercent/ck_rocm_ci_v3 -> origin/tenpercent/ck_rocm_ci_v3 2025-09-07T06:19:13.0929065Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-09-07T06:19:13.0929217Z * [new branch] test-7054 -> origin/test-7054 2025-09-07T06:19:13.0929427Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-09-07T06:19:13.0929697Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-09-07T06:19:13.0929850Z * [new branch] test-old -> origin/test-old 2025-09-07T06:19:13.0930117Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-09-07T06:19:13.0930286Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-09-07T06:19:13.0930451Z * [new branch] test/inductor -> origin/test/inductor 2025-09-07T06:19:13.0930681Z * [new branch] tianren/flex_paged_attn_fix -> origin/tianren/flex_paged_attn_fix 2025-09-07T06:19:13.0930951Z * [new branch] tianren/flex_paged_attn_fix_temp -> origin/tianren/flex_paged_attn_fix_temp 2025-09-07T06:19:13.0931118Z * [new branch] tianren/test -> origin/tianren/test 2025-09-07T06:19:13.0931314Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-09-07T06:19:13.0931491Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-09-07T06:19:13.0931703Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-09-07T06:19:13.0931955Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-09-07T06:19:13.0932133Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-09-07T06:19:13.0932342Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-09-07T06:19:13.0932516Z * [new branch] triton-update -> origin/triton-update 2025-09-07T06:19:13.0932676Z * [new branch] triton_kernel -> origin/triton_kernel 2025-09-07T06:19:13.0932865Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-09-07T06:19:13.0933019Z * [new branch] tt_pkg_1908 -> origin/tt_pkg_1908 2025-09-07T06:19:13.0933280Z * [new branch] tweak-transformer-dependabot -> origin/tweak-transformer-dependabot 2025-09-07T06:19:13.0933449Z * [new branch] type_dec -> origin/type_dec 2025-09-07T06:19:13.0933683Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-09-07T06:19:13.0934043Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-09-07T06:19:13.0934470Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-09-07T06:19:13.0934817Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-09-07T06:19:13.0935156Z * [new branch] update-audio-commit-hash/17002010821-1749-1 -> origin/update-audio-commit-hash/17002010821-1749-1 2025-09-07T06:19:13.0935504Z * [new branch] update-audio-commit-hash/17056004427-1766-1 -> origin/update-audio-commit-hash/17056004427-1766-1 2025-09-07T06:19:13.0935843Z * [new branch] update-audio-commit-hash/17085054029-1767-1 -> origin/update-audio-commit-hash/17085054029-1767-1 2025-09-07T06:19:13.0936185Z * [new branch] update-audio-commit-hash/17142507405-1771-1 -> origin/update-audio-commit-hash/17142507405-1771-1 2025-09-07T06:19:13.0936531Z * [new branch] update-audio-commit-hash/17168762740-1773-1 -> origin/update-audio-commit-hash/17168762740-1773-1 2025-09-07T06:19:13.0936939Z * [new branch] update-audio-commit-hash/17311174639-1780-1 -> origin/update-audio-commit-hash/17311174639-1780-1 2025-09-07T06:19:13.0937279Z * [new branch] update-audio-commit-hash/17336898740-1781-1 -> origin/update-audio-commit-hash/17336898740-1781-1 2025-09-07T06:19:13.0937680Z * [new branch] update-audio-commit-hash/17389727684-1786-1 -> origin/update-audio-commit-hash/17389727684-1786-1 2025-09-07T06:19:13.0938060Z * [new branch] update-audio-commit-hash/17449538142-1790-1 -> origin/update-audio-commit-hash/17449538142-1790-1 2025-09-07T06:19:13.0938402Z * [new branch] update-audio-commit-hash/17507351808-1794-1 -> origin/update-audio-commit-hash/17507351808-1794-1 2025-09-07T06:19:13.0938653Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-09-07T06:19:13.0939059Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-09-07T06:19:13.0939413Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-09-07T06:19:13.0939773Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-09-07T06:19:13.0940104Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-09-07T06:19:13.0940437Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-09-07T06:19:13.0940782Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-09-07T06:19:13.0941114Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-09-07T06:19:13.0941453Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-09-07T06:19:13.0941793Z * [new branch] update-vllm-commit-hash/16979836546-1748-1 -> origin/update-vllm-commit-hash/16979836546-1748-1 2025-09-07T06:19:13.0942127Z * [new branch] update-vllm-commit-hash/17014576881-1756-1 -> origin/update-vllm-commit-hash/17014576881-1756-1 2025-09-07T06:19:13.0942457Z * [new branch] update-vllm-commit-hash/17027830869-1761-1 -> origin/update-vllm-commit-hash/17027830869-1761-1 2025-09-07T06:19:13.0942798Z * [new branch] update-vllm-commit-hash/17056004427-1766-1 -> origin/update-vllm-commit-hash/17056004427-1766-1 2025-09-07T06:19:13.0943126Z * [new branch] update-vllm-commit-hash/17085054029-1767-1 -> origin/update-vllm-commit-hash/17085054029-1767-1 2025-09-07T06:19:13.0943498Z * [new branch] update-vllm-commit-hash/17113610216-1768-1 -> origin/update-vllm-commit-hash/17113610216-1768-1 2025-09-07T06:19:13.0943940Z * [new branch] update-vllm-commit-hash/17142507405-1771-1 -> origin/update-vllm-commit-hash/17142507405-1771-1 2025-09-07T06:19:13.0944270Z * [new branch] update-vllm-commit-hash/17181878974-1774-1 -> origin/update-vllm-commit-hash/17181878974-1774-1 2025-09-07T06:19:13.0944598Z * [new branch] update-vllm-commit-hash/17311174639-1780-1 -> origin/update-vllm-commit-hash/17311174639-1780-1 2025-09-07T06:19:13.0944932Z * [new branch] update-vllm-commit-hash/17336898740-1781-1 -> origin/update-vllm-commit-hash/17336898740-1781-1 2025-09-07T06:19:13.0945337Z * [new branch] update-vllm-commit-hash/17364352302-1785-1 -> origin/update-vllm-commit-hash/17364352302-1785-1 2025-09-07T06:19:13.0945668Z * [new branch] update-vllm-commit-hash/17389727684-1786-1 -> origin/update-vllm-commit-hash/17389727684-1786-1 2025-09-07T06:19:13.0946088Z * [new branch] update-vllm-commit-hash/17449538142-1790-1 -> origin/update-vllm-commit-hash/17449538142-1790-1 2025-09-07T06:19:13.0946420Z * [new branch] update-vllm-commit-hash/17480069797-1791-1 -> origin/update-vllm-commit-hash/17480069797-1791-1 2025-09-07T06:19:13.0946752Z * [new branch] update-vllm-commit-hash/17507351808-1794-1 -> origin/update-vllm-commit-hash/17507351808-1794-1 2025-09-07T06:19:13.0947081Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-09-07T06:19:13.0947396Z * [new branch] update-xla-commit-hash/17034266655-199-1 -> origin/update-xla-commit-hash/17034266655-199-1 2025-09-07T06:19:13.0947709Z * [new branch] update-xla-commit-hash/17202464405-200-1 -> origin/update-xla-commit-hash/17202464405-200-1 2025-09-07T06:19:13.0948040Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-09-07T06:19:13.0948249Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-09-07T06:19:13.0948472Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-09-07T06:19:13.0948696Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-09-07T06:19:13.0948915Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-09-07T06:19:13.0949169Z * [new branch] update_slow_tests_1755502951 -> origin/update_slow_tests_1755502951 2025-09-07T06:19:13.0949390Z * [new branch] update_slow_tests_1756107664 -> origin/update_slow_tests_1756107664 2025-09-07T06:19:13.0949642Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-09-07T06:19:13.0949847Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-09-07T06:19:13.0950093Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-09-07T06:19:13.0950243Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-09-07T06:19:13.0950398Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-09-07T06:19:13.0950550Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-09-07T06:19:13.0950695Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-09-07T06:19:13.0950837Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-09-07T06:19:13.0950991Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-09-07T06:19:13.0951130Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-09-07T06:19:13.0951288Z * [new branch] validate_fn -> origin/validate_fn 2025-09-07T06:19:13.0951471Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-09-07T06:19:13.0951726Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-09-07T06:19:13.0951896Z * [new branch] viable/strict -> origin/viable/strict 2025-09-07T06:19:13.0952058Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-09-07T06:19:13.0952213Z * [new branch] vllmpin -> origin/vllmpin 2025-09-07T06:19:13.0952424Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-09-07T06:19:13.0952594Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-09-07T06:19:13.0952792Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-09-07T06:19:13.0952954Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-09-07T06:19:13.0953179Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-09-07T06:19:13.0953361Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-09-07T06:19:13.0953516Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-09-07T06:19:13.0953671Z * [new branch] whc/uneven -> origin/whc/uneven 2025-09-07T06:19:13.0953863Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-09-07T06:19:13.0954027Z * [new branch] win_warnings -> origin/win_warnings 2025-09-07T06:19:13.0954224Z * [new branch] windows_libtorch_free -> origin/windows_libtorch_free 2025-09-07T06:19:13.0954416Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-09-07T06:19:13.0954858Z * [new branch] wychi-autotune-prune-configs-by-shared-mem -> origin/wychi-autotune-prune-configs-by-shared-mem 2025-09-07T06:19:13.0955025Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-09-07T06:19:13.0955251Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-09-07T06:19:13.0955649Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-09-07T06:19:13.0955833Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-09-07T06:19:13.0956014Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-09-07T06:19:13.0956183Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-09-07T06:19:13.0956341Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-09-07T06:19:13.0956498Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-09-07T06:19:13.0956700Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-09-07T06:19:13.0956879Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-09-07T06:19:13.0957051Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-09-07T06:19:13.0957249Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-09-07T06:19:13.0957441Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-09-07T06:19:13.0957599Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-09-07T06:19:13.0957772Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-09-07T06:19:13.0957933Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-09-07T06:19:13.0958109Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-09-07T06:19:13.0958289Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-09-07T06:19:13.0958539Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-09-07T06:19:13.0958756Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-09-07T06:19:13.0958989Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-09-07T06:19:13.0959176Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-09-07T06:19:13.0959350Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-09-07T06:19:13.0959528Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-09-07T06:19:13.0959757Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-09-07T06:19:13.0959928Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-09-07T06:19:13.0960199Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-09-07T06:19:13.0960424Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-09-07T06:19:13.0960617Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-09-07T06:19:13.0960789Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-09-07T06:19:13.0961011Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-09-07T06:19:13.0961183Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-09-07T06:19:13.0961353Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-09-07T06:19:13.0961580Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-09-07T06:19:13.0961834Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-09-07T06:19:13.0962033Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-09-07T06:19:13.0962452Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-09-07T06:19:13.0962836Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-09-07T06:19:13.0963033Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-09-07T06:19:13.0963227Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-09-07T06:19:13.0963392Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-09-07T06:19:13.0963548Z * [new branch] xmfan/test -> origin/xmfan/test 2025-09-07T06:19:13.0963780Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-09-07T06:19:13.0963991Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-09-07T06:19:13.0964230Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-09-07T06:19:13.0964426Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-09-07T06:19:13.0964669Z * [new branch] yiming/add_jit_trace_benchmark -> origin/yiming/add_jit_trace_benchmark 2025-09-07T06:19:13.0964907Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-09-07T06:19:13.0965099Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-09-07T06:19:13.0965284Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-09-07T06:19:13.0965511Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-09-07T06:19:13.0965702Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-09-07T06:19:13.0965984Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-09-07T06:19:13.0966182Z * [new branch] zainr/test -> origin/zainr/test 2025-09-07T06:19:13.0966341Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-09-07T06:19:13.0966565Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-09-07T06:19:13.0966770Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-09-07T06:19:13.0966961Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-09-07T06:19:13.0967112Z * [new branch] zb2p -> origin/zb2p 2025-09-07T06:19:13.0967319Z * [new branch] zero_grad_optimization -> origin/zero_grad_optimization 2025-09-07T06:19:13.0967614Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-09-07T06:19:13.0967830Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-09-07T06:19:13.0968030Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-09-07T06:19:13.0968192Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-09-07T06:19:13.0968645Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-09-07T06:19:13.0968795Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-09-07T06:19:13.0968964Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-09-07T06:19:13.0969141Z * [new tag] ciflow/binaries/156712 -> ciflow/binaries/156712 2025-09-07T06:19:13.0969301Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-09-07T06:19:13.0969467Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-09-07T06:19:13.0969625Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-09-07T06:19:13.0969792Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-09-07T06:19:13.0969954Z * [new tag] ciflow/binaries/160229 -> ciflow/binaries/160229 2025-09-07T06:19:13.0970111Z * [new tag] ciflow/binaries/160720 -> ciflow/binaries/160720 2025-09-07T06:19:13.0970280Z * [new tag] ciflow/binaries/162080 -> ciflow/binaries/162080 2025-09-07T06:19:13.0970442Z * [new tag] ciflow/binaries/162329 -> ciflow/binaries/162329 2025-09-07T06:19:13.0970658Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-09-07T06:19:13.0970876Z * [new tag] ciflow/binaries_libtorch/156711 -> ciflow/binaries_libtorch/156711 2025-09-07T06:19:13.0971092Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-09-07T06:19:13.0971280Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-09-07T06:19:13.0971472Z * [new tag] ciflow/binaries_wheel/156711 -> ciflow/binaries_wheel/156711 2025-09-07T06:19:13.0971655Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-09-07T06:19:13.0971883Z * [new tag] ciflow/binaries_wheel/162136 -> ciflow/binaries_wheel/162136 2025-09-07T06:19:13.0972075Z * [new tag] ciflow/binaries_wheel/162252 -> ciflow/binaries_wheel/162252 2025-09-07T06:19:13.0972295Z * [new tag] ciflow/binaries_wheel/162325 -> ciflow/binaries_wheel/162325 2025-09-07T06:19:13.0972505Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-09-07T06:19:13.0972694Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-09-07T06:19:13.0972937Z * [new tag] ciflow/h100-symm-mem/161984 -> ciflow/h100-symm-mem/161984 2025-09-07T06:19:13.0973112Z * [new tag] ciflow/h100-symm-mem/162003 -> ciflow/h100-symm-mem/162003 2025-09-07T06:19:13.0973296Z * [new tag] ciflow/h100-symm-mem/162011 -> ciflow/h100-symm-mem/162011 2025-09-07T06:19:13.0973472Z * [new tag] ciflow/h100-symm-mem/162026 -> ciflow/h100-symm-mem/162026 2025-09-07T06:19:13.0973648Z * [new tag] ciflow/h100-symm-mem/162033 -> ciflow/h100-symm-mem/162033 2025-09-07T06:19:13.0973826Z * [new tag] ciflow/h100-symm-mem/162040 -> ciflow/h100-symm-mem/162040 2025-09-07T06:19:13.0974000Z * [new tag] ciflow/h100-symm-mem/162041 -> ciflow/h100-symm-mem/162041 2025-09-07T06:19:13.0974178Z * [new tag] ciflow/h100-symm-mem/162142 -> ciflow/h100-symm-mem/162142 2025-09-07T06:19:13.0974418Z * [new tag] ciflow/h100-symm-mem/162150 -> ciflow/h100-symm-mem/162150 2025-09-07T06:19:13.0974595Z * [new tag] ciflow/h100-symm-mem/162243 -> ciflow/h100-symm-mem/162243 2025-09-07T06:19:13.0974766Z * [new tag] ciflow/h100-symm-mem/162320 -> ciflow/h100-symm-mem/162320 2025-09-07T06:19:13.0974914Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-09-07T06:19:13.0975064Z * [new tag] ciflow/h100/160480 -> ciflow/h100/160480 2025-09-07T06:19:13.0975205Z * [new tag] ciflow/h100/161749 -> ciflow/h100/161749 2025-09-07T06:19:13.0975347Z * [new tag] ciflow/h100/162022 -> ciflow/h100/162022 2025-09-07T06:19:13.0975496Z * [new tag] ciflow/h100/162278 -> ciflow/h100/162278 2025-09-07T06:19:13.0975861Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/156592 -> ciflow/inductor-perf-test-nightly-rocm/156592 2025-09-07T06:19:13.0976181Z * [new tag] ciflow/inductor-perf-test-nightly/156592 -> ciflow/inductor-perf-test-nightly/156592 2025-09-07T06:19:13.0976422Z * [new tag] ciflow/inductor-periodic/162063 -> ciflow/inductor-periodic/162063 2025-09-07T06:19:13.0976648Z * [new tag] ciflow/inductor-periodic/162227 -> ciflow/inductor-periodic/162227 2025-09-07T06:19:13.0976869Z * [new tag] ciflow/inductor-periodic/162323 -> ciflow/inductor-periodic/162323 2025-09-07T06:19:13.0977066Z * [new tag] ciflow/inductor-rocm/154170 -> ciflow/inductor-rocm/154170 2025-09-07T06:19:13.0977251Z * [new tag] ciflow/inductor-rocm/159146 -> ciflow/inductor-rocm/159146 2025-09-07T06:19:13.0977434Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-09-07T06:19:13.0977663Z * [new tag] ciflow/inductor-rocm/161715 -> ciflow/inductor-rocm/161715 2025-09-07T06:19:13.0977854Z * [new tag] ciflow/inductor-rocm/162053 -> ciflow/inductor-rocm/162053 2025-09-07T06:19:13.0978078Z * [new tag] ciflow/inductor-rocm/162056 -> ciflow/inductor-rocm/162056 2025-09-07T06:19:13.0978253Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-09-07T06:19:13.0978417Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-09-07T06:19:13.0978576Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-09-07T06:19:13.0978743Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-09-07T06:19:13.0978921Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-09-07T06:19:13.0979088Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-09-07T06:19:13.0979248Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-09-07T06:19:13.0979481Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-09-07T06:19:13.0979641Z * [new tag] ciflow/inductor/156592 -> ciflow/inductor/156592 2025-09-07T06:19:13.0979801Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-09-07T06:19:13.0979971Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-09-07T06:19:13.0980131Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-09-07T06:19:13.0980289Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-09-07T06:19:13.0980454Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-09-07T06:19:13.0980612Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-09-07T06:19:13.0980770Z * [new tag] ciflow/inductor/157994 -> ciflow/inductor/157994 2025-09-07T06:19:13.0981413Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-09-07T06:19:13.0981582Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-09-07T06:19:13.0981741Z * [new tag] ciflow/inductor/158404 -> ciflow/inductor/158404 2025-09-07T06:19:13.0981913Z * [new tag] ciflow/inductor/158647 -> ciflow/inductor/158647 2025-09-07T06:19:13.0982074Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-09-07T06:19:13.0982233Z * [new tag] ciflow/inductor/159146 -> ciflow/inductor/159146 2025-09-07T06:19:13.0982396Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-09-07T06:19:13.0982569Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-09-07T06:19:13.0982729Z * [new tag] ciflow/inductor/159664 -> ciflow/inductor/159664 2025-09-07T06:19:13.0982897Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-09-07T06:19:13.0983072Z * [new tag] ciflow/inductor/159835 -> ciflow/inductor/159835 2025-09-07T06:19:13.0983286Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-09-07T06:19:13.0983445Z * [new tag] ciflow/inductor/160161 -> ciflow/inductor/160161 2025-09-07T06:19:13.0983611Z * [new tag] ciflow/inductor/160174 -> ciflow/inductor/160174 2025-09-07T06:19:13.0983809Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-09-07T06:19:13.0983967Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-09-07T06:19:13.0984138Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-09-07T06:19:13.0984300Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-09-07T06:19:13.0984469Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-09-07T06:19:13.0984639Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-09-07T06:19:13.0984800Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-09-07T06:19:13.0984960Z * [new tag] ciflow/inductor/160480 -> ciflow/inductor/160480 2025-09-07T06:19:13.0985206Z * [new tag] ciflow/inductor/160532 -> ciflow/inductor/160532 2025-09-07T06:19:13.0985368Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-09-07T06:19:13.0985526Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-09-07T06:19:13.0985687Z * [new tag] ciflow/inductor/160685 -> ciflow/inductor/160685 2025-09-07T06:19:13.0985860Z * [new tag] ciflow/inductor/160686 -> ciflow/inductor/160686 2025-09-07T06:19:13.0986029Z * [new tag] ciflow/inductor/160687 -> ciflow/inductor/160687 2025-09-07T06:19:13.0986288Z * [new tag] ciflow/inductor/160688 -> ciflow/inductor/160688 2025-09-07T06:19:13.0986464Z * [new tag] ciflow/inductor/160690 -> ciflow/inductor/160690 2025-09-07T06:19:13.0986623Z * [new tag] ciflow/inductor/160706 -> ciflow/inductor/160706 2025-09-07T06:19:13.0986782Z * [new tag] ciflow/inductor/160729 -> ciflow/inductor/160729 2025-09-07T06:19:13.0986958Z * [new tag] ciflow/inductor/160798 -> ciflow/inductor/160798 2025-09-07T06:19:13.0987119Z * [new tag] ciflow/inductor/160836 -> ciflow/inductor/160836 2025-09-07T06:19:13.0987282Z * [new tag] ciflow/inductor/160843 -> ciflow/inductor/160843 2025-09-07T06:19:13.0987447Z * [new tag] ciflow/inductor/160869 -> ciflow/inductor/160869 2025-09-07T06:19:13.0987681Z * [new tag] ciflow/inductor/160920 -> ciflow/inductor/160920 2025-09-07T06:19:13.0987847Z * [new tag] ciflow/inductor/160943 -> ciflow/inductor/160943 2025-09-07T06:19:13.0988018Z * [new tag] ciflow/inductor/161092 -> ciflow/inductor/161092 2025-09-07T06:19:13.0988177Z * [new tag] ciflow/inductor/161093 -> ciflow/inductor/161093 2025-09-07T06:19:13.0988334Z * [new tag] ciflow/inductor/161109 -> ciflow/inductor/161109 2025-09-07T06:19:13.0988504Z * [new tag] ciflow/inductor/161118 -> ciflow/inductor/161118 2025-09-07T06:19:13.0988662Z * [new tag] ciflow/inductor/161178 -> ciflow/inductor/161178 2025-09-07T06:19:13.0988834Z * [new tag] ciflow/inductor/161246 -> ciflow/inductor/161246 2025-09-07T06:19:13.0989041Z * [new tag] ciflow/inductor/161349 -> ciflow/inductor/161349 2025-09-07T06:19:13.0989213Z * [new tag] ciflow/inductor/161350 -> ciflow/inductor/161350 2025-09-07T06:19:13.0989376Z * [new tag] ciflow/inductor/161351 -> ciflow/inductor/161351 2025-09-07T06:19:13.0989574Z * [new tag] ciflow/inductor/161397 -> ciflow/inductor/161397 2025-09-07T06:19:13.0989742Z * [new tag] ciflow/inductor/161404 -> ciflow/inductor/161404 2025-09-07T06:19:13.0989899Z * [new tag] ciflow/inductor/161405 -> ciflow/inductor/161405 2025-09-07T06:19:13.0990058Z * [new tag] ciflow/inductor/161406 -> ciflow/inductor/161406 2025-09-07T06:19:13.0990233Z * [new tag] ciflow/inductor/161410 -> ciflow/inductor/161410 2025-09-07T06:19:13.0990395Z * [new tag] ciflow/inductor/161414 -> ciflow/inductor/161414 2025-09-07T06:19:13.0990562Z * [new tag] ciflow/inductor/161442 -> ciflow/inductor/161442 2025-09-07T06:19:13.0990732Z * [new tag] ciflow/inductor/161458 -> ciflow/inductor/161458 2025-09-07T06:19:13.0990892Z * [new tag] ciflow/inductor/161468 -> ciflow/inductor/161468 2025-09-07T06:19:13.0991053Z * [new tag] ciflow/inductor/161469 -> ciflow/inductor/161469 2025-09-07T06:19:13.0991222Z * [new tag] ciflow/inductor/161485 -> ciflow/inductor/161485 2025-09-07T06:19:13.0991387Z * [new tag] ciflow/inductor/161499 -> ciflow/inductor/161499 2025-09-07T06:19:13.0991545Z * [new tag] ciflow/inductor/161534 -> ciflow/inductor/161534 2025-09-07T06:19:13.0991714Z * [new tag] ciflow/inductor/161595 -> ciflow/inductor/161595 2025-09-07T06:19:13.0991881Z * [new tag] ciflow/inductor/161596 -> ciflow/inductor/161596 2025-09-07T06:19:13.0992046Z * [new tag] ciflow/inductor/161630 -> ciflow/inductor/161630 2025-09-07T06:19:13.0992212Z * [new tag] ciflow/inductor/161667 -> ciflow/inductor/161667 2025-09-07T06:19:13.0992901Z * [new tag] ciflow/inductor/161670 -> ciflow/inductor/161670 2025-09-07T06:19:13.0993071Z * [new tag] ciflow/inductor/161673 -> ciflow/inductor/161673 2025-09-07T06:19:13.0993231Z * [new tag] ciflow/inductor/161674 -> ciflow/inductor/161674 2025-09-07T06:19:13.0993400Z * [new tag] ciflow/inductor/161675 -> ciflow/inductor/161675 2025-09-07T06:19:13.0993560Z * [new tag] ciflow/inductor/161693 -> ciflow/inductor/161693 2025-09-07T06:19:13.0993718Z * [new tag] ciflow/inductor/161695 -> ciflow/inductor/161695 2025-09-07T06:19:13.0993889Z * [new tag] ciflow/inductor/161715 -> ciflow/inductor/161715 2025-09-07T06:19:13.0994051Z * [new tag] ciflow/inductor/161730 -> ciflow/inductor/161730 2025-09-07T06:19:13.0994277Z * [new tag] ciflow/inductor/161732 -> ciflow/inductor/161732 2025-09-07T06:19:13.0994454Z * [new tag] ciflow/inductor/161744 -> ciflow/inductor/161744 2025-09-07T06:19:13.0994612Z * [new tag] ciflow/inductor/161746 -> ciflow/inductor/161746 2025-09-07T06:19:13.0994817Z * [new tag] ciflow/inductor/161747 -> ciflow/inductor/161747 2025-09-07T06:19:13.0994991Z * [new tag] ciflow/inductor/161819 -> ciflow/inductor/161819 2025-09-07T06:19:13.0995153Z * [new tag] ciflow/inductor/161821 -> ciflow/inductor/161821 2025-09-07T06:19:13.0995350Z * [new tag] ciflow/inductor/161828 -> ciflow/inductor/161828 2025-09-07T06:19:13.0995517Z * [new tag] ciflow/inductor/161879 -> ciflow/inductor/161879 2025-09-07T06:19:13.0995674Z * [new tag] ciflow/inductor/161880 -> ciflow/inductor/161880 2025-09-07T06:19:13.0995836Z * [new tag] ciflow/inductor/161881 -> ciflow/inductor/161881 2025-09-07T06:19:13.0996007Z * [new tag] ciflow/inductor/161907 -> ciflow/inductor/161907 2025-09-07T06:19:13.0996169Z * [new tag] ciflow/inductor/161914 -> ciflow/inductor/161914 2025-09-07T06:19:13.0996334Z * [new tag] ciflow/inductor/161924 -> ciflow/inductor/161924 2025-09-07T06:19:13.0996491Z * [new tag] ciflow/inductor/161936 -> ciflow/inductor/161936 2025-09-07T06:19:13.0996658Z * [new tag] ciflow/inductor/161938 -> ciflow/inductor/161938 2025-09-07T06:19:13.0996819Z * [new tag] ciflow/inductor/161939 -> ciflow/inductor/161939 2025-09-07T06:19:13.0996981Z * [new tag] ciflow/inductor/161940 -> ciflow/inductor/161940 2025-09-07T06:19:13.0997154Z * [new tag] ciflow/inductor/161955 -> ciflow/inductor/161955 2025-09-07T06:19:13.0997319Z * [new tag] ciflow/inductor/161957 -> ciflow/inductor/161957 2025-09-07T06:19:13.0997484Z * [new tag] ciflow/inductor/161975 -> ciflow/inductor/161975 2025-09-07T06:19:13.0997657Z * [new tag] ciflow/inductor/161977 -> ciflow/inductor/161977 2025-09-07T06:19:13.0997822Z * [new tag] ciflow/inductor/161978 -> ciflow/inductor/161978 2025-09-07T06:19:13.0997982Z * [new tag] ciflow/inductor/161979 -> ciflow/inductor/161979 2025-09-07T06:19:13.0998147Z * [new tag] ciflow/inductor/161980 -> ciflow/inductor/161980 2025-09-07T06:19:13.0998305Z * [new tag] ciflow/inductor/161988 -> ciflow/inductor/161988 2025-09-07T06:19:13.0998467Z * [new tag] ciflow/inductor/161994 -> ciflow/inductor/161994 2025-09-07T06:19:13.0998635Z * [new tag] ciflow/inductor/162013 -> ciflow/inductor/162013 2025-09-07T06:19:13.0998798Z * [new tag] ciflow/inductor/162014 -> ciflow/inductor/162014 2025-09-07T06:19:13.0999031Z * [new tag] ciflow/inductor/162017 -> ciflow/inductor/162017 2025-09-07T06:19:13.0999198Z * [new tag] ciflow/inductor/162021 -> ciflow/inductor/162021 2025-09-07T06:19:13.0999361Z * [new tag] ciflow/inductor/162023 -> ciflow/inductor/162023 2025-09-07T06:19:13.0999529Z * [new tag] ciflow/inductor/162027 -> ciflow/inductor/162027 2025-09-07T06:19:13.0999691Z * [new tag] ciflow/inductor/162029 -> ciflow/inductor/162029 2025-09-07T06:19:13.0999856Z * [new tag] ciflow/inductor/162030 -> ciflow/inductor/162030 2025-09-07T06:19:13.1000017Z * [new tag] ciflow/inductor/162031 -> ciflow/inductor/162031 2025-09-07T06:19:13.1000182Z * [new tag] ciflow/inductor/162033 -> ciflow/inductor/162033 2025-09-07T06:19:13.1000425Z * [new tag] ciflow/inductor/162052 -> ciflow/inductor/162052 2025-09-07T06:19:13.1000634Z * [new tag] ciflow/inductor/162053 -> ciflow/inductor/162053 2025-09-07T06:19:13.1000799Z * [new tag] ciflow/inductor/162056 -> ciflow/inductor/162056 2025-09-07T06:19:13.1001012Z * [new tag] ciflow/inductor/162063 -> ciflow/inductor/162063 2025-09-07T06:19:13.1001175Z * [new tag] ciflow/inductor/162066 -> ciflow/inductor/162066 2025-09-07T06:19:13.1001338Z * [new tag] ciflow/inductor/162068 -> ciflow/inductor/162068 2025-09-07T06:19:13.1001509Z * [new tag] ciflow/inductor/162081 -> ciflow/inductor/162081 2025-09-07T06:19:13.1001666Z * [new tag] ciflow/inductor/162088 -> ciflow/inductor/162088 2025-09-07T06:19:13.1001825Z * [new tag] ciflow/inductor/162089 -> ciflow/inductor/162089 2025-09-07T06:19:13.1001993Z * [new tag] ciflow/inductor/162094 -> ciflow/inductor/162094 2025-09-07T06:19:13.1002160Z * [new tag] ciflow/inductor/162098 -> ciflow/inductor/162098 2025-09-07T06:19:13.1002324Z * [new tag] ciflow/inductor/162101 -> ciflow/inductor/162101 2025-09-07T06:19:13.1002488Z * [new tag] ciflow/inductor/162102 -> ciflow/inductor/162102 2025-09-07T06:19:13.1002651Z * [new tag] ciflow/inductor/162104 -> ciflow/inductor/162104 2025-09-07T06:19:13.1002814Z * [new tag] ciflow/inductor/162106 -> ciflow/inductor/162106 2025-09-07T06:19:13.1002972Z * [new tag] ciflow/inductor/162108 -> ciflow/inductor/162108 2025-09-07T06:19:13.1003136Z * [new tag] ciflow/inductor/162126 -> ciflow/inductor/162126 2025-09-07T06:19:13.1003294Z * [new tag] ciflow/inductor/162149 -> ciflow/inductor/162149 2025-09-07T06:19:13.1003455Z * [new tag] ciflow/inductor/162164 -> ciflow/inductor/162164 2025-09-07T06:19:13.1003627Z * [new tag] ciflow/inductor/162166 -> ciflow/inductor/162166 2025-09-07T06:19:13.1003785Z * [new tag] ciflow/inductor/162169 -> ciflow/inductor/162169 2025-09-07T06:19:13.1003942Z * [new tag] ciflow/inductor/162170 -> ciflow/inductor/162170 2025-09-07T06:19:13.1004112Z * [new tag] ciflow/inductor/162171 -> ciflow/inductor/162171 2025-09-07T06:19:13.1004269Z * [new tag] ciflow/inductor/162183 -> ciflow/inductor/162183 2025-09-07T06:19:13.1004426Z * [new tag] ciflow/inductor/162189 -> ciflow/inductor/162189 2025-09-07T06:19:13.1004588Z * [new tag] ciflow/inductor/162190 -> ciflow/inductor/162190 2025-09-07T06:19:13.1004745Z * [new tag] ciflow/inductor/162191 -> ciflow/inductor/162191 2025-09-07T06:19:13.1004904Z * [new tag] ciflow/inductor/162194 -> ciflow/inductor/162194 2025-09-07T06:19:13.1005139Z * [new tag] ciflow/inductor/162200 -> ciflow/inductor/162200 2025-09-07T06:19:13.1005300Z * [new tag] ciflow/inductor/162201 -> ciflow/inductor/162201 2025-09-07T06:19:13.1005461Z * [new tag] ciflow/inductor/162208 -> ciflow/inductor/162208 2025-09-07T06:19:13.1005624Z * [new tag] ciflow/inductor/162211 -> ciflow/inductor/162211 2025-09-07T06:19:13.1005784Z * [new tag] ciflow/inductor/162216 -> ciflow/inductor/162216 2025-09-07T06:19:13.1005944Z * [new tag] ciflow/inductor/162220 -> ciflow/inductor/162220 2025-09-07T06:19:13.1006103Z * [new tag] ciflow/inductor/162222 -> ciflow/inductor/162222 2025-09-07T06:19:13.1006311Z * [new tag] ciflow/inductor/162227 -> ciflow/inductor/162227 2025-09-07T06:19:13.1006477Z * [new tag] ciflow/inductor/162238 -> ciflow/inductor/162238 2025-09-07T06:19:13.1006709Z * [new tag] ciflow/inductor/162239 -> ciflow/inductor/162239 2025-09-07T06:19:13.1006909Z * [new tag] ciflow/inductor/162240 -> ciflow/inductor/162240 2025-09-07T06:19:13.1007076Z * [new tag] ciflow/inductor/162244 -> ciflow/inductor/162244 2025-09-07T06:19:13.1007233Z * [new tag] ciflow/inductor/162245 -> ciflow/inductor/162245 2025-09-07T06:19:13.1007404Z * [new tag] ciflow/inductor/162262 -> ciflow/inductor/162262 2025-09-07T06:19:13.1007567Z * [new tag] ciflow/inductor/162275 -> ciflow/inductor/162275 2025-09-07T06:19:13.1007730Z * [new tag] ciflow/inductor/162278 -> ciflow/inductor/162278 2025-09-07T06:19:13.1007900Z * [new tag] ciflow/inductor/162284 -> ciflow/inductor/162284 2025-09-07T06:19:13.1008058Z * [new tag] ciflow/inductor/162286 -> ciflow/inductor/162286 2025-09-07T06:19:13.1008223Z * [new tag] ciflow/inductor/162288 -> ciflow/inductor/162288 2025-09-07T06:19:13.1008386Z * [new tag] ciflow/inductor/162293 -> ciflow/inductor/162293 2025-09-07T06:19:13.1008549Z * [new tag] ciflow/inductor/162294 -> ciflow/inductor/162294 2025-09-07T06:19:13.1008709Z * [new tag] ciflow/inductor/162295 -> ciflow/inductor/162295 2025-09-07T06:19:13.1008880Z * [new tag] ciflow/inductor/162296 -> ciflow/inductor/162296 2025-09-07T06:19:13.1009038Z * [new tag] ciflow/inductor/162298 -> ciflow/inductor/162298 2025-09-07T06:19:13.1009195Z * [new tag] ciflow/inductor/162307 -> ciflow/inductor/162307 2025-09-07T06:19:13.1009353Z * [new tag] ciflow/inductor/162309 -> ciflow/inductor/162309 2025-09-07T06:19:13.1009520Z * [new tag] ciflow/inductor/162311 -> ciflow/inductor/162311 2025-09-07T06:19:13.1009684Z * [new tag] ciflow/inductor/162312 -> ciflow/inductor/162312 2025-09-07T06:19:13.1009848Z * [new tag] ciflow/inductor/162315 -> ciflow/inductor/162315 2025-09-07T06:19:13.1010012Z * [new tag] ciflow/inductor/162316 -> ciflow/inductor/162316 2025-09-07T06:19:13.1010169Z * [new tag] ciflow/inductor/162318 -> ciflow/inductor/162318 2025-09-07T06:19:13.1010328Z * [new tag] ciflow/inductor/162323 -> ciflow/inductor/162323 2025-09-07T06:19:13.1010496Z * [new tag] ciflow/inductor/162341 -> ciflow/inductor/162341 2025-09-07T06:19:13.1010656Z * [new tag] ciflow/inductor/162345 -> ciflow/inductor/162345 2025-09-07T06:19:13.1010826Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-09-07T06:19:13.1010998Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-09-07T06:19:13.1011237Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-09-07T06:19:13.1011424Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-09-07T06:19:13.1011613Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-09-07T06:19:13.1011793Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-09-07T06:19:13.1011945Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-09-07T06:19:13.1012098Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-09-07T06:19:13.1012281Z * [new tag] ciflow/mps/161988 -> ciflow/mps/161988 2025-09-07T06:19:13.1012426Z * [new tag] ciflow/mps/162108 -> ciflow/mps/162108 2025-09-07T06:19:13.1012564Z * [new tag] ciflow/mps/162153 -> ciflow/mps/162153 2025-09-07T06:19:13.1012825Z * [new tag] ciflow/mps/162281 -> ciflow/mps/162281 2025-09-07T06:19:13.1012990Z * [new tag] ciflow/nightly/156049 -> ciflow/nightly/156049 2025-09-07T06:19:13.1013150Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-09-07T06:19:13.1013338Z * [new tag] ciflow/op-benchmark/157994 -> ciflow/op-benchmark/157994 2025-09-07T06:19:13.1013583Z * [new tag] ciflow/periodic-rocm-mi300/161529 -> ciflow/periodic-rocm-mi300/161529 2025-09-07T06:19:13.1013828Z * [new tag] ciflow/periodic-rocm-mi300/161715 -> ciflow/periodic-rocm-mi300/161715 2025-09-07T06:19:13.1014021Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-09-07T06:19:13.1014199Z * [new tag] ciflow/periodic/156703 -> ciflow/periodic/156703 2025-09-07T06:19:13.1014362Z * [new tag] ciflow/periodic/161715 -> ciflow/periodic/161715 2025-09-07T06:19:13.1014546Z * [new tag] ciflow/periodic/162021 -> ciflow/periodic/162021 2025-09-07T06:19:13.1014707Z * [new tag] ciflow/periodic/162323 -> ciflow/periodic/162323 2025-09-07T06:19:13.1014874Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-09-07T06:19:13.1015050Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-09-07T06:19:13.1015210Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-09-07T06:19:13.1015380Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-09-07T06:19:13.1015577Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-09-07T06:19:13.1015786Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-09-07T06:19:13.1015986Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-09-07T06:19:13.1016202Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-09-07T06:19:13.1016398Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-09-07T06:19:13.1016617Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-09-07T06:19:13.1016803Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-09-07T06:19:13.1016983Z * [new tag] ciflow/rocm-mi300/154170 -> ciflow/rocm-mi300/154170 2025-09-07T06:19:13.1017145Z * [new tag] ciflow/rocm-mi300/158747 -> ciflow/rocm-mi300/158747 2025-09-07T06:19:13.1017307Z * [new tag] ciflow/rocm-mi300/159146 -> ciflow/rocm-mi300/159146 2025-09-07T06:19:13.1017474Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-09-07T06:19:13.1017640Z * [new tag] ciflow/rocm-mi300/161715 -> ciflow/rocm-mi300/161715 2025-09-07T06:19:13.1017873Z * [new tag] ciflow/rocm-mi300/161957 -> ciflow/rocm-mi300/161957 2025-09-07T06:19:13.1018040Z * [new tag] ciflow/rocm-mi300/162053 -> ciflow/rocm-mi300/162053 2025-09-07T06:19:13.1018202Z * [new tag] ciflow/rocm-mi300/162056 -> ciflow/rocm-mi300/162056 2025-09-07T06:19:13.1018361Z * [new tag] ciflow/rocm-mi300/162112 -> ciflow/rocm-mi300/162112 2025-09-07T06:19:13.1018530Z * [new tag] ciflow/rocm-mi300/162245 -> ciflow/rocm-mi300/162245 2025-09-07T06:19:13.1018700Z * [new tag] ciflow/rocm-mi300/162278 -> ciflow/rocm-mi300/162278 2025-09-07T06:19:13.1018865Z * [new tag] ciflow/rocm-mi300/162288 -> ciflow/rocm-mi300/162288 2025-09-07T06:19:13.1019029Z * [new tag] ciflow/rocm-mi355/162053 -> ciflow/rocm-mi355/162053 2025-09-07T06:19:13.1019261Z * [new tag] ciflow/rocm-mi355/162056 -> ciflow/rocm-mi355/162056 2025-09-07T06:19:13.1019417Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-09-07T06:19:13.1019569Z * [new tag] ciflow/rocm/154170 -> ciflow/rocm/154170 2025-09-07T06:19:13.1019715Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-09-07T06:19:13.1019856Z * [new tag] ciflow/rocm/156592 -> ciflow/rocm/156592 2025-09-07T06:19:13.1019998Z * [new tag] ciflow/rocm/158747 -> ciflow/rocm/158747 2025-09-07T06:19:13.1020151Z * [new tag] ciflow/rocm/159146 -> ciflow/rocm/159146 2025-09-07T06:19:13.1020296Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-09-07T06:19:13.1020440Z * [new tag] ciflow/rocm/161715 -> ciflow/rocm/161715 2025-09-07T06:19:13.1020593Z * [new tag] ciflow/rocm/161972 -> ciflow/rocm/161972 2025-09-07T06:19:13.1020742Z * [new tag] ciflow/rocm/162052 -> ciflow/rocm/162052 2025-09-07T06:19:13.1020882Z * [new tag] ciflow/rocm/162053 -> ciflow/rocm/162053 2025-09-07T06:19:13.1021039Z * [new tag] ciflow/rocm/162056 -> ciflow/rocm/162056 2025-09-07T06:19:13.1021179Z * [new tag] ciflow/rocm/162112 -> ciflow/rocm/162112 2025-09-07T06:19:13.1021325Z * [new tag] ciflow/rocm/162278 -> ciflow/rocm/162278 2025-09-07T06:19:13.1021476Z * [new tag] ciflow/rocm/162288 -> ciflow/rocm/162288 2025-09-07T06:19:13.1021616Z * [new tag] ciflow/rocm/162305 -> ciflow/rocm/162305 2025-09-07T06:19:13.1021769Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-09-07T06:19:13.1021919Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-09-07T06:19:13.1022412Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-09-07T06:19:13.1022563Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-09-07T06:19:13.1022712Z * [new tag] ciflow/slow/161395 -> ciflow/slow/161395 2025-09-07T06:19:13.1022860Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-09-07T06:19:13.1023057Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-09-07T06:19:13.1023209Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-09-07T06:19:13.1023403Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-09-07T06:19:13.1023592Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-09-07T06:19:13.1023739Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-09-07T06:19:13.1023973Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-09-07T06:19:13.1024123Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-09-07T06:19:13.1024559Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-09-07T06:19:13.1024715Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-09-07T06:19:13.1024862Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-09-07T06:19:13.1025005Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-09-07T06:19:13.1025259Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-09-07T06:19:13.1025410Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-09-07T06:19:13.1025946Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-09-07T06:19:13.1026159Z * [new tag] ciflow/triton_binaries/162329 -> ciflow/triton_binaries/162329 2025-09-07T06:19:13.1026307Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-09-07T06:19:13.1026458Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-09-07T06:19:13.1026613Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-09-07T06:19:13.1026762Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-09-07T06:19:13.1026912Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-09-07T06:19:13.1027069Z * [new tag] ciflow/trunk/148919 -> ciflow/trunk/148919 2025-09-07T06:19:13.1027218Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-09-07T06:19:13.1027366Z * [new tag] ciflow/trunk/154170 -> ciflow/trunk/154170 2025-09-07T06:19:13.1027513Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-09-07T06:19:13.1027670Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-09-07T06:19:13.1027814Z * [new tag] ciflow/trunk/156703 -> ciflow/trunk/156703 2025-09-07T06:19:13.1027961Z * [new tag] ciflow/trunk/156711 -> ciflow/trunk/156711 2025-09-07T06:19:13.1028114Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-09-07T06:19:13.1028263Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-09-07T06:19:13.1028414Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-09-07T06:19:13.1028565Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-09-07T06:19:13.1028713Z * [new tag] ciflow/trunk/157813 -> ciflow/trunk/157813 2025-09-07T06:19:13.1028863Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-09-07T06:19:13.1029016Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-09-07T06:19:13.1029165Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-09-07T06:19:13.1029314Z * [new tag] ciflow/trunk/158404 -> ciflow/trunk/158404 2025-09-07T06:19:13.1029466Z * [new tag] ciflow/trunk/158647 -> ciflow/trunk/158647 2025-09-07T06:19:13.1029614Z * [new tag] ciflow/trunk/158846 -> ciflow/trunk/158846 2025-09-07T06:19:13.1029759Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-09-07T06:19:13.1029902Z * [new tag] ciflow/trunk/159682 -> ciflow/trunk/159682 2025-09-07T06:19:13.1030058Z * [new tag] ciflow/trunk/159835 -> ciflow/trunk/159835 2025-09-07T06:19:13.1030277Z * [new tag] ciflow/trunk/160161 -> ciflow/trunk/160161 2025-09-07T06:19:13.1030424Z * [new tag] ciflow/trunk/160236 -> ciflow/trunk/160236 2025-09-07T06:19:13.1030577Z * [new tag] ciflow/trunk/160329 -> ciflow/trunk/160329 2025-09-07T06:19:13.1030727Z * [new tag] ciflow/trunk/160480 -> ciflow/trunk/160480 2025-09-07T06:19:13.1030871Z * [new tag] ciflow/trunk/160532 -> ciflow/trunk/160532 2025-09-07T06:19:13.1031035Z * [new tag] ciflow/trunk/160836 -> ciflow/trunk/160836 2025-09-07T06:19:13.1031181Z * [new tag] ciflow/trunk/160843 -> ciflow/trunk/160843 2025-09-07T06:19:13.1031326Z * [new tag] ciflow/trunk/160869 -> ciflow/trunk/160869 2025-09-07T06:19:13.1031484Z * [new tag] ciflow/trunk/160940 -> ciflow/trunk/160940 2025-09-07T06:19:13.1031694Z * [new tag] ciflow/trunk/160943 -> ciflow/trunk/160943 2025-09-07T06:19:13.1031842Z * [new tag] ciflow/trunk/160953 -> ciflow/trunk/160953 2025-09-07T06:19:13.1031996Z * [new tag] ciflow/trunk/161035 -> ciflow/trunk/161035 2025-09-07T06:19:13.1032139Z * [new tag] ciflow/trunk/161178 -> ciflow/trunk/161178 2025-09-07T06:19:13.1032283Z * [new tag] ciflow/trunk/161349 -> ciflow/trunk/161349 2025-09-07T06:19:13.1032439Z * [new tag] ciflow/trunk/161350 -> ciflow/trunk/161350 2025-09-07T06:19:13.1032587Z * [new tag] ciflow/trunk/161351 -> ciflow/trunk/161351 2025-09-07T06:19:13.1032731Z * [new tag] ciflow/trunk/161395 -> ciflow/trunk/161395 2025-09-07T06:19:13.1032875Z * [new tag] ciflow/trunk/161405 -> ciflow/trunk/161405 2025-09-07T06:19:13.1033035Z * [new tag] ciflow/trunk/161406 -> ciflow/trunk/161406 2025-09-07T06:19:13.1033180Z * [new tag] ciflow/trunk/161410 -> ciflow/trunk/161410 2025-09-07T06:19:13.1033324Z * [new tag] ciflow/trunk/161468 -> ciflow/trunk/161468 2025-09-07T06:19:13.1033481Z * [new tag] ciflow/trunk/161499 -> ciflow/trunk/161499 2025-09-07T06:19:13.1033626Z * [new tag] ciflow/trunk/161527 -> ciflow/trunk/161527 2025-09-07T06:19:13.1033772Z * [new tag] ciflow/trunk/161534 -> ciflow/trunk/161534 2025-09-07T06:19:13.1033924Z * [new tag] ciflow/trunk/161591 -> ciflow/trunk/161591 2025-09-07T06:19:13.1034069Z * [new tag] ciflow/trunk/161595 -> ciflow/trunk/161595 2025-09-07T06:19:13.1034212Z * [new tag] ciflow/trunk/161596 -> ciflow/trunk/161596 2025-09-07T06:19:13.1034366Z * [new tag] ciflow/trunk/161633 -> ciflow/trunk/161633 2025-09-07T06:19:13.1034517Z * [new tag] ciflow/trunk/161634 -> ciflow/trunk/161634 2025-09-07T06:19:13.1034662Z * [new tag] ciflow/trunk/161635 -> ciflow/trunk/161635 2025-09-07T06:19:13.1034819Z * [new tag] ciflow/trunk/161667 -> ciflow/trunk/161667 2025-09-07T06:19:13.1034961Z * [new tag] ciflow/trunk/161670 -> ciflow/trunk/161670 2025-09-07T06:19:13.1035107Z * [new tag] ciflow/trunk/161692 -> ciflow/trunk/161692 2025-09-07T06:19:13.1035263Z * [new tag] ciflow/trunk/161693 -> ciflow/trunk/161693 2025-09-07T06:19:13.1035413Z * [new tag] ciflow/trunk/161695 -> ciflow/trunk/161695 2025-09-07T06:19:13.1035557Z * [new tag] ciflow/trunk/161730 -> ciflow/trunk/161730 2025-09-07T06:19:13.1035700Z * [new tag] ciflow/trunk/161744 -> ciflow/trunk/161744 2025-09-07T06:19:13.1035923Z * [new tag] ciflow/trunk/161749 -> ciflow/trunk/161749 2025-09-07T06:19:13.1036067Z * [new tag] ciflow/trunk/161881 -> ciflow/trunk/161881 2025-09-07T06:19:13.1036212Z * [new tag] ciflow/trunk/161924 -> ciflow/trunk/161924 2025-09-07T06:19:13.1036362Z * [new tag] ciflow/trunk/161926 -> ciflow/trunk/161926 2025-09-07T06:19:13.1036509Z * [new tag] ciflow/trunk/161936 -> ciflow/trunk/161936 2025-09-07T06:19:13.1036654Z * [new tag] ciflow/trunk/161952 -> ciflow/trunk/161952 2025-09-07T06:19:13.1036805Z * [new tag] ciflow/trunk/161955 -> ciflow/trunk/161955 2025-09-07T06:19:13.1036950Z * [new tag] ciflow/trunk/161957 -> ciflow/trunk/161957 2025-09-07T06:19:13.1037092Z * [new tag] ciflow/trunk/161959 -> ciflow/trunk/161959 2025-09-07T06:19:13.1037305Z * [new tag] ciflow/trunk/161977 -> ciflow/trunk/161977 2025-09-07T06:19:13.1037455Z * [new tag] ciflow/trunk/161988 -> ciflow/trunk/161988 2025-09-07T06:19:13.1037600Z * [new tag] ciflow/trunk/161994 -> ciflow/trunk/161994 2025-09-07T06:19:13.1037750Z * [new tag] ciflow/trunk/162007 -> ciflow/trunk/162007 2025-09-07T06:19:13.1037894Z * [new tag] ciflow/trunk/162013 -> ciflow/trunk/162013 2025-09-07T06:19:13.1038037Z * [new tag] ciflow/trunk/162017 -> ciflow/trunk/162017 2025-09-07T06:19:13.1038180Z * [new tag] ciflow/trunk/162021 -> ciflow/trunk/162021 2025-09-07T06:19:13.1038331Z * [new tag] ciflow/trunk/162022 -> ciflow/trunk/162022 2025-09-07T06:19:13.1038474Z * [new tag] ciflow/trunk/162040 -> ciflow/trunk/162040 2025-09-07T06:19:13.1038622Z * [new tag] ciflow/trunk/162041 -> ciflow/trunk/162041 2025-09-07T06:19:13.1038845Z * [new tag] ciflow/trunk/162062 -> ciflow/trunk/162062 2025-09-07T06:19:13.1038995Z * [new tag] ciflow/trunk/162066 -> ciflow/trunk/162066 2025-09-07T06:19:13.1039179Z * [new tag] ciflow/trunk/162089 -> ciflow/trunk/162089 2025-09-07T06:19:13.1039335Z * [new tag] ciflow/trunk/162099 -> ciflow/trunk/162099 2025-09-07T06:19:13.1039478Z * [new tag] ciflow/trunk/162104 -> ciflow/trunk/162104 2025-09-07T06:19:13.1039663Z * [new tag] ciflow/trunk/162106 -> ciflow/trunk/162106 2025-09-07T06:19:13.1039817Z * [new tag] ciflow/trunk/162112 -> ciflow/trunk/162112 2025-09-07T06:19:13.1039961Z * [new tag] ciflow/trunk/162119 -> ciflow/trunk/162119 2025-09-07T06:19:13.1040105Z * [new tag] ciflow/trunk/162142 -> ciflow/trunk/162142 2025-09-07T06:19:13.1040264Z * [new tag] ciflow/trunk/162169 -> ciflow/trunk/162169 2025-09-07T06:19:13.1040410Z * [new tag] ciflow/trunk/162183 -> ciflow/trunk/162183 2025-09-07T06:19:13.1040556Z * [new tag] ciflow/trunk/162190 -> ciflow/trunk/162190 2025-09-07T06:19:13.1040700Z * [new tag] ciflow/trunk/162194 -> ciflow/trunk/162194 2025-09-07T06:19:13.1040856Z * [new tag] ciflow/trunk/162200 -> ciflow/trunk/162200 2025-09-07T06:19:13.1040999Z * [new tag] ciflow/trunk/162206 -> ciflow/trunk/162206 2025-09-07T06:19:13.1041142Z * [new tag] ciflow/trunk/162208 -> ciflow/trunk/162208 2025-09-07T06:19:13.1041297Z * [new tag] ciflow/trunk/162222 -> ciflow/trunk/162222 2025-09-07T06:19:13.1041438Z * [new tag] ciflow/trunk/162238 -> ciflow/trunk/162238 2025-09-07T06:19:13.1041584Z * [new tag] ciflow/trunk/162244 -> ciflow/trunk/162244 2025-09-07T06:19:13.1041808Z * [new tag] ciflow/trunk/162267 -> ciflow/trunk/162267 2025-09-07T06:19:13.1041951Z * [new tag] ciflow/trunk/162269 -> ciflow/trunk/162269 2025-09-07T06:19:13.1042098Z * [new tag] ciflow/trunk/162278 -> ciflow/trunk/162278 2025-09-07T06:19:13.1042256Z * [new tag] ciflow/trunk/162286 -> ciflow/trunk/162286 2025-09-07T06:19:13.1042405Z * [new tag] ciflow/trunk/162288 -> ciflow/trunk/162288 2025-09-07T06:19:13.1042550Z * [new tag] ciflow/trunk/162293 -> ciflow/trunk/162293 2025-09-07T06:19:13.1042705Z * [new tag] ciflow/trunk/162310 -> ciflow/trunk/162310 2025-09-07T06:19:13.1042849Z * [new tag] ciflow/trunk/162311 -> ciflow/trunk/162311 2025-09-07T06:19:13.1043058Z * [new tag] ciflow/trunk/162315 -> ciflow/trunk/162315 2025-09-07T06:19:13.1043215Z * [new tag] ciflow/trunk/162325 -> ciflow/trunk/162325 2025-09-07T06:19:13.1043361Z * [new tag] ciflow/trunk/162328 -> ciflow/trunk/162328 2025-09-07T06:19:13.1043510Z * [new tag] ciflow/trunk/162329 -> ciflow/trunk/162329 2025-09-07T06:19:13.1043656Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-09-07T06:19:13.1043811Z * [new tag] ciflow/vllm/162292 -> ciflow/vllm/162292 2025-09-07T06:19:13.1043980Z * [new tag] ciflow/win-arm64/156049 -> ciflow/win-arm64/156049 2025-09-07T06:19:13.1044149Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-09-07T06:19:13.1044304Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-09-07T06:19:13.1044445Z * [new tag] ciflow/xpu/157994 -> ciflow/xpu/157994 2025-09-07T06:19:13.1044593Z * [new tag] ciflow/xpu/159459 -> ciflow/xpu/159459 2025-09-07T06:19:13.1044743Z * [new tag] ciflow/xpu/159718 -> ciflow/xpu/159718 2025-09-07T06:19:13.1044883Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-09-07T06:19:13.1045020Z * [new tag] ciflow/xpu/160867 -> ciflow/xpu/160867 2025-09-07T06:19:13.1045167Z * [new tag] ciflow/xpu/160938 -> ciflow/xpu/160938 2025-09-07T06:19:13.1045304Z * [new tag] ciflow/xpu/160940 -> ciflow/xpu/160940 2025-09-07T06:19:13.1045443Z * [new tag] ciflow/xpu/160953 -> ciflow/xpu/160953 2025-09-07T06:19:13.1045597Z * [new tag] ciflow/xpu/161045 -> ciflow/xpu/161045 2025-09-07T06:19:13.1045740Z * [new tag] ciflow/xpu/161058 -> ciflow/xpu/161058 2025-09-07T06:19:13.1045880Z * [new tag] ciflow/xpu/161246 -> ciflow/xpu/161246 2025-09-07T06:19:13.1046027Z * [new tag] ciflow/xpu/161397 -> ciflow/xpu/161397 2025-09-07T06:19:13.1046176Z * [new tag] ciflow/xpu/161485 -> ciflow/xpu/161485 2025-09-07T06:19:13.1046319Z * [new tag] ciflow/xpu/161988 -> ciflow/xpu/161988 2025-09-07T06:19:13.1046457Z * [new tag] ciflow/xpu/162062 -> ciflow/xpu/162062 2025-09-07T06:19:13.1046597Z * [new tag] cslpull75 -> cslpull75 2025-09-07T06:19:13.1046726Z * [new tag] cslpull76 -> cslpull76 2025-09-07T06:19:13.1046851Z * [new tag] cslpull77 -> cslpull77 2025-09-07T06:19:13.1046982Z * [new tag] cslpull78 -> cslpull78 2025-09-07T06:19:13.1047110Z * [new tag] cslpull79 -> cslpull79 2025-09-07T06:19:13.1047234Z * [new tag] cslpull80 -> cslpull80 2025-09-07T06:19:13.1047430Z * [new tag] cslpull81 -> cslpull81 2025-09-07T06:19:13.1047554Z * [new tag] cslpull82 -> cslpull82 2025-09-07T06:19:13.1047675Z * [new tag] cslpull83 -> cslpull83 2025-09-07T06:19:13.1047805Z * [new tag] cslpull84 -> cslpull84 2025-09-07T06:19:13.1047926Z * [new tag] cslpull85 -> cslpull85 2025-09-07T06:19:13.1048052Z * [new tag] cslpull86 -> cslpull86 2025-09-07T06:19:13.1048173Z * [new tag] cslpull87 -> cslpull87 2025-09-07T06:19:13.1048300Z * [new tag] cslpull88 -> cslpull88 2025-09-07T06:19:13.1048420Z * [new tag] cslpull89 -> cslpull89 2025-09-07T06:19:13.1048610Z * [new tag] cslpull90 -> cslpull90 2025-09-07T06:19:13.1048743Z * [new tag] cslpull91 -> cslpull91 2025-09-07T06:19:13.1048864Z * [new tag] cslpull92 -> cslpull92 2025-09-07T06:19:13.1048989Z * [new tag] flight_5 -> flight_5 2025-09-07T06:19:13.1049123Z * [new tag] flight_5.1 -> flight_5.1 2025-09-07T06:19:13.1049246Z * [new tag] flight_5.2 -> flight_5.2 2025-09-07T06:19:13.1049371Z * [new tag] flight_5.3 -> flight_5.3 2025-09-07T06:19:13.1049504Z * [new tag] forpull1 -> forpull1 2025-09-07T06:19:13.1049659Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-09-07T06:19:13.1049808Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-09-07T06:19:13.1049959Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-09-07T06:19:13.1050123Z * [new tag] nightly-binary -> nightly-binary 2025-09-07T06:19:13.1050277Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-09-07T06:19:13.1050418Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-09-07T06:19:13.1050767Z * [new tag] trunk/00636e0171e7e733628c408084805442270cf608 -> trunk/00636e0171e7e733628c408084805442270cf608 2025-09-07T06:19:13.1051119Z * [new tag] trunk/019fed39aa6b2dd8c69347378d53423e5efae8d4 -> trunk/019fed39aa6b2dd8c69347378d53423e5efae8d4 2025-09-07T06:19:13.1051462Z * [new tag] trunk/01ab325cc2e0dc221af4d710974e1b9175066544 -> trunk/01ab325cc2e0dc221af4d710974e1b9175066544 2025-09-07T06:19:13.1051829Z * [new tag] trunk/01edcd4df8bf0c7b4cc2d3ec868bd2059eeea83b -> trunk/01edcd4df8bf0c7b4cc2d3ec868bd2059eeea83b 2025-09-07T06:19:13.1052173Z * [new tag] trunk/040d00af048967dde7938d358d7f5988cbd18388 -> trunk/040d00af048967dde7938d358d7f5988cbd18388 2025-09-07T06:19:13.1052517Z * [new tag] trunk/0447f2d99b4351b2ff129dce6eebb371024f73e5 -> trunk/0447f2d99b4351b2ff129dce6eebb371024f73e5 2025-09-07T06:19:13.1052851Z * [new tag] trunk/047603d35bdc70046216384838d6340feab79bf4 -> trunk/047603d35bdc70046216384838d6340feab79bf4 2025-09-07T06:19:13.1053203Z * [new tag] trunk/06da7c0730b3764f178ec3a90dedf4ffa4202d81 -> trunk/06da7c0730b3764f178ec3a90dedf4ffa4202d81 2025-09-07T06:19:13.1053537Z * [new tag] trunk/081cab045472ce045634548cc6c14a4870641e23 -> trunk/081cab045472ce045634548cc6c14a4870641e23 2025-09-07T06:19:13.1053884Z * [new tag] trunk/09587daf8c9f21f5340f73921ce5f23d1a4a4572 -> trunk/09587daf8c9f21f5340f73921ce5f23d1a4a4572 2025-09-07T06:19:13.1054223Z * [new tag] trunk/09be1890d72cc34fc946965dc4a27736bf0ca8c6 -> trunk/09be1890d72cc34fc946965dc4a27736bf0ca8c6 2025-09-07T06:19:13.1054618Z * [new tag] trunk/09d2f1b6315d6d416fbf452793d65795863ebc66 -> trunk/09d2f1b6315d6d416fbf452793d65795863ebc66 2025-09-07T06:19:13.1054984Z * [new tag] trunk/0af70e2353e1dcda83175fd4834ecb7b63e009e0 -> trunk/0af70e2353e1dcda83175fd4834ecb7b63e009e0 2025-09-07T06:19:13.1055327Z * [new tag] trunk/0c0e056a9e20c17271a6144dd32c0c7e3ba26736 -> trunk/0c0e056a9e20c17271a6144dd32c0c7e3ba26736 2025-09-07T06:19:13.1055678Z * [new tag] trunk/0cd6c56bdfa9178ff61be82ce3b178926ddb64a9 -> trunk/0cd6c56bdfa9178ff61be82ce3b178926ddb64a9 2025-09-07T06:19:13.1056033Z * [new tag] trunk/0d421ace32c1605ee8e452ee1eeb03bd243dd96c -> trunk/0d421ace32c1605ee8e452ee1eeb03bd243dd96c 2025-09-07T06:19:13.1056386Z * [new tag] trunk/0d71a9dd5b4b6d1dde58d91c9b71d96bc6a6a171 -> trunk/0d71a9dd5b4b6d1dde58d91c9b71d96bc6a6a171 2025-09-07T06:19:13.1056794Z * [new tag] trunk/0d84ff3b78f55492d3d4708458c92d776274939e -> trunk/0d84ff3b78f55492d3d4708458c92d776274939e 2025-09-07T06:19:13.1057144Z * [new tag] trunk/0f45aaf4414048b17d720d0915ce221a8de8ec63 -> trunk/0f45aaf4414048b17d720d0915ce221a8de8ec63 2025-09-07T06:19:13.1057503Z * [new tag] trunk/0ff8eabf1387de5acd6712a03bda61f1a3dfa27f -> trunk/0ff8eabf1387de5acd6712a03bda61f1a3dfa27f 2025-09-07T06:19:13.1057857Z * [new tag] trunk/104f2680e03d13a4765ca69f905d8f16fc0c822f -> trunk/104f2680e03d13a4765ca69f905d8f16fc0c822f 2025-09-07T06:19:13.1058198Z * [new tag] trunk/12814701555d3e41dfcdf8f9273af5821e322df0 -> trunk/12814701555d3e41dfcdf8f9273af5821e322df0 2025-09-07T06:19:13.1058538Z * [new tag] trunk/13b65196db422bdb394cb482e208c61ed448898c -> trunk/13b65196db422bdb394cb482e208c61ed448898c 2025-09-07T06:19:13.1058895Z * [new tag] trunk/13d66e2a66eceed14b8a8f5a971087df4f688a46 -> trunk/13d66e2a66eceed14b8a8f5a971087df4f688a46 2025-09-07T06:19:13.1059250Z * [new tag] trunk/145a3a7bda15e3963a33eb1b54bba5d4a270b225 -> trunk/145a3a7bda15e3963a33eb1b54bba5d4a270b225 2025-09-07T06:19:13.1059590Z * [new tag] trunk/146371483318e17929daefd37c8e459d9d6d47bb -> trunk/146371483318e17929daefd37c8e459d9d6d47bb 2025-09-07T06:19:13.1059945Z * [new tag] trunk/15c77a8cfd341e74fd124b077492ef2bfa51b339 -> trunk/15c77a8cfd341e74fd124b077492ef2bfa51b339 2025-09-07T06:19:13.1060292Z * [new tag] trunk/17fa8eec4a1e32939ab4d364ee6e75487a79b654 -> trunk/17fa8eec4a1e32939ab4d364ee6e75487a79b654 2025-09-07T06:19:13.1060629Z * [new tag] trunk/190c391a28845a14df26abb228d26aa813efb20c -> trunk/190c391a28845a14df26abb228d26aa813efb20c 2025-09-07T06:19:13.1060991Z * [new tag] trunk/1a588ace4667bde1331fbd8ed957157dca5cee68 -> trunk/1a588ace4667bde1331fbd8ed957157dca5cee68 2025-09-07T06:19:13.1061341Z * [new tag] trunk/1aa7476885e8f6e7b0ec3a5b6383aad9d3f343e7 -> trunk/1aa7476885e8f6e7b0ec3a5b6383aad9d3f343e7 2025-09-07T06:19:13.1061695Z * [new tag] trunk/1aeb421c342c9e9607842f4c87cb46e8e816ee53 -> trunk/1aeb421c342c9e9607842f4c87cb46e8e816ee53 2025-09-07T06:19:13.1062047Z * [new tag] trunk/1c1b28d5b6a942fafe23b2f09302d93c25226d4a -> trunk/1c1b28d5b6a942fafe23b2f09302d93c25226d4a 2025-09-07T06:19:13.1062397Z * [new tag] trunk/1ebd70d0c0d562d3be9abdee2a21906584af7d99 -> trunk/1ebd70d0c0d562d3be9abdee2a21906584af7d99 2025-09-07T06:19:13.1062748Z * [new tag] trunk/1ec2c15914da4ef7bd926ed9aebc8671c75fe965 -> trunk/1ec2c15914da4ef7bd926ed9aebc8671c75fe965 2025-09-07T06:19:13.1063095Z * [new tag] trunk/1f51056bd64e73d1aa81321bc3c098575b1bc78a -> trunk/1f51056bd64e73d1aa81321bc3c098575b1bc78a 2025-09-07T06:19:13.1063431Z * [new tag] trunk/1f820de639c75a1562d3fb03f160439f853ae07b -> trunk/1f820de639c75a1562d3fb03f160439f853ae07b 2025-09-07T06:19:13.1063827Z * [new tag] trunk/204697f0e695d82894c5010fbec664c4391f90cc -> trunk/204697f0e695d82894c5010fbec664c4391f90cc 2025-09-07T06:19:13.1064168Z * [new tag] trunk/20629b1619fe636227d01fc85ba221daa7185a05 -> trunk/20629b1619fe636227d01fc85ba221daa7185a05 2025-09-07T06:19:13.1064515Z * [new tag] trunk/20b47acef845e9c4f71da9429a396d293f50ebe7 -> trunk/20b47acef845e9c4f71da9429a396d293f50ebe7 2025-09-07T06:19:13.1064852Z * [new tag] trunk/20bfb2539d7c5250379648eda35f80b8a7d642dd -> trunk/20bfb2539d7c5250379648eda35f80b8a7d642dd 2025-09-07T06:19:13.1065294Z * [new tag] trunk/21fae99c180d17def562797ea0fb154d8fdf88e3 -> trunk/21fae99c180d17def562797ea0fb154d8fdf88e3 2025-09-07T06:19:13.1065638Z * [new tag] trunk/248355faf53f9f7ba2fd0a367d59600c6d991e7f -> trunk/248355faf53f9f7ba2fd0a367d59600c6d991e7f 2025-09-07T06:19:13.1066054Z * [new tag] trunk/25f4aaed9ec26f39c13862323ff8582006473d23 -> trunk/25f4aaed9ec26f39c13862323ff8582006473d23 2025-09-07T06:19:13.1066399Z * [new tag] trunk/261a84a1764412f8e659c956e3f81997ec3de9d5 -> trunk/261a84a1764412f8e659c956e3f81997ec3de9d5 2025-09-07T06:19:13.1066730Z * [new tag] trunk/28f4ab0737937858730f29f5c4e601e109cf9d5f -> trunk/28f4ab0737937858730f29f5c4e601e109cf9d5f 2025-09-07T06:19:13.1067077Z * [new tag] trunk/291cd11f2d5df6f48d348cce0e4e762f274f4dc4 -> trunk/291cd11f2d5df6f48d348cce0e4e762f274f4dc4 2025-09-07T06:19:13.1067412Z * [new tag] trunk/29280864d941e6108ab57f7298f520c0cf9696e9 -> trunk/29280864d941e6108ab57f7298f520c0cf9696e9 2025-09-07T06:19:13.1067751Z * [new tag] trunk/2a45837e98c63cae9d1a2e2133a727b829e549d5 -> trunk/2a45837e98c63cae9d1a2e2133a727b829e549d5 2025-09-07T06:19:13.1068095Z * [new tag] trunk/2a5c0785e2f975697fd7bdf1411de6e03dcaa1ef -> trunk/2a5c0785e2f975697fd7bdf1411de6e03dcaa1ef 2025-09-07T06:19:13.1068453Z * [new tag] trunk/2b8a83901c58a0858ea9e4ce00055f48e6ed164c -> trunk/2b8a83901c58a0858ea9e4ce00055f48e6ed164c 2025-09-07T06:19:13.1068789Z * [new tag] trunk/2ba65472dd54488a86a50326ea990195fc6732d6 -> trunk/2ba65472dd54488a86a50326ea990195fc6732d6 2025-09-07T06:19:13.1069141Z * [new tag] trunk/2c03f0acc53ed13fe8ebfe809129f25996e009a0 -> trunk/2c03f0acc53ed13fe8ebfe809129f25996e009a0 2025-09-07T06:19:13.1069498Z * [new tag] trunk/2dd529df0092799f68ee7afcf52338276906706a -> trunk/2dd529df0092799f68ee7afcf52338276906706a 2025-09-07T06:19:13.1069897Z * [new tag] trunk/2f6b4b1ad3f82bb3bd984f6e65744ea339ffb8b5 -> trunk/2f6b4b1ad3f82bb3bd984f6e65744ea339ffb8b5 2025-09-07T06:19:13.1070271Z * [new tag] trunk/2fa0520a64ed8aa734a56c4d124958f0b5711ca8 -> trunk/2fa0520a64ed8aa734a56c4d124958f0b5711ca8 2025-09-07T06:19:13.1070675Z * [new tag] trunk/302df2ac5dc4222294c09d48804a2dddb8f4bad8 -> trunk/302df2ac5dc4222294c09d48804a2dddb8f4bad8 2025-09-07T06:19:13.1071028Z * [new tag] trunk/33028597bfa2e0178e28c8cce33cb9b3800cac43 -> trunk/33028597bfa2e0178e28c8cce33cb9b3800cac43 2025-09-07T06:19:13.1071358Z * [new tag] trunk/34aa78274d6770086025a967fa63a86830e08176 -> trunk/34aa78274d6770086025a967fa63a86830e08176 2025-09-07T06:19:13.1071709Z * [new tag] trunk/3559c354ce6a14d11fe29fb12fa2747a2f2af449 -> trunk/3559c354ce6a14d11fe29fb12fa2747a2f2af449 2025-09-07T06:19:13.1072058Z * [new tag] trunk/36d207fcaaede0d1e58a5168084c307b32b6fd8b -> trunk/36d207fcaaede0d1e58a5168084c307b32b6fd8b 2025-09-07T06:19:13.1072398Z * [new tag] trunk/377033757ae5ca524ea842f1b0a5f446ed3d8fe0 -> trunk/377033757ae5ca524ea842f1b0a5f446ed3d8fe0 2025-09-07T06:19:13.1072747Z * [new tag] trunk/3771380f83fcac154a7c89ad679311d8c4818287 -> trunk/3771380f83fcac154a7c89ad679311d8c4818287 2025-09-07T06:19:13.1073150Z * [new tag] trunk/3a207816cc569f78863d86c01f2a3d265350e39f -> trunk/3a207816cc569f78863d86c01f2a3d265350e39f 2025-09-07T06:19:13.1073492Z * [new tag] trunk/3a20a20e7065ec927fdd216d4da3b04f879b3c67 -> trunk/3a20a20e7065ec927fdd216d4da3b04f879b3c67 2025-09-07T06:19:13.1073860Z * [new tag] trunk/3bbc2e3e4f025523eaa5dbff220b3e96bca608d0 -> trunk/3bbc2e3e4f025523eaa5dbff220b3e96bca608d0 2025-09-07T06:19:13.1074207Z * [new tag] trunk/3c0ff1b569c45cfa6935ad8031a9d4cf1551aa3f -> trunk/3c0ff1b569c45cfa6935ad8031a9d4cf1551aa3f 2025-09-07T06:19:13.1074554Z * [new tag] trunk/3c45af079afc92a03b03ddf4f9198902ffcf30cf -> trunk/3c45af079afc92a03b03ddf4f9198902ffcf30cf 2025-09-07T06:19:13.1074910Z * [new tag] trunk/3dde5d7f9bf80dd6623a712bc429e9e4302464b5 -> trunk/3dde5d7f9bf80dd6623a712bc429e9e4302464b5 2025-09-07T06:19:13.1075253Z * [new tag] trunk/403a3a393cda7e60f503f3b04b8805a845dcf45d -> trunk/403a3a393cda7e60f503f3b04b8805a845dcf45d 2025-09-07T06:19:13.1075669Z * [new tag] trunk/420c52ecf36f86d32da0853bfbe074b682b070aa -> trunk/420c52ecf36f86d32da0853bfbe074b682b070aa 2025-09-07T06:19:13.1076025Z * [new tag] trunk/43b7c86a2c0f91320f5c5f4827b111edff06fdb6 -> trunk/43b7c86a2c0f91320f5c5f4827b111edff06fdb6 2025-09-07T06:19:13.1076366Z * [new tag] trunk/451ed931562ec8b46d1f7e6c266a68132a119336 -> trunk/451ed931562ec8b46d1f7e6c266a68132a119336 2025-09-07T06:19:13.1076701Z * [new tag] trunk/480c7391126656154318fabf1d57ebc01e196e63 -> trunk/480c7391126656154318fabf1d57ebc01e196e63 2025-09-07T06:19:13.1077062Z * [new tag] trunk/48bedd753da22634aa94fbafeb731e82025404f3 -> trunk/48bedd753da22634aa94fbafeb731e82025404f3 2025-09-07T06:19:13.1077398Z * [new tag] trunk/494878a11b79071ada0b98f34042d47155be6d1c -> trunk/494878a11b79071ada0b98f34042d47155be6d1c 2025-09-07T06:19:13.1077753Z * [new tag] trunk/4ae57d448c0a7d37e4cfd5c27d977fad2cef4051 -> trunk/4ae57d448c0a7d37e4cfd5c27d977fad2cef4051 2025-09-07T06:19:13.1078107Z * [new tag] trunk/4cdaf8265d86f984254b62052da8c26ef61ef1cf -> trunk/4cdaf8265d86f984254b62052da8c26ef61ef1cf 2025-09-07T06:19:13.1078467Z * [new tag] trunk/4d4abec80f03cd8fdefe1d9cb3a60d3690cd777e -> trunk/4d4abec80f03cd8fdefe1d9cb3a60d3690cd777e 2025-09-07T06:19:13.1078827Z * [new tag] trunk/4e42aa8ffc44b8340eb0eeaf80a2cafc4763a186 -> trunk/4e42aa8ffc44b8340eb0eeaf80a2cafc4763a186 2025-09-07T06:19:13.1079176Z * [new tag] trunk/4f72d932feee0749397fec876dcd43994f50b215 -> trunk/4f72d932feee0749397fec876dcd43994f50b215 2025-09-07T06:19:13.1079525Z * [new tag] trunk/50fc22dedf3c4a27be61fa05551c4f320281b42d -> trunk/50fc22dedf3c4a27be61fa05551c4f320281b42d 2025-09-07T06:19:13.1079861Z * [new tag] trunk/5211f1f908907ffc064b56e43cf8659f7fc22aa9 -> trunk/5211f1f908907ffc064b56e43cf8659f7fc22aa9 2025-09-07T06:19:13.1080216Z * [new tag] trunk/524b78d4f67045b83bb69edc56ab16efe282971c -> trunk/524b78d4f67045b83bb69edc56ab16efe282971c 2025-09-07T06:19:13.1080579Z * [new tag] trunk/54e275e0d81fe1e1ccfa4fb5f2a5a9aaca00ca15 -> trunk/54e275e0d81fe1e1ccfa4fb5f2a5a9aaca00ca15 2025-09-07T06:19:13.1080910Z * [new tag] trunk/5561e45758d59c94605873d5db48ed459c004c3b -> trunk/5561e45758d59c94605873d5db48ed459c004c3b 2025-09-07T06:19:13.1081268Z * [new tag] trunk/57278d45f046d4f89f45d373b1af4dd56934ff24 -> trunk/57278d45f046d4f89f45d373b1af4dd56934ff24 2025-09-07T06:19:13.1081605Z * [new tag] trunk/5927a70934ccf7b70182d364c23245a7dd685503 -> trunk/5927a70934ccf7b70182d364c23245a7dd685503 2025-09-07T06:19:13.1081948Z * [new tag] trunk/5985e28912aeb40b103ebfcf2fd0665eb4a50599 -> trunk/5985e28912aeb40b103ebfcf2fd0665eb4a50599 2025-09-07T06:19:13.1082311Z * [new tag] trunk/5a2da090ed6db88bb657c4e51ec0b310cd08bff6 -> trunk/5a2da090ed6db88bb657c4e51ec0b310cd08bff6 2025-09-07T06:19:13.1082723Z * [new tag] trunk/5c473e9f5ee0ef0fc38e6cf34a95b547f8cdc8d5 -> trunk/5c473e9f5ee0ef0fc38e6cf34a95b547f8cdc8d5 2025-09-07T06:19:13.1083057Z * [new tag] trunk/5c67426d6847667a7c55a2dd01f470fa37238c18 -> trunk/5c67426d6847667a7c55a2dd01f470fa37238c18 2025-09-07T06:19:13.1083407Z * [new tag] trunk/5da573c42c332bc68d4b7946c69f690a876d951a -> trunk/5da573c42c332bc68d4b7946c69f690a876d951a 2025-09-07T06:19:13.1083742Z * [new tag] trunk/5e5870e858f60ff4bf87d03f3592097e934a9580 -> trunk/5e5870e858f60ff4bf87d03f3592097e934a9580 2025-09-07T06:19:13.1084095Z * [new tag] trunk/5f3cbc9442aa55b5afb29f4ac8ca9be569003e84 -> trunk/5f3cbc9442aa55b5afb29f4ac8ca9be569003e84 2025-09-07T06:19:13.1084445Z * [new tag] trunk/600c25e9a17fe56e3dee872be8854db08916ba0c -> trunk/600c25e9a17fe56e3dee872be8854db08916ba0c 2025-09-07T06:19:13.1084877Z * [new tag] trunk/601ae8e4831fc8123fffcfb8fd2e6b6381b42e14 -> trunk/601ae8e4831fc8123fffcfb8fd2e6b6381b42e14 2025-09-07T06:19:13.1085224Z * [new tag] trunk/6087ef41e54c2494b117ffd923faf20f515a6806 -> trunk/6087ef41e54c2494b117ffd923faf20f515a6806 2025-09-07T06:19:13.1085577Z * [new tag] trunk/626cb7df8161dd4ecb4fe43b60f37ce9076f56b1 -> trunk/626cb7df8161dd4ecb4fe43b60f37ce9076f56b1 2025-09-07T06:19:13.1085920Z * [new tag] trunk/62c3f9a97fd3dea7132a93066d32d893ffe101e6 -> trunk/62c3f9a97fd3dea7132a93066d32d893ffe101e6 2025-09-07T06:19:13.1086285Z * [new tag] trunk/63a9c23fe99eacfd09610c36dfe8f01b053c1a35 -> trunk/63a9c23fe99eacfd09610c36dfe8f01b053c1a35 2025-09-07T06:19:13.1086617Z * [new tag] trunk/65985937d97505f648b6ed852c3129f2dd08b251 -> trunk/65985937d97505f648b6ed852c3129f2dd08b251 2025-09-07T06:19:13.1086952Z * [new tag] trunk/66f3b4a682a6153517dd23369fdc3289b6494b07 -> trunk/66f3b4a682a6153517dd23369fdc3289b6494b07 2025-09-07T06:19:13.1087297Z * [new tag] trunk/6737e2c996990024187ba620d2764f3b6f6add2c -> trunk/6737e2c996990024187ba620d2764f3b6f6add2c 2025-09-07T06:19:13.1087636Z * [new tag] trunk/67c31dcd364f10072a55f4a30ffd1151c686283a -> trunk/67c31dcd364f10072a55f4a30ffd1151c686283a 2025-09-07T06:19:13.1087987Z * [new tag] trunk/68738beff73e9c3512e18b4edea811a897ce42db -> trunk/68738beff73e9c3512e18b4edea811a897ce42db 2025-09-07T06:19:13.1088321Z * [new tag] trunk/69a25f68884a168550695fdb1a7c310c54d29536 -> trunk/69a25f68884a168550695fdb1a7c310c54d29536 2025-09-07T06:19:13.1088657Z * [new tag] trunk/6b1900c22f1a07b9519346898d4c71d8a2b0f12f -> trunk/6b1900c22f1a07b9519346898d4c71d8a2b0f12f 2025-09-07T06:19:13.1088993Z * [new tag] trunk/6b8b3ac4403f771bd4a8f9a45d93347304148774 -> trunk/6b8b3ac4403f771bd4a8f9a45d93347304148774 2025-09-07T06:19:13.1089342Z * [new tag] trunk/6f7608d603834d6068b2e7a5d59bec3973b6bb1b -> trunk/6f7608d603834d6068b2e7a5d59bec3973b6bb1b 2025-09-07T06:19:13.1089678Z * [new tag] trunk/70d36e047dfb3488fd6335016711a784d810ebda -> trunk/70d36e047dfb3488fd6335016711a784d810ebda 2025-09-07T06:19:13.1090014Z * [new tag] trunk/71992dd805ff9d6763f77214dfe8b0465e88c87b -> trunk/71992dd805ff9d6763f77214dfe8b0465e88c87b 2025-09-07T06:19:13.1090368Z * [new tag] trunk/734ce8eba9c69381f187359bf0fef1d71d84cd20 -> trunk/734ce8eba9c69381f187359bf0fef1d71d84cd20 2025-09-07T06:19:13.1090704Z * [new tag] trunk/73eb4511fb863a37944342b7e92aae706de603c8 -> trunk/73eb4511fb863a37944342b7e92aae706de603c8 2025-09-07T06:19:13.1091053Z * [new tag] trunk/75bc23cfc345bd4c05e7f97c416c4b3d2d1fa64b -> trunk/75bc23cfc345bd4c05e7f97c416c4b3d2d1fa64b 2025-09-07T06:19:13.1091397Z * [new tag] trunk/771f369448321a387f2018535bc8b8b6e5f12fab -> trunk/771f369448321a387f2018535bc8b8b6e5f12fab 2025-09-07T06:19:13.1091793Z * [new tag] trunk/789d4942127143f2adcb53612c058ce4c9a2cf20 -> trunk/789d4942127143f2adcb53612c058ce4c9a2cf20 2025-09-07T06:19:13.1092130Z * [new tag] trunk/791eff96c85678c950888f9da24650083ee673fe -> trunk/791eff96c85678c950888f9da24650083ee673fe 2025-09-07T06:19:13.1092489Z * [new tag] trunk/793fc12aff1f69fbbf9f4278182fb52bbe350fc9 -> trunk/793fc12aff1f69fbbf9f4278182fb52bbe350fc9 2025-09-07T06:19:13.1092836Z * [new tag] trunk/79fcd5247a9a129eee526a14df30bfc6a22b3f01 -> trunk/79fcd5247a9a129eee526a14df30bfc6a22b3f01 2025-09-07T06:19:13.1093172Z * [new tag] trunk/7f4ff79210eb06924f223ae3a1941ee0e2635348 -> trunk/7f4ff79210eb06924f223ae3a1941ee0e2635348 2025-09-07T06:19:13.1093513Z * [new tag] trunk/8076a185c85112be62be292eb47409c88a585b1c -> trunk/8076a185c85112be62be292eb47409c88a585b1c 2025-09-07T06:19:13.1094329Z * [new tag] trunk/80dd397f1979371a5583fa3d5c7352029522a78d -> trunk/80dd397f1979371a5583fa3d5c7352029522a78d 2025-09-07T06:19:13.1094655Z * [new tag] trunk/8171d6052ec12628eb67e0040839314056014429 -> trunk/8171d6052ec12628eb67e0040839314056014429 2025-09-07T06:19:13.1095015Z * [new tag] trunk/81aeefa657b7ccc26b275c50a9f33b2f056e8071 -> trunk/81aeefa657b7ccc26b275c50a9f33b2f056e8071 2025-09-07T06:19:13.1095354Z * [new tag] trunk/81b7b16618bda250ce55982894a83dc0805eb64c -> trunk/81b7b16618bda250ce55982894a83dc0805eb64c 2025-09-07T06:19:13.1095700Z * [new tag] trunk/827f0d405448de31f79d1089f7d7fceab2f87895 -> trunk/827f0d405448de31f79d1089f7d7fceab2f87895 2025-09-07T06:19:13.1096061Z * [new tag] trunk/82f63c8f6de63c30132a8ac299b6e8c2fd0d3fe8 -> trunk/82f63c8f6de63c30132a8ac299b6e8c2fd0d3fe8 2025-09-07T06:19:13.1096407Z * [new tag] trunk/850e1382a9c56bfde18af09d3e72352d775e9435 -> trunk/850e1382a9c56bfde18af09d3e72352d775e9435 2025-09-07T06:19:13.1096747Z * [new tag] trunk/8678d831c48e616b717bff50f2d03141d2e9f965 -> trunk/8678d831c48e616b717bff50f2d03141d2e9f965 2025-09-07T06:19:13.1097098Z * [new tag] trunk/869cbcc16e489a4f5a14a93d5779b0ea86061c60 -> trunk/869cbcc16e489a4f5a14a93d5779b0ea86061c60 2025-09-07T06:19:13.1097449Z * [new tag] trunk/8703debf669bc2238211bfd039f4ecdd8228b7f7 -> trunk/8703debf669bc2238211bfd039f4ecdd8228b7f7 2025-09-07T06:19:13.1097796Z * [new tag] trunk/874069fbe46e82da5cfa405e6c0deb12e89ff608 -> trunk/874069fbe46e82da5cfa405e6c0deb12e89ff608 2025-09-07T06:19:13.1098152Z * [new tag] trunk/8875d6e394da2fffd04f31b28bf258c94d4776a3 -> trunk/8875d6e394da2fffd04f31b28bf258c94d4776a3 2025-09-07T06:19:13.1098493Z * [new tag] trunk/88d94d17e8c5155451393afa6eb3bab48ab61c16 -> trunk/88d94d17e8c5155451393afa6eb3bab48ab61c16 2025-09-07T06:19:13.1098834Z * [new tag] trunk/890626632def7e0ef95a2d01e87a0e4627824a9f -> trunk/890626632def7e0ef95a2d01e87a0e4627824a9f 2025-09-07T06:19:13.1099189Z * [new tag] trunk/8975cda2520b7b1b5bc3b4d8213edf261fa82570 -> trunk/8975cda2520b7b1b5bc3b4d8213edf261fa82570 2025-09-07T06:19:13.1099523Z * [new tag] trunk/89d41d3f61d04f14730ec26f008a59bef6624610 -> trunk/89d41d3f61d04f14730ec26f008a59bef6624610 2025-09-07T06:19:13.1099865Z * [new tag] trunk/8bb213b6d599ef1273fe52f9b1f6d476056c3a41 -> trunk/8bb213b6d599ef1273fe52f9b1f6d476056c3a41 2025-09-07T06:19:13.1100218Z * [new tag] trunk/8e23a1227b5fb2e39afaa7d57c075a75b640a5af -> trunk/8e23a1227b5fb2e39afaa7d57c075a75b640a5af 2025-09-07T06:19:13.1100570Z * [new tag] trunk/8ec551bb354ab2b85fbbba9d461740a20366d248 -> trunk/8ec551bb354ab2b85fbbba9d461740a20366d248 2025-09-07T06:19:13.1100919Z * [new tag] trunk/8fd3c9ce919c8d5c645fd348bba517e948cbc29d -> trunk/8fd3c9ce919c8d5c645fd348bba517e948cbc29d 2025-09-07T06:19:13.1101327Z * [new tag] trunk/90f50f7e68e120d9574e6e3189e37b4280010ad9 -> trunk/90f50f7e68e120d9574e6e3189e37b4280010ad9 2025-09-07T06:19:13.1101675Z * [new tag] trunk/91f0bcf43fc0bc743350d491ac63b77e92054ac9 -> trunk/91f0bcf43fc0bc743350d491ac63b77e92054ac9 2025-09-07T06:19:13.1102010Z * [new tag] trunk/92576a594b8121f6b0b1b5a3ea16d08792fc68ab -> trunk/92576a594b8121f6b0b1b5a3ea16d08792fc68ab 2025-09-07T06:19:13.1102360Z * [new tag] trunk/92a43025e0baa1f2ce345f28d22913b518a1ab9d -> trunk/92a43025e0baa1f2ce345f28d22913b518a1ab9d 2025-09-07T06:19:13.1110871Z * [new tag] trunk/93fb23d6fae7c4e82c4239a1033e522088742634 -> trunk/93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:19:13.1111333Z * [new tag] trunk/9458d1ac3bd70c2af316a8ba95d2c6c9c1199c9c -> trunk/9458d1ac3bd70c2af316a8ba95d2c6c9c1199c9c 2025-09-07T06:19:13.1111694Z * [new tag] trunk/9480cdc0b61488c89a23c2f64f43b2dcedc8728e -> trunk/9480cdc0b61488c89a23c2f64f43b2dcedc8728e 2025-09-07T06:19:13.1112214Z * [new tag] trunk/9491d289b329e4ba4a9f5f5b1be7960671bb7840 -> trunk/9491d289b329e4ba4a9f5f5b1be7960671bb7840 2025-09-07T06:19:13.1112567Z * [new tag] trunk/9499c8761cd2067feb9877414e818f6fd00290f1 -> trunk/9499c8761cd2067feb9877414e818f6fd00290f1 2025-09-07T06:19:13.1112914Z * [new tag] trunk/95ee0bfea99d3d346d6502b91b497d2b35795504 -> trunk/95ee0bfea99d3d346d6502b91b497d2b35795504 2025-09-07T06:19:13.1113259Z * [new tag] trunk/98374612fc2febd686be20761e56bdc2424bc36a -> trunk/98374612fc2febd686be20761e56bdc2424bc36a 2025-09-07T06:19:13.1113616Z * [new tag] trunk/98efc9e93d8fc61eb53cb91378443617cb550500 -> trunk/98efc9e93d8fc61eb53cb91378443617cb550500 2025-09-07T06:19:13.1113974Z * [new tag] trunk/994f2a5dbcbdc915da39bf6f6ce4d1f5e74835c9 -> trunk/994f2a5dbcbdc915da39bf6f6ce4d1f5e74835c9 2025-09-07T06:19:13.1114326Z * [new tag] trunk/99f356fa58c8d726cef022d8710f5491291158f6 -> trunk/99f356fa58c8d726cef022d8710f5491291158f6 2025-09-07T06:19:13.1114676Z * [new tag] trunk/9a1c5c0a078b94d13ac5c1ae0d754d19fb73bf99 -> trunk/9a1c5c0a078b94d13ac5c1ae0d754d19fb73bf99 2025-09-07T06:19:13.1115021Z * [new tag] trunk/9a665ca3c472384e9d722bddba79e5a7680f1abd -> trunk/9a665ca3c472384e9d722bddba79e5a7680f1abd 2025-09-07T06:19:13.1115370Z * [new tag] trunk/9aedb3cd87b52160872173c177f61053d97bed57 -> trunk/9aedb3cd87b52160872173c177f61053d97bed57 2025-09-07T06:19:13.1115702Z * [new tag] trunk/9b81fe281da41f2421506339d26b027a468902f4 -> trunk/9b81fe281da41f2421506339d26b027a468902f4 2025-09-07T06:19:13.1116055Z * [new tag] trunk/9bdcee01f86e2969cff1140cdecfca13cb51816e -> trunk/9bdcee01f86e2969cff1140cdecfca13cb51816e 2025-09-07T06:19:13.1116413Z * [new tag] trunk/9c03d6be87eedc06e524e202e07a7e776551a839 -> trunk/9c03d6be87eedc06e524e202e07a7e776551a839 2025-09-07T06:19:13.1116765Z * [new tag] trunk/9c957723a0fedd9c637e63e023a613019e2cab60 -> trunk/9c957723a0fedd9c637e63e023a613019e2cab60 2025-09-07T06:19:13.1117101Z * [new tag] trunk/9e5247f51d81735e5f1e65e80588985fa93bccc5 -> trunk/9e5247f51d81735e5f1e65e80588985fa93bccc5 2025-09-07T06:19:13.1117458Z * [new tag] trunk/9eadb37cdd699f7e8e8177a5227bfeb16184ef26 -> trunk/9eadb37cdd699f7e8e8177a5227bfeb16184ef26 2025-09-07T06:19:13.1117808Z * [new tag] trunk/a00cdc1e4159db73c9ffb3f25e93e55877709a29 -> trunk/a00cdc1e4159db73c9ffb3f25e93e55877709a29 2025-09-07T06:19:13.1118150Z * [new tag] trunk/a02ee4a816d11380c6f564c1aba64d56af5ba705 -> trunk/a02ee4a816d11380c6f564c1aba64d56af5ba705 2025-09-07T06:19:13.1118489Z * [new tag] trunk/a3c7f77e50f900721817934120d60c2361b3c40d -> trunk/a3c7f77e50f900721817934120d60c2361b3c40d 2025-09-07T06:19:13.1119348Z * [new tag] trunk/a3d72b09ae12126a2b7d4a63a45ac100a882a802 -> trunk/a3d72b09ae12126a2b7d4a63a45ac100a882a802 2025-09-07T06:19:13.1119704Z * [new tag] trunk/a3e5466002791da609fcb069155d8ee347baee92 -> trunk/a3e5466002791da609fcb069155d8ee347baee92 2025-09-07T06:19:13.1120053Z * [new tag] trunk/a714437093ed196eee28f7de454cf4c41badc098 -> trunk/a714437093ed196eee28f7de454cf4c41badc098 2025-09-07T06:19:13.1120394Z * [new tag] trunk/a75e8cd27098f290de0b7439685d05ce02e91356 -> trunk/a75e8cd27098f290de0b7439685d05ce02e91356 2025-09-07T06:19:13.1120733Z * [new tag] trunk/a8d6943d36c1c2a5f90d3573460695bad4b623ae -> trunk/a8d6943d36c1c2a5f90d3573460695bad4b623ae 2025-09-07T06:19:13.1121105Z * [new tag] trunk/a918bbad6ab20649ff82eefb48417ecbe96bcb34 -> trunk/a918bbad6ab20649ff82eefb48417ecbe96bcb34 2025-09-07T06:19:13.1121450Z * [new tag] trunk/a99d8d39bc842d6ebc3e368b178e4884d24b056e -> trunk/a99d8d39bc842d6ebc3e368b178e4884d24b056e 2025-09-07T06:19:13.1121875Z * [new tag] trunk/aac1a50a191b4102d566c9c1ea22f06d6c2e3f02 -> trunk/aac1a50a191b4102d566c9c1ea22f06d6c2e3f02 2025-09-07T06:19:13.1122233Z * [new tag] trunk/aad96a202244c7d0d120c04ba8db593edd8c0f92 -> trunk/aad96a202244c7d0d120c04ba8db593edd8c0f92 2025-09-07T06:19:13.1122588Z * [new tag] trunk/ab643e4dbbaf7b663d4237514cbf01af9b11565c -> trunk/ab643e4dbbaf7b663d4237514cbf01af9b11565c 2025-09-07T06:19:13.1122938Z * [new tag] trunk/abc447174cd2cf8591edbc70a9f836f9a5779f47 -> trunk/abc447174cd2cf8591edbc70a9f836f9a5779f47 2025-09-07T06:19:13.1123303Z * [new tag] trunk/acece97c3a9dceb63194e314da93fdf37cf15a0d -> trunk/acece97c3a9dceb63194e314da93fdf37cf15a0d 2025-09-07T06:19:13.1123653Z * [new tag] trunk/adae7f66aacf3f248c3101b858cf98d5809119fa -> trunk/adae7f66aacf3f248c3101b858cf98d5809119fa 2025-09-07T06:19:13.1124015Z * [new tag] trunk/ae0edc133e61e3b16caf0b2ee0ff3f33ab72af4c -> trunk/ae0edc133e61e3b16caf0b2ee0ff3f33ab72af4c 2025-09-07T06:19:13.1124378Z * [new tag] trunk/aed33a8fcbd60b052d4559d261390c5797129c6d -> trunk/aed33a8fcbd60b052d4559d261390c5797129c6d 2025-09-07T06:19:13.1124717Z * [new tag] trunk/b04e922712080a3652e438d05e8bb74e0cd2d238 -> trunk/b04e922712080a3652e438d05e8bb74e0cd2d238 2025-09-07T06:19:13.1125070Z * [new tag] trunk/b0a3e58dd71c1a039ac0ef51e5bd8f704f632f6f -> trunk/b0a3e58dd71c1a039ac0ef51e5bd8f704f632f6f 2025-09-07T06:19:13.1125427Z * [new tag] trunk/b16d3f4c8c01d461c2f01064e9ca5fa2b33f5cf1 -> trunk/b16d3f4c8c01d461c2f01064e9ca5fa2b33f5cf1 2025-09-07T06:19:13.1125767Z * [new tag] trunk/b18bb6796f210a183e687d9d64984a5a9d13cf09 -> trunk/b18bb6796f210a183e687d9d64984a5a9d13cf09 2025-09-07T06:19:13.1126198Z * [new tag] trunk/b1bb98ddebdd3e41bf7987372409bdce96ae55de -> trunk/b1bb98ddebdd3e41bf7987372409bdce96ae55de 2025-09-07T06:19:13.1126598Z * [new tag] trunk/b2b4add0e754411372060e1d7b4057a66439172b -> trunk/b2b4add0e754411372060e1d7b4057a66439172b 2025-09-07T06:19:13.1126959Z * [new tag] trunk/b2c7b9ad2dc5a7c0b61febd307761bd5bc2f0f05 -> trunk/b2c7b9ad2dc5a7c0b61febd307761bd5bc2f0f05 2025-09-07T06:19:13.1127303Z * [new tag] trunk/b40d9432be44a6b5974ee62e7d19c3c61c5ece37 -> trunk/b40d9432be44a6b5974ee62e7d19c3c61c5ece37 2025-09-07T06:19:13.1127649Z * [new tag] trunk/b4ad38279b178b7bd14355123c1101e2e853e77b -> trunk/b4ad38279b178b7bd14355123c1101e2e853e77b 2025-09-07T06:19:13.1127993Z * [new tag] trunk/b67c41039835bd9b20b83cd6233e86baaa5f5dde -> trunk/b67c41039835bd9b20b83cd6233e86baaa5f5dde 2025-09-07T06:19:13.1128350Z * [new tag] trunk/b6d0a9ea9056ede4f7024dbf3bd6c43be3aff49c -> trunk/b6d0a9ea9056ede4f7024dbf3bd6c43be3aff49c 2025-09-07T06:19:13.1128721Z * [new tag] trunk/b7dad7dd49448c88d0751fa2e29c70afe985f734 -> trunk/b7dad7dd49448c88d0751fa2e29c70afe985f734 2025-09-07T06:19:13.1129137Z * [new tag] trunk/b7e207ca9f046ddd716076965a0cce403ba99052 -> trunk/b7e207ca9f046ddd716076965a0cce403ba99052 2025-09-07T06:19:13.1129475Z * [new tag] trunk/b919560c4a7010e2d89facee25586269a994746e -> trunk/b919560c4a7010e2d89facee25586269a994746e 2025-09-07T06:19:13.1129832Z * [new tag] trunk/b9ba612f7a968f7b27e121ca8f4d0a4d954f5354 -> trunk/b9ba612f7a968f7b27e121ca8f4d0a4d954f5354 2025-09-07T06:19:13.1130191Z * [new tag] trunk/ba7f546ccccb5e0b36d9070dc25f26a9647f89f8 -> trunk/ba7f546ccccb5e0b36d9070dc25f26a9647f89f8 2025-09-07T06:19:13.1130528Z * [new tag] trunk/bb950284c7e72905994bc25dd436c10e48088d85 -> trunk/bb950284c7e72905994bc25dd436c10e48088d85 2025-09-07T06:19:13.1130898Z * [new tag] trunk/bbedc71fd3267c639c38b4ec25eaa22f973d9c4d -> trunk/bbedc71fd3267c639c38b4ec25eaa22f973d9c4d 2025-09-07T06:19:13.1131324Z * [new tag] trunk/bc4db2c27fce6ff1648bdc5af31ec225d2a31f37 -> trunk/bc4db2c27fce6ff1648bdc5af31ec225d2a31f37 2025-09-07T06:19:13.1131661Z * [new tag] trunk/bc505977fb66677a09c31155c987330fbb18a865 -> trunk/bc505977fb66677a09c31155c987330fbb18a865 2025-09-07T06:19:13.1132036Z * [new tag] trunk/bd39e47feea7326afb5bbb67fcb1e69279239527 -> trunk/bd39e47feea7326afb5bbb67fcb1e69279239527 2025-09-07T06:19:13.1132392Z * [new tag] trunk/be5b03dde96638f25ffd732a4fed7e41b4cf40e1 -> trunk/be5b03dde96638f25ffd732a4fed7e41b4cf40e1 2025-09-07T06:19:13.1132747Z * [new tag] trunk/bffc7dd1f374d8408911cd22c6b3d6df39ded9b3 -> trunk/bffc7dd1f374d8408911cd22c6b3d6df39ded9b3 2025-09-07T06:19:13.1133117Z * [new tag] trunk/c024b1f5a18d5c5aee5cc2acdd4c52b24b93ffcf -> trunk/c024b1f5a18d5c5aee5cc2acdd4c52b24b93ffcf 2025-09-07T06:19:13.1133464Z * [new tag] trunk/c0983e6cc0acf71689e1851d12609e00b3f59371 -> trunk/c0983e6cc0acf71689e1851d12609e00b3f59371 2025-09-07T06:19:13.1133826Z * [new tag] trunk/c10195e723eeeedd099ed8b73eda7184ca618fad -> trunk/c10195e723eeeedd099ed8b73eda7184ca618fad 2025-09-07T06:19:13.1134204Z * [new tag] trunk/c157cf6488ade6a7ee2ce2d25b059e1335630a99 -> trunk/c157cf6488ade6a7ee2ce2d25b059e1335630a99 2025-09-07T06:19:13.1134547Z * [new tag] trunk/c2a30246172fd71d56529907ffd3c27b76b1f3a7 -> trunk/c2a30246172fd71d56529907ffd3c27b76b1f3a7 2025-09-07T06:19:13.1134884Z * [new tag] trunk/c32111149921b48bfef909293f1049e21619ed76 -> trunk/c32111149921b48bfef909293f1049e21619ed76 2025-09-07T06:19:13.1135237Z * [new tag] trunk/c37103234afc832dcad307e9016230810957c9d5 -> trunk/c37103234afc832dcad307e9016230810957c9d5 2025-09-07T06:19:13.1135584Z * [new tag] trunk/c3ceca2995cd35e1376c4b0704669bff1a81e836 -> trunk/c3ceca2995cd35e1376c4b0704669bff1a81e836 2025-09-07T06:19:13.1135943Z * [new tag] trunk/c3d54dea9febb1236d48d19e5d4876a63f2e20fd -> trunk/c3d54dea9febb1236d48d19e5d4876a63f2e20fd 2025-09-07T06:19:13.1136289Z * [new tag] trunk/c465b3d52c5687fe910d35a5c75341b77f821741 -> trunk/c465b3d52c5687fe910d35a5c75341b77f821741 2025-09-07T06:19:13.1136635Z * [new tag] trunk/c5b8a10be5e89396da916d1069ffcb7135f0372b -> trunk/c5b8a10be5e89396da916d1069ffcb7135f0372b 2025-09-07T06:19:13.1136974Z * [new tag] trunk/c7e41071a08f4045bc11ab60ec366d7357d56e30 -> trunk/c7e41071a08f4045bc11ab60ec366d7357d56e30 2025-09-07T06:19:13.1137350Z * [new tag] trunk/c98ddaca6d2e19ca37aff00c4ff0cda1e9a6ff65 -> trunk/c98ddaca6d2e19ca37aff00c4ff0cda1e9a6ff65 2025-09-07T06:19:13.1137699Z * [new tag] trunk/cb1e31362c7b53acf4ac95b9f8878064c184f03b -> trunk/cb1e31362c7b53acf4ac95b9f8878064c184f03b 2025-09-07T06:19:13.1138042Z * [new tag] trunk/cbfb005f7cce79974795b148e265f594f59477c8 -> trunk/cbfb005f7cce79974795b148e265f594f59477c8 2025-09-07T06:19:13.1138468Z * [new tag] trunk/cc5bdd12401bda835291d2f3cb297132ebdbf358 -> trunk/cc5bdd12401bda835291d2f3cb297132ebdbf358 2025-09-07T06:19:13.1138811Z * [new tag] trunk/cd529b686d54bbaa443f5b310140de48422d96c7 -> trunk/cd529b686d54bbaa443f5b310140de48422d96c7 2025-09-07T06:19:13.1139153Z * [new tag] trunk/cec0ff122815582af5302360aff03676558c5c87 -> trunk/cec0ff122815582af5302360aff03676558c5c87 2025-09-07T06:19:13.1139507Z * [new tag] trunk/d11720efdb563d02cf4f7d324311fb15a755268e -> trunk/d11720efdb563d02cf4f7d324311fb15a755268e 2025-09-07T06:19:13.1139843Z * [new tag] trunk/d1706d9128ae24d9048167e80d3fe5196d19035e -> trunk/d1706d9128ae24d9048167e80d3fe5196d19035e 2025-09-07T06:19:13.1140202Z * [new tag] trunk/d1a15abfdcaef138f2d9e93a9f46be44f30b766d -> trunk/d1a15abfdcaef138f2d9e93a9f46be44f30b766d 2025-09-07T06:19:13.1140616Z * [new tag] trunk/d232a95d4a79404ca05c1f52d37fde7339dcdf49 -> trunk/d232a95d4a79404ca05c1f52d37fde7339dcdf49 2025-09-07T06:19:13.1140964Z * [new tag] trunk/d2d4c8e9b2371c9aacfb771d9402ac7427b9778e -> trunk/d2d4c8e9b2371c9aacfb771d9402ac7427b9778e 2025-09-07T06:19:13.1141305Z * [new tag] trunk/d33840c542b387ab08ba49aa6c45aa9567fd9be7 -> trunk/d33840c542b387ab08ba49aa6c45aa9567fd9be7 2025-09-07T06:19:13.1141656Z * [new tag] trunk/d5643e8f3a648a99636bfa1f2a41d54bd3c0d0f1 -> trunk/d5643e8f3a648a99636bfa1f2a41d54bd3c0d0f1 2025-09-07T06:19:13.1141989Z * [new tag] trunk/d5b38410b5b6cf75c7a7389972777a6497926ee7 -> trunk/d5b38410b5b6cf75c7a7389972777a6497926ee7 2025-09-07T06:19:13.1142324Z * [new tag] trunk/d5e0f4202ba14632e4d14862ace096609e763462 -> trunk/d5e0f4202ba14632e4d14862ace096609e763462 2025-09-07T06:19:13.1142670Z * [new tag] trunk/d636c181f9140a7b59be10b36eae23039fc2bb72 -> trunk/d636c181f9140a7b59be10b36eae23039fc2bb72 2025-09-07T06:19:13.1143007Z * [new tag] trunk/d64718503728001a1e78168fd7f2d4ff23e57285 -> trunk/d64718503728001a1e78168fd7f2d4ff23e57285 2025-09-07T06:19:13.1143341Z * [new tag] trunk/d67c29ad22670320d676b02e394274af34e8e643 -> trunk/d67c29ad22670320d676b02e394274af34e8e643 2025-09-07T06:19:13.1143701Z * [new tag] trunk/d6b74568e2c98ce58ecc145b72ac66d4caf7ce95 -> trunk/d6b74568e2c98ce58ecc145b72ac66d4caf7ce95 2025-09-07T06:19:13.1144037Z * [new tag] trunk/d711f27845abd45007ccab6076649ebd896c2661 -> trunk/d711f27845abd45007ccab6076649ebd896c2661 2025-09-07T06:19:13.1144398Z * [new tag] trunk/d9d6dde0f42d4bcc8c97671ac50d5096c7e500ab -> trunk/d9d6dde0f42d4bcc8c97671ac50d5096c7e500ab 2025-09-07T06:19:13.1144767Z * [new tag] trunk/da4db4b33d1fdd046650cf19fdbac581a19bf2f9 -> trunk/da4db4b33d1fdd046650cf19fdbac581a19bf2f9 2025-09-07T06:19:13.1145211Z * [new tag] trunk/dac8a4b91c01c3bbc96f54e621b1ea4ffdbd29d1 -> trunk/dac8a4b91c01c3bbc96f54e621b1ea4ffdbd29d1 2025-09-07T06:19:13.1145568Z * [new tag] trunk/dbec08729fb9848bebed6048c63831b87170d061 -> trunk/dbec08729fb9848bebed6048c63831b87170d061 2025-09-07T06:19:13.1145925Z * [new tag] trunk/dcf385395d838f38c8dca25913578230dd43099a -> trunk/dcf385395d838f38c8dca25913578230dd43099a 2025-09-07T06:19:13.1146270Z * [new tag] trunk/dd2519abe83ec3c40d4797492434e41fe3b47e17 -> trunk/dd2519abe83ec3c40d4797492434e41fe3b47e17 2025-09-07T06:19:13.1146638Z * [new tag] trunk/dec72ea4b006dd0fbcaaaa106ad273d73807ab9d -> trunk/dec72ea4b006dd0fbcaaaa106ad273d73807ab9d 2025-09-07T06:19:13.1147000Z * [new tag] trunk/e0a62b266c021b910ce6dc02a6c9429210487717 -> trunk/e0a62b266c021b910ce6dc02a6c9429210487717 2025-09-07T06:19:13.1147352Z * [new tag] trunk/e19e02c84c9dcc408375e5cae3b0709c18b99228 -> trunk/e19e02c84c9dcc408375e5cae3b0709c18b99228 2025-09-07T06:19:13.1147780Z * [new tag] trunk/e304ea4e69d3a7deeb7e48c7450c214a4c953937 -> trunk/e304ea4e69d3a7deeb7e48c7450c214a4c953937 2025-09-07T06:19:13.1148143Z * [new tag] trunk/e3068cdb446adefb5a875616ba37a60235391439 -> trunk/e3068cdb446adefb5a875616ba37a60235391439 2025-09-07T06:19:13.1148481Z * [new tag] trunk/e381d4b0205d5f126c1de534f867ba776f7c3ee6 -> trunk/e381d4b0205d5f126c1de534f867ba776f7c3ee6 2025-09-07T06:19:13.1148827Z * [new tag] trunk/e4bd0ff4f8981b805df32ea5b3550621965ea4f2 -> trunk/e4bd0ff4f8981b805df32ea5b3550621965ea4f2 2025-09-07T06:19:13.1149189Z * [new tag] trunk/e532c9d4f1cdcbc1ea9628f55b9813e77847bdc7 -> trunk/e532c9d4f1cdcbc1ea9628f55b9813e77847bdc7 2025-09-07T06:19:13.1149525Z * [new tag] trunk/e92cd9415377403b6e90585e764639e2e0b5973b -> trunk/e92cd9415377403b6e90585e764639e2e0b5973b 2025-09-07T06:19:13.1149857Z * [new tag] trunk/e9481b6617b5576b099d8ca5798111592e9ad090 -> trunk/e9481b6617b5576b099d8ca5798111592e9ad090 2025-09-07T06:19:13.1150296Z * [new tag] trunk/ea1883dfd3e42defe37b11202b878bb76defa087 -> trunk/ea1883dfd3e42defe37b11202b878bb76defa087 2025-09-07T06:19:13.1150661Z * [new tag] trunk/eac3d6f04cfbbebe3d470dacd216da7d4b1f95a8 -> trunk/eac3d6f04cfbbebe3d470dacd216da7d4b1f95a8 2025-09-07T06:19:13.1151003Z * [new tag] trunk/eb18d32bda75189494d955aa001ade15f10333de -> trunk/eb18d32bda75189494d955aa001ade15f10333de 2025-09-07T06:19:13.1151366Z * [new tag] trunk/ef3be6726f7ff4b77c22db10cec5b686f9107ea9 -> trunk/ef3be6726f7ff4b77c22db10cec5b686f9107ea9 2025-09-07T06:19:13.1151726Z * [new tag] trunk/ef8aabd42422725026cb4dbf48aafa9efa226a04 -> trunk/ef8aabd42422725026cb4dbf48aafa9efa226a04 2025-09-07T06:19:13.1152070Z * [new tag] trunk/f00445b43eee57e20bb9316fa796ca23bf73373b -> trunk/f00445b43eee57e20bb9316fa796ca23bf73373b 2025-09-07T06:19:13.1152424Z * [new tag] trunk/f0c391102b754e3b145e8c59231d2df563487e37 -> trunk/f0c391102b754e3b145e8c59231d2df563487e37 2025-09-07T06:19:13.1152760Z * [new tag] trunk/f27985b7e796fb66a1b476284ba42d8cb360a751 -> trunk/f27985b7e796fb66a1b476284ba42d8cb360a751 2025-09-07T06:19:13.1153095Z * [new tag] trunk/f36f285953700f971552083a5da9d0ceacb63bbd -> trunk/f36f285953700f971552083a5da9d0ceacb63bbd 2025-09-07T06:19:13.1153456Z * [new tag] trunk/f3cebec39ebc110e1c8b06e741896585f7892dbb -> trunk/f3cebec39ebc110e1c8b06e741896585f7892dbb 2025-09-07T06:19:13.1153808Z * [new tag] trunk/f4c33cd44acac92c0b451a04da20ebe9370e5b0c -> trunk/f4c33cd44acac92c0b451a04da20ebe9370e5b0c 2025-09-07T06:19:13.1154144Z * [new tag] trunk/f612045ce105f008b2b675e2fc870163babeb2e8 -> trunk/f612045ce105f008b2b675e2fc870163babeb2e8 2025-09-07T06:19:13.1154495Z * [new tag] trunk/f8746b878dfc1e9639d42cbde832e9b9e792c86c -> trunk/f8746b878dfc1e9639d42cbde832e9b9e792c86c 2025-09-07T06:19:13.1154844Z * [new tag] trunk/f8ffa9194e26523e5f976d4a824d5cc58922727c -> trunk/f8ffa9194e26523e5f976d4a824d5cc58922727c 2025-09-07T06:19:13.1155183Z * [new tag] trunk/f981a7fa5230b98974291fdde32fe8488bc5d469 -> trunk/f981a7fa5230b98974291fdde32fe8488bc5d469 2025-09-07T06:19:13.1155549Z * [new tag] trunk/fbf3d2027daabbcb44d0af274b139be2a248a4f7 -> trunk/fbf3d2027daabbcb44d0af274b139be2a248a4f7 2025-09-07T06:19:13.1155900Z * [new tag] trunk/fca2601c9d628e1bd2d75c7318cd22c4e8c832aa -> trunk/fca2601c9d628e1bd2d75c7318cd22c4e8c832aa 2025-09-07T06:19:13.1156247Z * [new tag] trunk/fea20775ad96bdca972a1811d7d3372f368614ab -> trunk/fea20775ad96bdca972a1811d7d3372f368614ab 2025-09-07T06:19:13.1156593Z * [new tag] trunk/fefee081642f87419a21dc852f7167d4640443cd -> trunk/fefee081642f87419a21dc852f7167d4640443cd 2025-09-07T06:19:13.1156723Z * [new tag] v0.1.1 -> v0.1.1 2025-09-07T06:19:13.1156906Z * [new tag] v0.1.10 -> v0.1.10 2025-09-07T06:19:13.1157032Z * [new tag] v0.1.11 -> v0.1.11 2025-09-07T06:19:13.1157148Z * [new tag] v0.1.12 -> v0.1.12 2025-09-07T06:19:13.1157265Z * [new tag] v0.1.2 -> v0.1.2 2025-09-07T06:19:13.1157389Z * [new tag] v0.1.3 -> v0.1.3 2025-09-07T06:19:13.1157502Z * [new tag] v0.1.4 -> v0.1.4 2025-09-07T06:19:13.1157615Z * [new tag] v0.1.5 -> v0.1.5 2025-09-07T06:19:13.1157736Z * [new tag] v0.1.6 -> v0.1.6 2025-09-07T06:19:13.1157850Z * [new tag] v0.1.7 -> v0.1.7 2025-09-07T06:19:13.1157962Z * [new tag] v0.1.8 -> v0.1.8 2025-09-07T06:19:13.1158148Z * [new tag] v0.1.9 -> v0.1.9 2025-09-07T06:19:13.1158278Z * [new tag] v0.2.0 -> v0.2.0 2025-09-07T06:19:13.1158390Z * [new tag] v0.3.0 -> v0.3.0 2025-09-07T06:19:13.1158505Z * [new tag] v0.3.1 -> v0.3.1 2025-09-07T06:19:13.1158623Z * [new tag] v0.4.0 -> v0.4.0 2025-09-07T06:19:13.1158735Z * [new tag] v0.4.1 -> v0.4.1 2025-09-07T06:19:13.1158849Z * [new tag] v1.0.0 -> v1.0.0 2025-09-07T06:19:13.1158979Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-09-07T06:19:13.1159092Z * [new tag] v1.0.1 -> v1.0.1 2025-09-07T06:19:13.1159212Z * [new tag] v1.0rc0 -> v1.0rc0 2025-09-07T06:19:13.1159341Z * [new tag] v1.0rc1 -> v1.0rc1 2025-09-07T06:19:13.1159459Z * [new tag] v1.1.0 -> v1.1.0 2025-09-07T06:19:13.1159584Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-09-07T06:19:13.1159701Z * [new tag] v1.10.0 -> v1.10.0 2025-09-07T06:19:13.1159840Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-09-07T06:19:13.1159969Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-09-07T06:19:13.1160094Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-09-07T06:19:13.1160222Z * [new tag] v1.10.1 -> v1.10.1 2025-09-07T06:19:13.1160352Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-09-07T06:19:13.1160469Z * [new tag] v1.10.2 -> v1.10.2 2025-09-07T06:19:13.1160604Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-09-07T06:19:13.1160724Z * [new tag] v1.11.0 -> v1.11.0 2025-09-07T06:19:13.1160850Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-09-07T06:19:13.1160982Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-09-07T06:19:13.1161104Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-09-07T06:19:13.1161230Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-09-07T06:19:13.1161353Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-09-07T06:19:13.1161485Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-09-07T06:19:13.1161606Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-09-07T06:19:13.1161728Z * [new tag] v1.12.0 -> v1.12.0 2025-09-07T06:19:13.1161857Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-09-07T06:19:13.1162045Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-09-07T06:19:13.1162167Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-09-07T06:19:13.1162297Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-09-07T06:19:13.1162419Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-09-07T06:19:13.1162541Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-09-07T06:19:13.1162676Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-09-07T06:19:13.1162799Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-09-07T06:19:13.1162918Z * [new tag] v1.12.1 -> v1.12.1 2025-09-07T06:19:13.1163057Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-09-07T06:19:13.1163183Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-09-07T06:19:13.1163376Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-09-07T06:19:13.1163498Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-09-07T06:19:13.1163626Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-09-07T06:19:13.1163746Z * [new tag] v1.13.0 -> v1.13.0 2025-09-07T06:19:13.1163868Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-09-07T06:19:13.1163997Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-09-07T06:19:13.1164119Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-09-07T06:19:13.1164239Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-09-07T06:19:13.1164366Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-09-07T06:19:13.1164489Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-09-07T06:19:13.1164610Z * [new tag] v1.13.1 -> v1.13.1 2025-09-07T06:19:13.1164746Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-09-07T06:19:13.1164865Z * [new tag] v1.2.0 -> v1.2.0 2025-09-07T06:19:13.1164985Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-09-07T06:19:13.1165099Z * [new tag] v1.3.0 -> v1.3.0 2025-09-07T06:19:13.1165230Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-09-07T06:19:13.1165343Z * [new tag] v1.3.1 -> v1.3.1 2025-09-07T06:19:13.1165460Z * [new tag] v1.4.0 -> v1.4.0 2025-09-07T06:19:13.1165588Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-09-07T06:19:13.1165702Z * [new tag] v1.4.1 -> v1.4.1 2025-09-07T06:19:13.1165819Z * [new tag] v1.5.0 -> v1.5.0 2025-09-07T06:19:13.1165959Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-09-07T06:19:13.1166083Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-09-07T06:19:13.1166205Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-09-07T06:19:13.1166337Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-09-07T06:19:13.1166457Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-09-07T06:19:13.1166570Z * [new tag] v1.5.1 -> v1.5.1 2025-09-07T06:19:13.1166692Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-09-07T06:19:13.1166816Z * [new tag] v1.6.0 -> v1.6.0 2025-09-07T06:19:13.1166937Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-09-07T06:19:13.1167060Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-09-07T06:19:13.1167248Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-09-07T06:19:13.1167370Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-09-07T06:19:13.1167491Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-09-07T06:19:13.1167616Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-09-07T06:19:13.1167736Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-09-07T06:19:13.1167852Z * [new tag] v1.7.0 -> v1.7.0 2025-09-07T06:19:13.1167976Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-09-07T06:19:13.1168100Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-09-07T06:19:13.1168219Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-09-07T06:19:13.1168346Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-09-07T06:19:13.1168530Z * [new tag] v1.7.1 -> v1.7.1 2025-09-07T06:19:13.1168655Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-09-07T06:19:13.1168776Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-09-07T06:19:13.1168906Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-09-07T06:19:13.1169022Z * [new tag] v1.8.0 -> v1.8.0 2025-09-07T06:19:13.1169141Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-09-07T06:19:13.1169271Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-09-07T06:19:13.1169393Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-09-07T06:19:13.1169512Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-09-07T06:19:13.1169640Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-09-07T06:19:13.1169759Z * [new tag] v1.8.1 -> v1.8.1 2025-09-07T06:19:13.1169890Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-09-07T06:19:13.1170022Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-09-07T06:19:13.1170142Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-09-07T06:19:13.1170257Z * [new tag] v1.8.2 -> v1.8.2 2025-09-07T06:19:13.1170380Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-09-07T06:19:13.1170503Z * [new tag] v1.9.0 -> v1.9.0 2025-09-07T06:19:13.1170624Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-09-07T06:19:13.1170750Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-09-07T06:19:13.1170881Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-09-07T06:19:13.1171005Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-09-07T06:19:13.1171125Z * [new tag] v1.9.1 -> v1.9.1 2025-09-07T06:19:13.1171256Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-09-07T06:19:13.1171378Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-09-07T06:19:13.1171490Z * [new tag] v2.0.0 -> v2.0.0 2025-09-07T06:19:13.1171621Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-09-07T06:19:13.1171742Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-09-07T06:19:13.1171864Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-09-07T06:19:13.1171993Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-09-07T06:19:13.1172112Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-09-07T06:19:13.1172235Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-09-07T06:19:13.1172413Z * [new tag] v2.0.1 -> v2.0.1 2025-09-07T06:19:13.1172549Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-09-07T06:19:13.1172669Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-09-07T06:19:13.1172794Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-09-07T06:19:13.1172923Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-09-07T06:19:13.1173038Z * [new tag] v2.1.0 -> v2.1.0 2025-09-07T06:19:13.1173161Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-09-07T06:19:13.1173296Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-09-07T06:19:13.1173417Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-09-07T06:19:13.1173599Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-09-07T06:19:13.1173732Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-09-07T06:19:13.1173857Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-09-07T06:19:13.1173973Z * [new tag] v2.1.1 -> v2.1.1 2025-09-07T06:19:13.1174095Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-09-07T06:19:13.1174225Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-09-07T06:19:13.1174350Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-09-07T06:19:13.1174468Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-09-07T06:19:13.1174595Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-09-07T06:19:13.1174720Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-09-07T06:19:13.1174836Z * [new tag] v2.1.2 -> v2.1.2 2025-09-07T06:19:13.1174974Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-09-07T06:19:13.1175095Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-09-07T06:19:13.1175220Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-09-07T06:19:13.1175344Z * [new tag] v2.2.0 -> v2.2.0 2025-09-07T06:19:13.1175465Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-09-07T06:19:13.1175595Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-09-07T06:19:13.1175714Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-09-07T06:19:13.1175842Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-09-07T06:19:13.1175965Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-09-07T06:19:13.1176084Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-09-07T06:19:13.1176219Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-09-07T06:19:13.1176342Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-09-07T06:19:13.1176459Z * [new tag] v2.2.1 -> v2.2.1 2025-09-07T06:19:13.1176585Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-09-07T06:19:13.1176705Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-09-07T06:19:13.1176830Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-09-07T06:19:13.1176960Z * [new tag] v2.2.2 -> v2.2.2 2025-09-07T06:19:13.1177084Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-09-07T06:19:13.1177208Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-09-07T06:19:13.1177337Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-09-07T06:19:13.1177458Z * [new tag] v2.3.0 -> v2.3.0 2025-09-07T06:19:13.1177639Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-09-07T06:19:13.1177767Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-09-07T06:19:13.1177902Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-09-07T06:19:13.1178028Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-09-07T06:19:13.1178157Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-09-07T06:19:13.1178288Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-09-07T06:19:13.1178410Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-09-07T06:19:13.1178531Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-09-07T06:19:13.1178664Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-09-07T06:19:13.1178851Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-09-07T06:19:13.1178973Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-09-07T06:19:13.1179105Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-09-07T06:19:13.1179221Z * [new tag] v2.3.1 -> v2.3.1 2025-09-07T06:19:13.1179344Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-09-07T06:19:13.1179466Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-09-07T06:19:13.1179604Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-09-07T06:19:13.1179727Z * [new tag] v2.4.0 -> v2.4.0 2025-09-07T06:19:13.1179849Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-09-07T06:19:13.1179979Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-09-07T06:19:13.1180102Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-09-07T06:19:13.1180226Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-09-07T06:19:13.1180358Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-09-07T06:19:13.1180478Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-09-07T06:19:13.1180600Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-09-07T06:19:13.1180721Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-09-07T06:19:13.1180858Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-09-07T06:19:13.1180973Z * [new tag] v2.4.1 -> v2.4.1 2025-09-07T06:19:13.1181092Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-09-07T06:19:18.5871487Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-09-07T06:19:18.5871960Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-09-07T06:19:18.5872362Z * [new tag] v2.5.0 -> v2.5.0 2025-09-07T06:19:18.5872754Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-09-07T06:19:18.5873114Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-09-07T06:19:18.5873472Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-09-07T06:19:18.5873827Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-09-07T06:19:18.5874173Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-09-07T06:19:18.5874531Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-09-07T06:19:18.5874876Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-09-07T06:19:18.5875236Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-09-07T06:19:18.5875586Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-09-07T06:19:18.5875941Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-09-07T06:19:18.5876500Z * [new tag] v2.5.1 -> v2.5.1 2025-09-07T06:19:18.5876844Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-09-07T06:19:18.5877247Z * [new tag] v2.6.0 -> v2.6.0 2025-09-07T06:19:18.5877631Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-09-07T06:19:18.5877985Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-09-07T06:19:18.5878342Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-09-07T06:19:18.5878686Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-09-07T06:19:18.5879035Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-09-07T06:19:18.5879378Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-09-07T06:19:18.5879865Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-09-07T06:19:18.5880223Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-09-07T06:19:18.5880565Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-09-07T06:19:18.5880916Z * [new tag] v2.7.0 -> v2.7.0 2025-09-07T06:19:18.5881256Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-09-07T06:19:18.5881618Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-09-07T06:19:18.5881969Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-09-07T06:19:18.5882325Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-09-07T06:19:18.5882680Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-09-07T06:19:18.5883073Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-09-07T06:19:18.5883477Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-09-07T06:19:18.5883832Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-09-07T06:19:18.5884191Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-09-07T06:19:18.5884536Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-09-07T06:19:18.5884894Z * [new tag] v2.7.1 -> v2.7.1 2025-09-07T06:19:18.5885245Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-09-07T06:19:18.5885586Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-09-07T06:19:18.5885933Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-09-07T06:19:18.5886275Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-09-07T06:19:18.5886626Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-09-07T06:19:18.5886980Z * [new tag] v2.8.0 -> v2.8.0 2025-09-07T06:19:18.5887320Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-09-07T06:19:18.5887687Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-09-07T06:19:18.5888032Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-09-07T06:19:18.5888386Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-09-07T06:19:18.5888777Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-09-07T06:19:18.5889172Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-09-07T06:19:18.5889521Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-09-07T06:19:18.5889871Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-09-07T06:19:18.5890237Z * [new tag] whc_flight_1 -> whc_flight_1 2025-09-07T06:19:18.5890606Z * [new tag] whc_flight_2 -> whc_flight_2 2025-09-07T06:19:18.5891114Z * [new tag] whc_flight_4 -> whc_flight_4 2025-09-07T06:19:18.6083614Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 93fb23d6fae7c4e82c4239a1033e522088742634^{object} 2025-09-07T06:19:18.6297029Z 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:19:18.6331350Z ##[endgroup] 2025-09-07T06:19:18.6331725Z ##[group]Determining the checkout info 2025-09-07T06:19:18.6333935Z ##[endgroup] 2025-09-07T06:19:18.6344546Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-09-07T06:19:18.6639232Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-09-07T06:19:18.6873496Z ##[group]Checking out the ref 2025-09-07T06:19:18.6884776Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:19:19.7599663Z Updating files: 9% (1897/19405) 2025-09-07T06:19:19.8307176Z Updating files: 10% (1941/19405) 2025-09-07T06:19:19.9104862Z Updating files: 11% (2135/19405) 2025-09-07T06:19:20.0285373Z Updating files: 12% (2329/19405) 2025-09-07T06:19:20.0865262Z Updating files: 13% (2523/19405) 2025-09-07T06:19:20.1657795Z Updating files: 14% (2717/19405) 2025-09-07T06:19:20.4910710Z Updating files: 15% (2911/19405) 2025-09-07T06:19:20.6426649Z Updating files: 16% (3105/19405) 2025-09-07T06:19:20.7409409Z Updating files: 17% (3299/19405) 2025-09-07T06:19:20.7885745Z Updating files: 17% (3351/19405) 2025-09-07T06:19:20.8519073Z Updating files: 18% (3493/19405) 2025-09-07T06:19:20.9094749Z Updating files: 19% (3687/19405) 2025-09-07T06:19:20.9686499Z Updating files: 20% (3881/19405) 2025-09-07T06:19:21.0214839Z Updating files: 21% (4076/19405) 2025-09-07T06:19:21.1505844Z Updating files: 22% (4270/19405) 2025-09-07T06:19:21.2622783Z Updating files: 23% (4464/19405) 2025-09-07T06:19:21.3243213Z Updating files: 24% (4658/19405) 2025-09-07T06:19:21.3744766Z Updating files: 25% (4852/19405) 2025-09-07T06:19:21.4060390Z Updating files: 26% (5046/19405) 2025-09-07T06:19:21.4344224Z Updating files: 27% (5240/19405) 2025-09-07T06:19:21.4639919Z Updating files: 28% (5434/19405) 2025-09-07T06:19:21.4970938Z Updating files: 29% (5628/19405) 2025-09-07T06:19:21.5682291Z Updating files: 30% (5822/19405) 2025-09-07T06:19:21.6782368Z Updating files: 31% (6016/19405) 2025-09-07T06:19:21.7578035Z Updating files: 32% (6210/19405) 2025-09-07T06:19:22.0929942Z Updating files: 32% (6222/19405) 2025-09-07T06:19:22.3855879Z Updating files: 33% (6404/19405) 2025-09-07T06:19:22.5602160Z Updating files: 34% (6598/19405) 2025-09-07T06:19:22.7465430Z Updating files: 35% (6792/19405) 2025-09-07T06:19:22.7595018Z Updating files: 35% (6961/19405) 2025-09-07T06:19:22.8332035Z Updating files: 36% (6986/19405) 2025-09-07T06:19:22.9016548Z Updating files: 37% (7180/19405) 2025-09-07T06:19:22.9898379Z Updating files: 38% (7374/19405) 2025-09-07T06:19:23.1410767Z Updating files: 39% (7568/19405) 2025-09-07T06:19:23.2084493Z Updating files: 40% (7762/19405) 2025-09-07T06:19:23.2963722Z Updating files: 41% (7957/19405) 2025-09-07T06:19:23.3599344Z Updating files: 42% (8151/19405) 2025-09-07T06:19:23.4443629Z Updating files: 43% (8345/19405) 2025-09-07T06:19:23.5056871Z Updating files: 44% (8539/19405) 2025-09-07T06:19:23.5684063Z Updating files: 45% (8733/19405) 2025-09-07T06:19:23.6481902Z Updating files: 46% (8927/19405) 2025-09-07T06:19:23.7209327Z Updating files: 47% (9121/19405) 2025-09-07T06:19:23.7432480Z Updating files: 48% (9315/19405) 2025-09-07T06:19:23.7838834Z Updating files: 48% (9384/19405) 2025-09-07T06:19:23.8691008Z Updating files: 49% (9509/19405) 2025-09-07T06:19:23.9333277Z Updating files: 50% (9703/19405) 2025-09-07T06:19:24.0227956Z Updating files: 51% (9897/19405) 2025-09-07T06:19:24.0893994Z Updating files: 52% (10091/19405) 2025-09-07T06:19:24.1593832Z Updating files: 53% (10285/19405) 2025-09-07T06:19:24.3661436Z Updating files: 54% (10479/19405) 2025-09-07T06:19:24.4911049Z Updating files: 55% (10673/19405) 2025-09-07T06:19:24.5828491Z Updating files: 56% (10867/19405) 2025-09-07T06:19:24.7387597Z Updating files: 57% (11061/19405) 2025-09-07T06:19:24.7466790Z Updating files: 58% (11255/19405) 2025-09-07T06:19:24.8054853Z Updating files: 58% (11279/19405) 2025-09-07T06:19:24.8979984Z Updating files: 59% (11449/19405) 2025-09-07T06:19:24.9654283Z Updating files: 60% (11643/19405) 2025-09-07T06:19:25.0371795Z Updating files: 61% (11838/19405) 2025-09-07T06:19:25.1352838Z Updating files: 62% (12032/19405) 2025-09-07T06:19:25.2052656Z Updating files: 63% (12226/19405) 2025-09-07T06:19:25.4493177Z Updating files: 64% (12420/19405) 2025-09-07T06:19:25.7085766Z Updating files: 65% (12614/19405) 2025-09-07T06:19:25.7557239Z Updating files: 66% (12808/19405) 2025-09-07T06:19:25.8447728Z Updating files: 66% (12940/19405) 2025-09-07T06:19:25.9801205Z Updating files: 67% (13002/19405) 2025-09-07T06:19:26.0511375Z Updating files: 68% (13196/19405) 2025-09-07T06:19:26.4180527Z Updating files: 69% (13390/19405) 2025-09-07T06:19:26.6602563Z Updating files: 70% (13584/19405) 2025-09-07T06:19:26.7306564Z Updating files: 71% (13778/19405) 2025-09-07T06:19:26.7608963Z Updating files: 72% (13972/19405) 2025-09-07T06:19:26.8341152Z Updating files: 72% (14066/19405) 2025-09-07T06:19:26.9598002Z Updating files: 73% (14166/19405) 2025-09-07T06:19:27.1261629Z Updating files: 74% (14360/19405) 2025-09-07T06:19:27.3951378Z Updating files: 75% (14554/19405) 2025-09-07T06:19:27.5035112Z Updating files: 76% (14748/19405) 2025-09-07T06:19:27.6494412Z Updating files: 77% (14942/19405) 2025-09-07T06:19:27.7643356Z Updating files: 78% (15136/19405) 2025-09-07T06:19:27.7720697Z Updating files: 78% (15322/19405) 2025-09-07T06:19:27.9181167Z Updating files: 79% (15330/19405) 2025-09-07T06:19:28.0487528Z Updating files: 80% (15524/19405) 2025-09-07T06:19:28.1815880Z Updating files: 81% (15719/19405) 2025-09-07T06:19:28.3304036Z Updating files: 82% (15913/19405) 2025-09-07T06:19:28.4311279Z Updating files: 83% (16107/19405) 2025-09-07T06:19:28.6507729Z Updating files: 84% (16301/19405) 2025-09-07T06:19:28.7624909Z Updating files: 85% (16495/19405) 2025-09-07T06:19:28.7677433Z Updating files: 86% (16689/19405) 2025-09-07T06:19:28.8947560Z Updating files: 86% (16700/19405) 2025-09-07T06:19:29.0007342Z Updating files: 87% (16883/19405) 2025-09-07T06:19:29.0987334Z Updating files: 88% (17077/19405) 2025-09-07T06:19:29.2199404Z Updating files: 89% (17271/19405) 2025-09-07T06:19:29.3358768Z Updating files: 90% (17465/19405) 2025-09-07T06:19:29.4630719Z Updating files: 91% (17659/19405) 2025-09-07T06:19:29.5714873Z Updating files: 92% (17853/19405) 2025-09-07T06:19:29.6898046Z Updating files: 93% (18047/19405) 2025-09-07T06:19:29.7682506Z Updating files: 94% (18241/19405) 2025-09-07T06:19:29.8349289Z Updating files: 94% (18333/19405) 2025-09-07T06:19:29.9458841Z Updating files: 95% (18435/19405) 2025-09-07T06:19:30.0801695Z Updating files: 96% (18629/19405) 2025-09-07T06:19:30.1965567Z Updating files: 97% (18823/19405) 2025-09-07T06:19:30.3564880Z Updating files: 98% (19017/19405) 2025-09-07T06:19:30.4717607Z Updating files: 99% (19211/19405) 2025-09-07T06:19:30.4717953Z Updating files: 100% (19405/19405) 2025-09-07T06:19:30.4718215Z Updating files: 100% (19405/19405), done. 2025-09-07T06:19:30.5147085Z Note: switching to '93fb23d6fae7c4e82c4239a1033e522088742634'. 2025-09-07T06:19:30.5147403Z 2025-09-07T06:19:30.5147624Z You are in 'detached HEAD' state. You can look around, make experimental 2025-09-07T06:19:30.5148130Z changes and commit them, and you can discard any commits you make in this 2025-09-07T06:19:30.5148624Z state without impacting any branches by switching back to a branch. 2025-09-07T06:19:30.5149001Z 2025-09-07T06:19:30.5149190Z If you want to create a new branch to retain commits you create, you may 2025-09-07T06:19:30.5149692Z do so (now or later) by using -c with the switch command. Example: 2025-09-07T06:19:30.5149955Z 2025-09-07T06:19:30.5150288Z git switch -c 2025-09-07T06:19:30.5150485Z 2025-09-07T06:19:30.5150582Z Or undo this operation with: 2025-09-07T06:19:30.5150743Z 2025-09-07T06:19:30.5150834Z git switch - 2025-09-07T06:19:30.5150958Z 2025-09-07T06:19:30.5151222Z Turn off this advice by setting config variable advice.detachedHead to false 2025-09-07T06:19:30.5151556Z 2025-09-07T06:19:30.5151755Z HEAD is now at 93fb23d6fae Build vLLM nightly wheels (#162000) 2025-09-07T06:19:30.5348273Z ##[endgroup] 2025-09-07T06:19:30.5348676Z ##[group]Setting up auth for fetching submodules 2025-09-07T06:19:30.5360382Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-09-07T06:19:30.5624150Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-09-07T06:19:30.5869615Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-09-07T06:19:30.6121621Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-09-07T06:19:30.6368211Z ##[endgroup] 2025-09-07T06:19:30.6368581Z ##[group]Fetching submodules 2025-09-07T06:19:30.6379366Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-09-07T06:19:31.0218288Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-09-07T06:19:31.5142848Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-09-07T06:19:31.5143808Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-09-07T06:19:31.5144721Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-09-07T06:19:31.5145662Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-09-07T06:19:31.5146506Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-09-07T06:19:31.5147637Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-09-07T06:19:31.5148820Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-09-07T06:19:31.5149690Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-09-07T06:19:31.5150519Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-09-07T06:19:31.5151514Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-09-07T06:19:31.5152512Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-09-07T06:19:31.5153417Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-09-07T06:19:31.5154417Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-09-07T06:19:31.5155324Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-09-07T06:19:31.5156132Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-09-07T06:19:31.5157044Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-09-07T06:19:31.5158247Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-09-07T06:19:31.5159091Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-09-07T06:19:31.5159993Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:19:31.5160931Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-09-07T06:19:31.5161754Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-09-07T06:19:31.5162589Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-09-07T06:19:31.5163358Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-09-07T06:19:31.5164281Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-09-07T06:19:31.5165144Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-09-07T06:19:31.5166119Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-09-07T06:19:31.5166990Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-09-07T06:19:31.5167782Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-09-07T06:19:31.5168736Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-09-07T06:19:31.5169769Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-09-07T06:19:31.5170691Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-09-07T06:19:31.5171674Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-09-07T06:19:31.5172733Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-09-07T06:19:31.5215787Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-09-07T06:19:31.5216773Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-09-07T06:19:31.5217660Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-09-07T06:19:31.5218503Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-09-07T06:19:31.6344261Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-09-07T06:19:32.3076045Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-09-07T06:19:32.3076646Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-09-07T06:19:32.3564882Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-09-07T06:19:40.2359813Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-09-07T06:19:40.2360821Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-09-07T06:19:40.2361757Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-09-07T06:19:40.2362883Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-09-07T06:19:40.2363963Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-09-07T06:19:40.2365307Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-09-07T06:19:40.2366470Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-09-07T06:19:40.2367661Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-09-07T06:19:40.2368779Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-09-07T06:19:40.2369867Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-09-07T06:19:40.2370916Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-09-07T06:19:40.7435394Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-09-07T06:19:59.8644426Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-09-07T06:19:59.8645050Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-09-07T06:19:59.8646497Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-09-07T06:19:59.8647066Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-09-07T06:19:59.8647713Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-09-07T06:19:59.8648333Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-09-07T06:19:59.8648902Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-09-07T06:19:59.8649453Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-09-07T06:19:59.8649994Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-09-07T06:19:59.8650514Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-09-07T06:19:59.8651084Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-09-07T06:19:59.8651653Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-09-07T06:19:59.8652202Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-09-07T06:19:59.8652777Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-09-07T06:19:59.8653334Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-09-07T06:19:59.8653868Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-09-07T06:19:59.8654438Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-09-07T06:19:59.8654996Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-09-07T06:19:59.8655520Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-09-07T06:19:59.8656052Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-09-07T06:19:59.8656580Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-09-07T06:20:00.0924993Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-09-07T06:20:00.1956265Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-09-07T06:20:00.2799520Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-09-07T06:20:00.5233883Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-09-07T06:20:01.0098896Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-09-07T06:20:01.3847304Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-09-07T06:20:09.4630863Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-09-07T06:20:10.3924835Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-09-07T06:20:10.4038278Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:20:14.1885627Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-09-07T06:20:17.3288742Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-09-07T06:20:17.6165906Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-09-07T06:20:21.7839550Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-09-07T06:20:22.0066988Z Submodule path 'third_party/cpp-httplib': checked out '89c932f313c6437c38f2982869beacc89c2f2246' 2025-09-07T06:20:22.5856064Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-09-07T06:20:22.9760735Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-09-07T06:20:28.6615666Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-09-07T06:20:30.0868075Z Submodule path 'third_party/fbgemm': checked out '4b39c551efe15e6bbade20565b0ceb2d8ce3352d' 2025-09-07T06:20:30.1097543Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-09-07T06:20:30.1098652Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:20:30.1099734Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:20:30.1100664Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-09-07T06:20:30.1101720Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-09-07T06:20:30.1102863Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:20:30.1103903Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-09-07T06:20:30.1985896Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-09-07T06:20:39.4840275Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-09-07T06:20:39.4841134Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-09-07T06:20:39.4841944Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-09-07T06:20:39.4842739Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-09-07T06:20:39.4843542Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-09-07T06:20:39.4844291Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-09-07T06:20:39.7522779Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-09-07T06:20:42.8524704Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-09-07T06:20:43.3611533Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-09-07T06:20:48.6439507Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '311f3c8e51dc0eb56310cfc6980bf63d0fbd7917' 2025-09-07T06:20:48.9093742Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-09-07T06:20:49.0669128Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out '63b6a7b541fa7f08f8475ca7d74054db36ff2691' 2025-09-07T06:20:50.1066414Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-09-07T06:20:50.7861476Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-09-07T06:20:50.7992485Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:20:50.7993588Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:20:54.9151093Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-09-07T06:20:54.9151934Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-09-07T06:20:57.6026811Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-09-07T06:21:02.4774665Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-09-07T06:21:03.9856884Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-09-07T06:21:04.1648999Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-09-07T06:21:04.6019423Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-09-07T06:21:04.8609111Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-09-07T06:21:05.1677779Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-09-07T06:21:05.3088460Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-09-07T06:21:05.3194849Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-09-07T06:21:18.1178392Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-09-07T06:21:22.0678931Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-09-07T06:21:22.4426201Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-09-07T06:21:23.1953366Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-09-07T06:21:23.2104938Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:21:23.2106194Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:21:23.2107382Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:21:25.1722470Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-09-07T06:21:25.1723296Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-09-07T06:21:25.1724166Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-09-07T06:21:25.4561297Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-09-07T06:21:25.4797586Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:21:25.4798772Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:21:25.4800141Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:21:25.4801288Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:21:25.4802446Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:21:25.4806204Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:21:25.4807440Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:21:25.4808769Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:21:25.5208950Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-09-07T06:21:33.8018460Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-09-07T06:21:33.8019420Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-09-07T06:21:33.8020372Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-09-07T06:21:33.8021317Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-09-07T06:21:33.8022263Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-09-07T06:21:33.8023261Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-09-07T06:21:33.8024178Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-09-07T06:21:34.3705604Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-09-07T06:21:34.4833417Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-09-07T06:21:34.6657504Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-09-07T06:21:34.7612646Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-09-07T06:21:34.7726241Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:21:35.1356740Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-09-07T06:21:35.2154747Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-09-07T06:21:35.3354584Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-09-07T06:21:35.5187685Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-09-07T06:21:35.9198875Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-09-07T06:21:36.0281498Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-09-07T06:21:36.1661957Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-09-07T06:21:36.3844962Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-09-07T06:21:36.6023828Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-09-07T06:21:36.7832694Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-09-07T06:21:37.3013283Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-09-07T06:21:40.4711896Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-09-07T06:21:40.4848181Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-09-07T06:21:41.6019231Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-09-07T06:21:41.7845569Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-09-07T06:21:42.2534035Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-09-07T06:21:42.2770611Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:21:42.2771774Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:21:42.2772843Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:21:42.2774006Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:21:42.2775360Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:21:42.2776777Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:21:42.2778077Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:21:42.2779151Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:21:42.3271740Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-09-07T06:21:52.8589006Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-09-07T06:21:52.8589962Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-09-07T06:21:52.8590868Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-09-07T06:21:52.8591751Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-09-07T06:21:52.8592607Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-09-07T06:21:52.8593465Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-09-07T06:21:52.8594272Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-09-07T06:21:53.0047492Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-09-07T06:21:53.1905777Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-09-07T06:21:53.2847041Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-09-07T06:21:53.7913609Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-09-07T06:21:53.8971186Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-09-07T06:21:54.0009545Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-09-07T06:21:54.3248664Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-09-07T06:21:54.3378352Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:21:54.3379655Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:21:56.5394237Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-09-07T06:21:56.5395314Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-09-07T06:21:57.2791366Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-09-07T06:21:57.4633448Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-09-07T06:22:02.4597865Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-09-07T06:22:02.5316483Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-09-07T06:22:05.4177164Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-09-07T06:22:05.4310514Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:22:05.4311634Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-09-07T06:22:06.7679223Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-09-07T06:22:06.7680066Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-09-07T06:22:06.8613712Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-09-07T06:22:07.1207612Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-09-07T06:22:07.1973711Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-09-07T06:22:07.2767897Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-09-07T06:22:07.8519484Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-09-07T06:22:08.0680341Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-09-07T06:22:08.2536059Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-09-07T06:22:08.4923983Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-09-07T06:22:08.5248483Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:22:08.5249691Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:22:08.5250669Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:22:08.5251715Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:22:10.5998759Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-09-07T06:22:10.6000283Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-09-07T06:22:10.6001033Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-09-07T06:22:10.6001787Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-09-07T06:22:10.8554641Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-09-07T06:22:10.9722253Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-09-07T06:22:11.2614734Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-09-07T06:22:11.4157555Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-09-07T06:22:11.4289530Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:22:11.7312120Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-09-07T06:22:11.7997530Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-09-07T06:22:11.8254390Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-09-07T06:22:12.2625259Z Entering 'android/libs/fbjni' 2025-09-07T06:22:12.3077801Z Entering 'third_party/FP16' 2025-09-07T06:22:12.3471928Z Entering 'third_party/FXdiv' 2025-09-07T06:22:12.3862424Z Entering 'third_party/NNPACK' 2025-09-07T06:22:12.4309857Z Entering 'third_party/NVTX' 2025-09-07T06:22:12.4702181Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:22:12.5104336Z Entering 'third_party/XNNPACK' 2025-09-07T06:22:12.5521645Z Entering 'third_party/aiter' 2025-09-07T06:22:12.5895129Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:22:12.6345109Z Entering 'third_party/benchmark' 2025-09-07T06:22:12.6746716Z Entering 'third_party/composable_kernel' 2025-09-07T06:22:12.7147697Z Entering 'third_party/cpp-httplib' 2025-09-07T06:22:12.7553870Z Entering 'third_party/cpuinfo' 2025-09-07T06:22:12.7935873Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:22:12.8304289Z Entering 'third_party/cutlass' 2025-09-07T06:22:12.8730253Z Entering 'third_party/fbgemm' 2025-09-07T06:22:12.9106324Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:22:12.9516421Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:22:12.9904712Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:22:13.0288329Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:22:13.0721982Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:22:13.1105948Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:22:13.1501776Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:22:13.1911042Z Entering 'third_party/flash-attention' 2025-09-07T06:22:13.2275952Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:22:13.2667598Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:22:13.3115265Z Entering 'third_party/flatbuffers' 2025-09-07T06:22:13.3498839Z Entering 'third_party/fmt' 2025-09-07T06:22:13.3877713Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:22:13.4267974Z Entering 'third_party/gloo' 2025-09-07T06:22:13.4702582Z Entering 'third_party/googletest' 2025-09-07T06:22:13.5118151Z Entering 'third_party/ideep' 2025-09-07T06:22:13.5496433Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:22:13.5912874Z Entering 'third_party/ittapi' 2025-09-07T06:22:13.6333634Z Entering 'third_party/kineto' 2025-09-07T06:22:13.6725624Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:22:13.7132742Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:22:13.7517007Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:22:13.7992746Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:22:13.8438484Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:22:13.8825623Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:22:13.9252912Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:22:13.9650199Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:22:14.0060758Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:22:14.0464424Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:22:14.0898384Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:22:14.1309196Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:22:14.1725206Z Entering 'third_party/kleidiai' 2025-09-07T06:22:14.2125991Z Entering 'third_party/mimalloc' 2025-09-07T06:22:14.2509237Z Entering 'third_party/nlohmann' 2025-09-07T06:22:14.2884425Z Entering 'third_party/onnx' 2025-09-07T06:22:14.3279411Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:22:14.3677953Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:22:14.4047050Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:22:14.4459364Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:22:14.4849700Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:22:14.5267979Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:22:14.5664372Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:22:14.6052204Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:22:14.6452758Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:22:14.6840495Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:22:14.7249156Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:22:14.7663373Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:22:14.8117538Z Entering 'third_party/pocketfft' 2025-09-07T06:22:14.8533346Z Entering 'third_party/protobuf' 2025-09-07T06:22:14.8921103Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:22:14.9313166Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:22:14.9717764Z Entering 'third_party/psimd' 2025-09-07T06:22:15.0114763Z Entering 'third_party/pthreadpool' 2025-09-07T06:22:15.0508567Z Entering 'third_party/pybind11' 2025-09-07T06:22:15.0895936Z Entering 'third_party/python-peachpy' 2025-09-07T06:22:15.1292806Z Entering 'third_party/sleef' 2025-09-07T06:22:15.1687999Z Entering 'third_party/tensorpipe' 2025-09-07T06:22:15.2069283Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:22:15.2466251Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:22:15.2858135Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:22:15.3281804Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:22:15.3655399Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:22:15.4174397Z ##[endgroup] 2025-09-07T06:22:15.4174850Z ##[group]Persisting credentials for submodules 2025-09-07T06:22:15.4189282Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-09-07T06:22:15.8454017Z Entering 'android/libs/fbjni' 2025-09-07T06:22:15.9053943Z Entering 'third_party/FP16' 2025-09-07T06:22:15.9617753Z Entering 'third_party/FXdiv' 2025-09-07T06:22:16.0200040Z Entering 'third_party/NNPACK' 2025-09-07T06:22:16.0774497Z Entering 'third_party/NVTX' 2025-09-07T06:22:16.1352545Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:22:16.1948017Z Entering 'third_party/XNNPACK' 2025-09-07T06:22:16.2606146Z Entering 'third_party/aiter' 2025-09-07T06:22:16.3156687Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:22:16.3750943Z Entering 'third_party/benchmark' 2025-09-07T06:22:16.4368255Z Entering 'third_party/composable_kernel' 2025-09-07T06:22:16.4949211Z Entering 'third_party/cpp-httplib' 2025-09-07T06:22:16.5532412Z Entering 'third_party/cpuinfo' 2025-09-07T06:22:16.6131887Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:22:16.7140162Z Entering 'third_party/cutlass' 2025-09-07T06:22:16.7738964Z Entering 'third_party/fbgemm' 2025-09-07T06:22:16.8330511Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:22:16.8904850Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:22:16.9491337Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:22:17.0081740Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:22:17.0663473Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:22:17.1249475Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:22:17.1842585Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:22:17.2471949Z Entering 'third_party/flash-attention' 2025-09-07T06:22:17.3042858Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:22:17.3636480Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:22:17.4259978Z Entering 'third_party/flatbuffers' 2025-09-07T06:22:17.4857935Z Entering 'third_party/fmt' 2025-09-07T06:22:17.5444447Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:22:17.6021950Z Entering 'third_party/gloo' 2025-09-07T06:22:17.6601534Z Entering 'third_party/googletest' 2025-09-07T06:22:17.7166113Z Entering 'third_party/ideep' 2025-09-07T06:22:17.7722301Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:22:17.8343497Z Entering 'third_party/ittapi' 2025-09-07T06:22:17.8905748Z Entering 'third_party/kineto' 2025-09-07T06:22:17.9458414Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:22:18.0035864Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:22:18.0649892Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:22:18.1241122Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:22:18.1846188Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:22:18.2414828Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:22:18.3013777Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:22:18.3616282Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:22:18.4216230Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:22:18.4804218Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:22:18.5459176Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:22:18.6030579Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:22:18.6650684Z Entering 'third_party/kleidiai' 2025-09-07T06:22:18.7231196Z Entering 'third_party/mimalloc' 2025-09-07T06:22:18.7827144Z Entering 'third_party/nlohmann' 2025-09-07T06:22:18.8397093Z Entering 'third_party/onnx' 2025-09-07T06:22:18.9016528Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:22:18.9613587Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:22:19.0173977Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:22:19.0755374Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:22:19.1361333Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:22:19.1948151Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:22:19.2514341Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:22:19.3091691Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:22:19.3671993Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:22:19.4276846Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:22:19.4902067Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:22:19.5544724Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:22:19.6152872Z Entering 'third_party/pocketfft' 2025-09-07T06:22:19.6740879Z Entering 'third_party/protobuf' 2025-09-07T06:22:19.7303287Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:22:19.7891488Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:22:19.8588852Z Entering 'third_party/psimd' 2025-09-07T06:22:19.9173403Z Entering 'third_party/pthreadpool' 2025-09-07T06:22:19.9738288Z Entering 'third_party/pybind11' 2025-09-07T06:22:20.0304953Z Entering 'third_party/python-peachpy' 2025-09-07T06:22:20.0859869Z Entering 'third_party/sleef' 2025-09-07T06:22:20.1439202Z Entering 'third_party/tensorpipe' 2025-09-07T06:22:20.2011681Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:22:20.2651563Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:22:20.3235060Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:22:20.3819364Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:22:20.4427593Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:22:20.5200389Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-09-07T06:22:20.8919307Z Entering 'android/libs/fbjni' 2025-09-07T06:22:20.9466422Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-09-07T06:22:20.9629402Z Entering 'third_party/FP16' 2025-09-07T06:22:21.0174016Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-09-07T06:22:21.0319496Z Entering 'third_party/FXdiv' 2025-09-07T06:22:21.0921551Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-09-07T06:22:21.1069503Z Entering 'third_party/NNPACK' 2025-09-07T06:22:21.1642938Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-09-07T06:22:21.1788347Z Entering 'third_party/NVTX' 2025-09-07T06:22:21.2348243Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-09-07T06:22:21.2511664Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:22:21.3049573Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-09-07T06:22:21.3190937Z Entering 'third_party/XNNPACK' 2025-09-07T06:22:21.3754003Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-09-07T06:22:21.3928784Z Entering 'third_party/aiter' 2025-09-07T06:22:21.4496801Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-09-07T06:22:21.4639934Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:22:21.5207672Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-09-07T06:22:21.5377116Z Entering 'third_party/benchmark' 2025-09-07T06:22:21.5933787Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:22:21.6085953Z Entering 'third_party/composable_kernel' 2025-09-07T06:22:21.6659615Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-09-07T06:22:21.6815353Z Entering 'third_party/cpp-httplib' 2025-09-07T06:22:21.7373367Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-09-07T06:22:21.7517948Z Entering 'third_party/cpuinfo' 2025-09-07T06:22:21.8067226Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-09-07T06:22:21.8224832Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:22:21.8763694Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-09-07T06:22:21.8906086Z Entering 'third_party/cutlass' 2025-09-07T06:22:21.9462022Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-09-07T06:22:21.9624658Z Entering 'third_party/fbgemm' 2025-09-07T06:22:22.0226990Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-09-07T06:22:22.0357824Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:22:22.0929970Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-09-07T06:22:22.1088694Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:22:22.1642238Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-09-07T06:22:22.1793535Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:22:22.2386127Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-09-07T06:22:22.2542069Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:22:22.3114801Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-09-07T06:22:22.3274149Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:22:22.3833838Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-09-07T06:22:22.3992082Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:22:22.4574131Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-09-07T06:22:22.4741015Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:22:22.5298874Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-09-07T06:22:22.5458420Z Entering 'third_party/flash-attention' 2025-09-07T06:22:22.6029695Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-09-07T06:22:22.6161444Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:22:22.6715156Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-09-07T06:22:22.6868270Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:22:22.7436425Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-09-07T06:22:22.7619320Z Entering 'third_party/flatbuffers' 2025-09-07T06:22:22.8232420Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-09-07T06:22:22.8382587Z Entering 'third_party/fmt' 2025-09-07T06:22:22.8936755Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-09-07T06:22:22.9088796Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:22:22.9624441Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-09-07T06:22:22.9765524Z Entering 'third_party/gloo' 2025-09-07T06:22:23.0300991Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-09-07T06:22:23.0439909Z Entering 'third_party/googletest' 2025-09-07T06:22:23.1009530Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:22:23.1158435Z Entering 'third_party/ideep' 2025-09-07T06:22:23.1731158Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-09-07T06:22:23.1896396Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:22:23.2466179Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-09-07T06:22:23.2648326Z Entering 'third_party/ittapi' 2025-09-07T06:22:23.3185428Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-09-07T06:22:23.3331628Z Entering 'third_party/kineto' 2025-09-07T06:22:23.3896937Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-09-07T06:22:23.4029332Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:22:23.4607926Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-09-07T06:22:23.4744554Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:22:23.5328131Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-09-07T06:22:23.5477537Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:22:23.6035741Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-09-07T06:22:23.6191929Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:22:23.6777374Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-09-07T06:22:23.6924757Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:22:23.7507832Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-09-07T06:22:23.7645885Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:22:23.8246971Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-09-07T06:22:23.8457196Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:22:23.9020167Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-09-07T06:22:23.9173298Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:22:23.9740404Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:22:23.9888144Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:22:24.0457405Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-09-07T06:22:24.0605361Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:22:24.1171677Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-09-07T06:22:24.1362264Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:22:24.1919083Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-09-07T06:22:24.2065344Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:22:24.2638575Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-09-07T06:22:24.2804071Z Entering 'third_party/kleidiai' 2025-09-07T06:22:24.3361772Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-09-07T06:22:24.3507962Z Entering 'third_party/mimalloc' 2025-09-07T06:22:24.4044598Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-09-07T06:22:24.4193926Z Entering 'third_party/nlohmann' 2025-09-07T06:22:24.4767054Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-09-07T06:22:24.4913773Z Entering 'third_party/onnx' 2025-09-07T06:22:24.5507623Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-09-07T06:22:24.5664588Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:22:24.6234823Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:22:24.6412812Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:22:24.6984892Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-09-07T06:22:24.7139736Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:22:24.7723747Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:22:24.7916907Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:22:24.8488341Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:22:24.8630227Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:22:24.9198825Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-09-07T06:22:24.9354227Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:22:24.9905335Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-09-07T06:22:25.0051220Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:22:25.0628826Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-09-07T06:22:25.0769911Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:22:25.1324337Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-09-07T06:22:25.1467654Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:22:25.2047079Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-09-07T06:22:25.2189023Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:22:25.2764615Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-09-07T06:22:25.2911371Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:22:25.3462573Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-09-07T06:22:25.3640957Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:22:25.4221330Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-09-07T06:22:25.4418524Z Entering 'third_party/pocketfft' 2025-09-07T06:22:25.5002039Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-09-07T06:22:25.5150271Z Entering 'third_party/protobuf' 2025-09-07T06:22:25.5710765Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-09-07T06:22:25.5844034Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:22:25.6402881Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:22:25.6553938Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:22:25.7137950Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:22:25.7309204Z Entering 'third_party/psimd' 2025-09-07T06:22:25.7868672Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-09-07T06:22:25.8022111Z Entering 'third_party/pthreadpool' 2025-09-07T06:22:25.8572221Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-09-07T06:22:25.8734206Z Entering 'third_party/pybind11' 2025-09-07T06:22:25.9281030Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:22:25.9471460Z Entering 'third_party/python-peachpy' 2025-09-07T06:22:26.0028827Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-09-07T06:22:26.0171039Z Entering 'third_party/sleef' 2025-09-07T06:22:26.0719025Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-09-07T06:22:26.0859561Z Entering 'third_party/tensorpipe' 2025-09-07T06:22:26.1419436Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-09-07T06:22:26.1547208Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:22:26.2101458Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:22:26.2256684Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:22:26.2847675Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-09-07T06:22:26.2995861Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:22:26.3564225Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-09-07T06:22:26.3709967Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:22:26.4266660Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:22:26.4404889Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:22:26.4975148Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-09-07T06:22:26.5639298Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-09-07T06:22:26.9608844Z Entering 'android/libs/fbjni' 2025-09-07T06:22:27.0003338Z Entering 'third_party/FP16' 2025-09-07T06:22:27.0392883Z Entering 'third_party/FXdiv' 2025-09-07T06:22:27.0772461Z Entering 'third_party/NNPACK' 2025-09-07T06:22:27.1161491Z Entering 'third_party/NVTX' 2025-09-07T06:22:27.1556817Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:22:27.1955750Z Entering 'third_party/XNNPACK' 2025-09-07T06:22:27.2422447Z Entering 'third_party/aiter' 2025-09-07T06:22:27.2869871Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:22:27.3284649Z Entering 'third_party/benchmark' 2025-09-07T06:22:27.3714322Z Entering 'third_party/composable_kernel' 2025-09-07T06:22:27.4138358Z Entering 'third_party/cpp-httplib' 2025-09-07T06:22:27.4542240Z Entering 'third_party/cpuinfo' 2025-09-07T06:22:27.4950703Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:22:27.5327772Z Entering 'third_party/cutlass' 2025-09-07T06:22:27.5725601Z Entering 'third_party/fbgemm' 2025-09-07T06:22:27.6165567Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:22:27.6553883Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:22:27.6966369Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:22:27.7342209Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:22:27.7733694Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:22:27.8135322Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:22:27.8525694Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:22:27.8925391Z Entering 'third_party/flash-attention' 2025-09-07T06:22:27.9308338Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:22:27.9711137Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:22:28.0180358Z Entering 'third_party/flatbuffers' 2025-09-07T06:22:28.0577418Z Entering 'third_party/fmt' 2025-09-07T06:22:28.0955127Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:22:28.1343819Z Entering 'third_party/gloo' 2025-09-07T06:22:28.1739005Z Entering 'third_party/googletest' 2025-09-07T06:22:28.2187883Z Entering 'third_party/ideep' 2025-09-07T06:22:28.2615991Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:22:28.3022724Z Entering 'third_party/ittapi' 2025-09-07T06:22:28.3411572Z Entering 'third_party/kineto' 2025-09-07T06:22:28.3788920Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:22:28.4182529Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:22:28.4610769Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:22:28.4991795Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:22:28.5394344Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:22:28.5755620Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:22:28.6182125Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:22:28.6608457Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:22:28.7013468Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:22:28.7421891Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:22:28.7861627Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:22:28.8241181Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:22:28.8657952Z Entering 'third_party/kleidiai' 2025-09-07T06:22:28.9070875Z Entering 'third_party/mimalloc' 2025-09-07T06:22:28.9461305Z Entering 'third_party/nlohmann' 2025-09-07T06:22:28.9835887Z Entering 'third_party/onnx' 2025-09-07T06:22:29.0228298Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:22:29.0649501Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:22:29.1073169Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:22:29.1452210Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:22:29.1840938Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:22:29.2274522Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:22:29.2668151Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:22:29.3080170Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:22:29.3462113Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:22:29.3832207Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:22:29.4244151Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:22:29.4670023Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:22:29.5116021Z Entering 'third_party/pocketfft' 2025-09-07T06:22:29.5499885Z Entering 'third_party/protobuf' 2025-09-07T06:22:29.5883438Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:22:29.6284158Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:22:29.6690509Z Entering 'third_party/psimd' 2025-09-07T06:22:29.7082562Z Entering 'third_party/pthreadpool' 2025-09-07T06:22:29.7470525Z Entering 'third_party/pybind11' 2025-09-07T06:22:29.7866980Z Entering 'third_party/python-peachpy' 2025-09-07T06:22:29.8256643Z Entering 'third_party/sleef' 2025-09-07T06:22:29.8639763Z Entering 'third_party/tensorpipe' 2025-09-07T06:22:29.9009896Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:22:29.9389432Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:22:29.9771240Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:22:30.0149540Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:22:30.0519227Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:22:30.1038330Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:'" 2025-09-07T06:22:30.4871584Z Entering 'android/libs/fbjni' 2025-09-07T06:22:30.5291374Z Entering 'third_party/FP16' 2025-09-07T06:22:30.5688620Z Entering 'third_party/FXdiv' 2025-09-07T06:22:30.6075603Z Entering 'third_party/NNPACK' 2025-09-07T06:22:30.6467894Z Entering 'third_party/NVTX' 2025-09-07T06:22:30.6858574Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:22:30.7251784Z Entering 'third_party/XNNPACK' 2025-09-07T06:22:30.7666952Z Entering 'third_party/aiter' 2025-09-07T06:22:30.8031038Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:22:30.8454914Z Entering 'third_party/benchmark' 2025-09-07T06:22:30.8831410Z Entering 'third_party/composable_kernel' 2025-09-07T06:22:30.9222328Z Entering 'third_party/cpp-httplib' 2025-09-07T06:22:30.9605957Z Entering 'third_party/cpuinfo' 2025-09-07T06:22:30.9983746Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:22:31.0433391Z Entering 'third_party/cutlass' 2025-09-07T06:22:31.0821564Z Entering 'third_party/fbgemm' 2025-09-07T06:22:31.1196298Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:22:31.1592082Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:22:31.1984655Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:22:31.2365098Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:22:31.2761403Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:22:31.3143888Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:22:31.3561570Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:22:31.3975787Z Entering 'third_party/flash-attention' 2025-09-07T06:22:31.4355538Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:22:31.4815450Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:22:31.5232334Z Entering 'third_party/flatbuffers' 2025-09-07T06:22:31.5622391Z Entering 'third_party/fmt' 2025-09-07T06:22:31.6005545Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:22:31.6400005Z Entering 'third_party/gloo' 2025-09-07T06:22:31.6842121Z Entering 'third_party/googletest' 2025-09-07T06:22:31.7232061Z Entering 'third_party/ideep' 2025-09-07T06:22:31.7611945Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:22:31.8028692Z Entering 'third_party/ittapi' 2025-09-07T06:22:31.8418728Z Entering 'third_party/kineto' 2025-09-07T06:22:31.8792152Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:22:31.9175670Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:22:31.9610782Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:22:32.0025683Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:22:32.0429004Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:22:32.0819986Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:22:32.1244478Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:22:32.1626588Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:22:32.2015558Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:22:32.2420550Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:22:32.2853475Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:22:32.3282705Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:22:32.3690360Z Entering 'third_party/kleidiai' 2025-09-07T06:22:32.4074464Z Entering 'third_party/mimalloc' 2025-09-07T06:22:32.4467045Z Entering 'third_party/nlohmann' 2025-09-07T06:22:32.4850149Z Entering 'third_party/onnx' 2025-09-07T06:22:32.5235800Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:22:32.5690511Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:22:32.6062208Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:22:32.6503034Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:22:32.6967764Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:22:32.7371732Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:22:32.7777037Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:22:32.8187836Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:22:32.8591613Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:22:32.8973833Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:22:32.9372864Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:22:32.9798244Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:22:33.0232252Z Entering 'third_party/pocketfft' 2025-09-07T06:22:33.0621873Z Entering 'third_party/protobuf' 2025-09-07T06:22:33.1034381Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:22:33.1439133Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:22:33.1861927Z Entering 'third_party/psimd' 2025-09-07T06:22:33.2254556Z Entering 'third_party/pthreadpool' 2025-09-07T06:22:33.2650749Z Entering 'third_party/pybind11' 2025-09-07T06:22:33.3055462Z Entering 'third_party/python-peachpy' 2025-09-07T06:22:33.3464879Z Entering 'third_party/sleef' 2025-09-07T06:22:33.3867079Z Entering 'third_party/tensorpipe' 2025-09-07T06:22:33.4260536Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:22:33.4670824Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:22:33.5076902Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:22:33.5481651Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:22:33.5854939Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:22:33.6402757Z ##[endgroup] 2025-09-07T06:22:33.6684197Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-09-07T06:22:33.6898650Z 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:22:33.7141117Z ##[group]Run cd "${GITHUB_WORKSPACE}" 2025-09-07T06:22:33.7141434Z cd "${GITHUB_WORKSPACE}" 2025-09-07T06:22:33.7141696Z # Clean stale submodule dirs 2025-09-07T06:22:33.7141979Z if [ -z "${NO_SUDO}" ]; then 2025-09-07T06:22:33.7142323Z  sudo git submodule foreach --recursive git clean -ffdx 2025-09-07T06:22:33.7142663Z else 2025-09-07T06:22:33.7142945Z  git submodule foreach --recursive git clean -ffdx 2025-09-07T06:22:33.7143255Z fi 2025-09-07T06:22:33.7163494Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:22:33.7163911Z env: 2025-09-07T06:22:33.7164116Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:33.7164343Z NO_SUDO: true 2025-09-07T06:22:33.7164544Z ##[endgroup] 2025-09-07T06:22:34.1231771Z Entering 'android/libs/fbjni' 2025-09-07T06:22:34.1454524Z Entering 'third_party/FP16' 2025-09-07T06:22:34.1672819Z Entering 'third_party/FXdiv' 2025-09-07T06:22:34.1886096Z Entering 'third_party/NNPACK' 2025-09-07T06:22:34.2121148Z Entering 'third_party/NVTX' 2025-09-07T06:22:34.2346245Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:22:34.2556560Z Entering 'third_party/XNNPACK' 2025-09-07T06:22:34.2975466Z Entering 'third_party/aiter' 2025-09-07T06:22:34.3197809Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:22:34.3625129Z Entering 'third_party/benchmark' 2025-09-07T06:22:34.3877707Z Entering 'third_party/composable_kernel' 2025-09-07T06:22:34.4298254Z Entering 'third_party/cpp-httplib' 2025-09-07T06:22:34.4509003Z Entering 'third_party/cpuinfo' 2025-09-07T06:22:34.4728269Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:22:34.4982755Z Entering 'third_party/cutlass' 2025-09-07T06:22:34.5364541Z Entering 'third_party/fbgemm' 2025-09-07T06:22:34.5642499Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:22:34.5861716Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:22:34.6296462Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:22:34.6520135Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:22:34.6894145Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:22:34.7120344Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:22:34.7347143Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:22:34.7612944Z Entering 'third_party/flash-attention' 2025-09-07T06:22:34.7835682Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:22:34.8258913Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:22:34.8644319Z Entering 'third_party/flatbuffers' 2025-09-07T06:22:34.8964478Z Entering 'third_party/fmt' 2025-09-07T06:22:34.9186970Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:22:34.9432445Z Entering 'third_party/gloo' 2025-09-07T06:22:34.9642378Z Entering 'third_party/googletest' 2025-09-07T06:22:34.9851919Z Entering 'third_party/ideep' 2025-09-07T06:22:35.0061925Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:22:35.0414112Z Entering 'third_party/ittapi' 2025-09-07T06:22:35.0634844Z Entering 'third_party/kineto' 2025-09-07T06:22:35.0837600Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:22:35.1045360Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:22:35.1295589Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:22:35.1511000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:22:35.1720961Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:22:35.1921657Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:22:35.2160206Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:22:35.2387736Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:22:35.2609715Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:22:35.2846521Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:22:35.3073315Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:22:35.3289030Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:22:35.3544136Z Entering 'third_party/kleidiai' 2025-09-07T06:22:35.3787676Z Entering 'third_party/mimalloc' 2025-09-07T06:22:35.4013552Z Entering 'third_party/nlohmann' 2025-09-07T06:22:35.4255960Z Entering 'third_party/onnx' 2025-09-07T06:22:35.5253841Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:22:35.5504772Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:22:35.5769466Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:22:35.5995939Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:22:35.6213212Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:22:35.6459892Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:22:35.6716275Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:22:35.6933658Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:22:35.7147919Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:22:35.7351652Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:22:35.7668013Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:22:35.7930464Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:22:35.8810898Z Entering 'third_party/pocketfft' 2025-09-07T06:22:35.9032452Z Entering 'third_party/protobuf' 2025-09-07T06:22:35.9351269Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:22:35.9563142Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:22:35.9811065Z Entering 'third_party/psimd' 2025-09-07T06:22:36.0037854Z Entering 'third_party/pthreadpool' 2025-09-07T06:22:36.0241091Z Entering 'third_party/pybind11' 2025-09-07T06:22:36.0456075Z Entering 'third_party/python-peachpy' 2025-09-07T06:22:36.0665820Z Entering 'third_party/sleef' 2025-09-07T06:22:36.0890257Z Entering 'third_party/tensorpipe' 2025-09-07T06:22:36.1099347Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:22:36.1313144Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:22:36.1522129Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:22:36.1738816Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:22:36.1946182Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:22:36.2459513Z Prepare all required actions 2025-09-07T06:22:36.2525090Z ##[group]Run ./.github/actions/setup-win 2025-09-07T06:22:36.2525412Z with: 2025-09-07T06:22:36.2525617Z cuda-version: 12.6 2025-09-07T06:22:36.2525858Z env: 2025-09-07T06:22:36.2526058Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:36.2526329Z ##[endgroup] 2025-09-07T06:22:36.2637714Z ##[group]Run set -euo pipefail 2025-09-07T06:22:36.2638002Z set -euo pipefail 2025-09-07T06:22:36.2638254Z function get_ec2_metadata() { 2025-09-07T06:22:36.2638592Z  # Pulled from instance metadata endpoint for EC2 2025-09-07T06:22:36.2639326Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-09-07T06:22:36.2639833Z  category=$1 2025-09-07T06:22:36.2640676Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-09-07T06:22:36.2641506Z } 2025-09-07T06:22:36.2641732Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-09-07T06:22:36.2642122Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-09-07T06:22:36.2642633Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-09-07T06:22:36.2643067Z echo "system info $(uname -a)" 2025-09-07T06:22:36.2662375Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:22:36.2662804Z env: 2025-09-07T06:22:36.2662995Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:36.2663236Z ##[endgroup] 2025-09-07T06:22:36.3269579Z ami-id: ami-09330720cd2f262ab 2025-09-07T06:22:36.3770735Z instance-id: i-0a035dcdde4a77639 2025-09-07T06:22:36.4327321Z instance-type: c5d.4xlarge 2025-09-07T06:22:36.4520251Z system info MSYS_NT-10.0-17763 EC2AMAZ-F4P7NAP 3.6.4-b9f03e96.x86_64 2025-07-16 18:17 UTC x86_64 Msys 2025-09-07T06:22:36.4615700Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-09-07T06:22:36.4616615Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-09-07T06:22:36.4633611Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:22:36.4634048Z env: 2025-09-07T06:22:36.4634249Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:36.4634472Z ##[endgroup] 2025-09-07T06:22:36.8422197Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:22:36.8644448Z Finished 2025-09-07T06:22:36.8941931Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-09-07T06:22:36.8942419Z # Windows conda is baked into the AMI at this location 2025-09-07T06:22:36.8942821Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-09-07T06:22:36.8943137Z  2025-09-07T06:22:36.8943317Z { 2025-09-07T06:22:36.8943632Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-09-07T06:22:36.8944061Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-09-07T06:22:36.8944402Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-09-07T06:22:36.8944708Z } >> "${GITHUB_ENV}" 2025-09-07T06:22:36.8964596Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:22:36.8965006Z env: 2025-09-07T06:22:36.8965195Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:36.8965425Z ##[endgroup] 2025-09-07T06:22:36.9261413Z ##[group]Run set +e 2025-09-07T06:22:36.9261679Z set +e 2025-09-07T06:22:36.9261878Z set -x 2025-09-07T06:22:36.9262054Z  2025-09-07T06:22:36.9262268Z PYTHON3=$(${CONDA_RUN} which python3) 2025-09-07T06:22:36.9262569Z EXIT_CODE=$? 2025-09-07T06:22:36.9262786Z  2025-09-07T06:22:36.9264248Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-09-07T06:22:36.9264661Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-09-07T06:22:36.9265035Z  2025-09-07T06:22:36.9265243Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-09-07T06:22:36.9265590Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-09-07T06:22:36.9265887Z else 2025-09-07T06:22:36.9266379Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-09-07T06:22:36.9267123Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-09-07T06:22:36.9267929Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-09-07T06:22:36.9268494Z  # needed. In both cases, Python binary is just called python 2025-09-07T06:22:36.9268889Z  PYTHON=$(${CONDA_RUN} which python) 2025-09-07T06:22:36.9269191Z  EXIT_CODE=$? 2025-09-07T06:22:36.9269420Z  2025-09-07T06:22:36.9269642Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-09-07T06:22:36.9270097Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-09-07T06:22:36.9270509Z  2025-09-07T06:22:36.9270784Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-09-07T06:22:36.9271299Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-09-07T06:22:36.9271765Z  # here pointing to Python 2025-09-07T06:22:36.9272114Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-09-07T06:22:36.9272390Z  2025-09-07T06:22:36.9272654Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-09-07T06:22:36.9272984Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-09-07T06:22:36.9273287Z  else 2025-09-07T06:22:36.9273523Z  echo "Found no Python using ${CONDA_RUN}" 2025-09-07T06:22:36.9273829Z  fi 2025-09-07T06:22:36.9274009Z fi 2025-09-07T06:22:36.9293368Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:22:36.9293801Z env: 2025-09-07T06:22:36.9293987Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:36.9294385Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:22:36.9294950Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:22:36.9295468Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:22:36.9295824Z ##[endgroup] 2025-09-07T06:22:36.9539017Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-09-07T06:22:47.9078500Z which: no python3 in (/c/Jenkins/Miniconda3:/c/Jenkins/Miniconda3/Library/mingw-w64/bin:/c/Jenkins/Miniconda3/Library/usr/bin:/c/Jenkins/Miniconda3/Library/bin:/c/Jenkins/Miniconda3/Scripts:/c/Jenkins/Miniconda3/bin:/c/Jenkins/Miniconda3/condabin:/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/x64:/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Windows/System32/OpenSSH:/c/Program Files/Amazon/cfn-bootstrap:/c/ProgramData/chocolatey/bin:/c/Program Files/Amazon/AWSCLIV2:/cmd:/mingw64/bin:/usr/bin:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Program Files/NVIDIA Corporation/Nsight Compute 2025.3.0:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-09-07T06:22:47.9105427Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-09-07T06:22:47.9863536Z + PYTHON3= 2025-09-07T06:22:47.9863794Z + EXIT_CODE=1 2025-09-07T06:22:47.9864027Z + [[ 1 == \0 ]] 2025-09-07T06:22:47.9923084Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-09-07T06:22:49.6714375Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-09-07T06:22:49.6715553Z + EXIT_CODE=0 2025-09-07T06:22:49.6715760Z + [[ 0 == \0 ]] 2025-09-07T06:22:49.6716212Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-09-07T06:22:49.6716985Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-09-07T06:22:49.6832141Z ++ echo /c/Jenkins/Miniconda3/python 2025-09-07T06:22:49.6884196Z ++ sed s/python/python3/ 2025-09-07T06:22:49.6953900Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-09-07T06:22:49.6954360Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-09-07T06:22:49.7129363Z ++ dirname /c/Jenkins/Miniconda3/python 2025-09-07T06:22:49.7204450Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-09-07T06:22:49.7204770Z + echo /c/Jenkins/Miniconda3 2025-09-07T06:22:49.7311021Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-09-07T06:22:49.7311602Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-09-07T06:22:49.7312057Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-09-07T06:22:49.7335025Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:22:49.7335446Z env: 2025-09-07T06:22:49.7335639Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:49.7336010Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:22:49.7336519Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:22:49.7336992Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:22:49.7337342Z ##[endgroup] 2025-09-07T06:22:49.8199801Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-09-07T06:22:49.8200759Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-09-07T06:22:49.8201552Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-09-07T06:22:49.8202013Z # that it doesn't interfere 2025-09-07T06:22:49.8202515Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-09-07T06:22:49.8219936Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:22:49.8220390Z env: 2025-09-07T06:22:49.8220605Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:49.8220976Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:22:49.8221508Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:22:49.8221995Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:22:49.8222397Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:22:49.8222700Z ##[endgroup] 2025-09-07T06:22:50.2088407Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:22:50.2137124Z Finished 2025-09-07T06:22:50.7801735Z ##[group]Run choco install handle -y 2025-09-07T06:22:50.7802086Z choco install handle -y 2025-09-07T06:22:50.7802378Z handle C:\actions-runner\_work\ 2025-09-07T06:22:50.7820144Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:22:50.7820594Z env: 2025-09-07T06:22:50.7820784Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:22:50.7821157Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:22:50.7821658Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:22:50.7822124Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:22:50.7822523Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:22:50.7822884Z ##[endgroup] 2025-09-07T06:22:51.1342189Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:22:51.1414070Z Finished 2025-09-07T06:22:53.0224255Z Chocolatey v2.5.0 2025-09-07T06:22:53.2360858Z Installing the following packages: 2025-09-07T06:22:53.2365503Z handle 2025-09-07T06:22:53.2369490Z By installing, you accept licenses for the packages. 2025-09-07T06:22:54.6256343Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-09-07T06:22:54.7557355Z 2025-09-07T06:22:54.7558032Z Progress: Downloading Handle 5.0... 15% 2025-09-07T06:22:54.7558780Z Progress: Downloading Handle 5.0... 45% 2025-09-07T06:22:54.7559183Z Progress: Downloading Handle 5.0... 75% 2025-09-07T06:22:54.7559491Z Progress: Downloading Handle 5.0... 100% 2025-09-07T06:22:55.2195982Z 2025-09-07T06:22:55.2196547Z handle v5.0.0 [Approved] 2025-09-07T06:22:55.2394322Z handle package files install completed. Performing other installation steps. 2025-09-07T06:22:57.3731253Z Downloading Handle 2025-09-07T06:22:57.3731628Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-09-07T06:22:57.4996503Z 2025-09-07T06:22:57.5017000Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-09-07T06:22:57.5030637Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-09-07T06:22:57.5045986Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-09-07T06:22:57.5064230Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-09-07T06:22:57.5068169Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-09-07T06:22:57.5075076Z Download of Handle.zip (729.82 KB) completed. 2025-09-07T06:23:00.7702809Z Hashes match. 2025-09-07T06:23:00.7977720Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-09-07T06:23:01.2919776Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-09-07T06:23:01.2970675Z HKEY_CURRENT_USER\Software\Sysinternals 2025-09-07T06:23:01.3001268Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-09-07T06:23:01.9086260Z ShimGen has successfully created a shim for handle.exe 2025-09-07T06:23:02.0910620Z ShimGen has successfully created a shim for handle64.exe 2025-09-07T06:23:02.2847033Z ShimGen has successfully created a shim for handle64a.exe 2025-09-07T06:23:02.3114378Z The install of handle was successful. 2025-09-07T06:23:02.3117311Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-09-07T06:23:02.3437248Z 2025-09-07T06:23:02.3437411Z Chocolatey installed 1/1 packages. 2025-09-07T06:23:02.3437803Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-09-07T06:23:02.6100845Z 2025-09-07T06:23:02.6101291Z Nthandle v5.0 - Handle viewer 2025-09-07T06:23:02.6101630Z Copyright (C) 1997-2022 Mark Russinovich 2025-09-07T06:23:02.6101960Z Sysinternals - www.sysinternals.com 2025-09-07T06:23:02.6102153Z 2025-09-07T06:23:02.6499682Z powershell.exe pid: 1520 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:23:02.6500261Z handle.exe pid: 1920 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:23:02.6500833Z handle.exe pid: 2180 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:23:02.6501389Z handle64.exe pid: 520 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:23:02.6820253Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-09-07T06:23:02.6820648Z python3 .github/scripts/parse_ref.py 2025-09-07T06:23:02.6840497Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:23:02.6840911Z env: 2025-09-07T06:23:02.6841095Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:02.6841483Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:02.6841985Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:02.6842512Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:02.6842911Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:02.6843194Z ##[endgroup] 2025-09-07T06:23:02.7483318Z Setting output branch=main 2025-09-07T06:23:02.7653045Z Prepare all required actions 2025-09-07T06:23:02.7688855Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-09-07T06:23:02.7689185Z with: 2025-09-07T06:23:02.7689621Z github-token: *** 2025-09-07T06:23:02.7689855Z env: 2025-09-07T06:23:02.7690090Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:02.7690490Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:02.7691018Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:02.7691487Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:02.7692055Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:02.7692348Z ##[endgroup] 2025-09-07T06:23:02.7785636Z ##[group]Run set -eux 2025-09-07T06:23:02.7785939Z set -eux 2025-09-07T06:23:02.7786401Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-09-07T06:23:02.7806834Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:23:02.7807267Z env: 2025-09-07T06:23:02.7807573Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:02.7807970Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:02.7808485Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:02.7808963Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:02.7809349Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:02.7809864Z GITHUB_TOKEN: *** 2025-09-07T06:23:02.7810108Z ##[endgroup] 2025-09-07T06:23:02.8040766Z + python3 .github/scripts/get_workflow_job_id.py 17524754564 i-0a035dcdde4a77639 2025-09-07T06:23:03.5649332Z Setting output job-id=49773699333 2025-09-07T06:23:03.5649732Z Setting output job-name=win-vs2022-cuda12.6-py3 / build 2025-09-07T06:23:03.6006560Z Prepare all required actions 2025-09-07T06:23:03.6007002Z Getting action download info 2025-09-07T06:23:03.7236805Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-09-07T06:23:03.9643366Z ##[group]Run ./.github/actions/filter-test-configs 2025-09-07T06:23:03.9643698Z with: 2025-09-07T06:23:03.9644086Z github-token: *** 2025-09-07T06:23:03.9644332Z job-name: win-vs2022-cuda12.6-py3 / build 2025-09-07T06:23:03.9644624Z env: 2025-09-07T06:23:03.9644807Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:03.9645238Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:03.9645807Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:03.9646289Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:03.9646699Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:03.9646987Z ##[endgroup] 2025-09-07T06:23:03.9752147Z ##[group]Run nick-fields/retry@v3.0.0 2025-09-07T06:23:03.9752419Z with: 2025-09-07T06:23:03.9752596Z shell: bash 2025-09-07T06:23:03.9752775Z timeout_minutes: 10 2025-09-07T06:23:03.9752981Z max_attempts: 5 2025-09-07T06:23:03.9753178Z retry_wait_seconds: 30 2025-09-07T06:23:03.9753904Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-09-07T06:23:03.9754664Z polling_interval_seconds: 1 2025-09-07T06:23:03.9754910Z warning_on_retry: true 2025-09-07T06:23:03.9755130Z continue_on_error: false 2025-09-07T06:23:03.9755358Z env: 2025-09-07T06:23:03.9756618Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:03.9756983Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:03.9757492Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:03.9757952Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:03.9758341Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:03.9758816Z GITHUB_TOKEN: *** 2025-09-07T06:23:03.9759008Z ##[endgroup] 2025-09-07T06:23:04.0984485Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-09-07T06:23:10.0659275Z Collecting requests==2.27.1 2025-09-07T06:23:10.2628372Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-09-07T06:23:10.2702831Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-09-07T06:23:10.2831876Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-09-07T06:23:10.2839098Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.8.3) 2025-09-07T06:23:10.2850952Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-09-07T06:23:10.2864419Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-09-07T06:23:10.3305020Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-09-07T06:23:10.4085546Z ---------------------------------------- 63.1/63.1 kB 678.1 kB/s eta 0:00:00 2025-09-07T06:23:12.1684179Z Installing collected packages: requests 2025-09-07T06:23:12.1684973Z Attempting uninstall: requests 2025-09-07T06:23:12.1696640Z Found existing installation: requests 2.32.4 2025-09-07T06:23:12.1771735Z Uninstalling requests-2.32.4: 2025-09-07T06:23:12.1794820Z Successfully uninstalled requests-2.32.4 2025-09-07T06:23:12.2725304Z Successfully installed requests-2.27.1 2025-09-07T06:23:13.1328270Z Command completed after 1 attempt(s). 2025-09-07T06:23:13.1487937Z ##[group]Run set -x 2025-09-07T06:23:13.1488186Z set -x 2025-09-07T06:23:13.1490065Z  2025-09-07T06:23:13.1490475Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-09-07T06:23:13.1490913Z # in runner workspace 2025-09-07T06:23:13.1491257Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-09-07T06:23:13.1514308Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:23:13.1514737Z env: 2025-09-07T06:23:13.1514922Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:13.1515297Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:13.1515805Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:13.1516284Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:13.1516666Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:13.1517038Z ##[endgroup] 2025-09-07T06:23:13.1717653Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-09-07T06:23:13.2140078Z Setting output branch=main 2025-09-07T06:23:13.2309303Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-09-07T06:23:13.2309699Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-09-07T06:23:13.2310010Z echo "Job name: ${JOB_NAME}" 2025-09-07T06:23:13.2310264Z  2025-09-07T06:23:13.2310598Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-09-07T06:23:13.2311027Z # in runner workspace 2025-09-07T06:23:13.2311421Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-09-07T06:23:13.2311859Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-09-07T06:23:13.2312182Z  --job-name "${JOB_NAME}" \ 2025-09-07T06:23:13.2312458Z  --test-matrix "" \ 2025-09-07T06:23:13.2312714Z  --selected-test-configs "" \ 2025-09-07T06:23:13.2313007Z  --pr-number "${PR_NUMBER}" \ 2025-09-07T06:23:13.2313285Z  --tag "${TAG}" \ 2025-09-07T06:23:13.2313542Z  --event-name "${EVENT_NAME}" \ 2025-09-07T06:23:13.2313823Z  --schedule "${SCHEDULE}" \ 2025-09-07T06:23:13.2314096Z  --branch "${HEAD_BRANCH}" 2025-09-07T06:23:13.2334563Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:23:13.2335002Z env: 2025-09-07T06:23:13.2335195Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:13.2335573Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:13.2336075Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:13.2336700Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:13.2337096Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:13.2337730Z GITHUB_TOKEN: *** 2025-09-07T06:23:13.2337977Z JOB_NAME: win-vs2022-cuda12.6-py3 / build 2025-09-07T06:23:13.2338252Z PR_NUMBER: 2025-09-07T06:23:13.2338454Z TAG: 2025-09-07T06:23:13.2338617Z EVENT_NAME: push 2025-09-07T06:23:13.2338818Z SCHEDULE: 2025-09-07T06:23:13.2338991Z HEAD_BRANCH: main 2025-09-07T06:23:13.2339193Z ##[endgroup] 2025-09-07T06:23:13.2573627Z Workflow: trunk 2025-09-07T06:23:13.2573928Z Job name: win-vs2022-cuda12.6-py3 / build 2025-09-07T06:23:13.5755548Z C:\actions-runner\_work\pytorch\pytorch\.github\scripts\filter_test_configs.py:565: UserWarning: Invalid test matrix input '', exiting 2025-09-07T06:23:13.5756357Z warnings.warn(f"Invalid test matrix input '{args.test_matrix}', exiting") 2025-09-07T06:23:13.5758692Z Setting output is-test-matrix-empty=True 2025-09-07T06:23:13.5984572Z ##[group]Run echo "Filtered matrix:" 2025-09-07T06:23:13.5984930Z echo "Filtered matrix:" 2025-09-07T06:23:13.5985182Z echo "" 2025-09-07T06:23:13.5985362Z  2025-09-07T06:23:13.5985547Z echo 2025-09-07T06:23:13.5986396Z echo "Is the current job unstable? " 2025-09-07T06:23:13.5986693Z  2025-09-07T06:23:13.5986867Z echo 2025-09-07T06:23:13.5987080Z echo "Is keep-going label set? " 2025-09-07T06:23:13.5987347Z  2025-09-07T06:23:13.5987520Z echo 2025-09-07T06:23:13.5987719Z echo "Reenabled issues? " 2025-09-07T06:23:13.6007322Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:23:13.6007850Z env: 2025-09-07T06:23:13.6008045Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:13.6008450Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:13.6008972Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:13.6009463Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:13.6009868Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:13.6010156Z ##[endgroup] 2025-09-07T06:23:13.6202785Z Filtered matrix: 2025-09-07T06:23:13.6203006Z 2025-09-07T06:23:13.6203010Z 2025-09-07T06:23:13.6203117Z Is the current job unstable? 2025-09-07T06:23:13.6203354Z 2025-09-07T06:23:13.6203461Z Is keep-going label set? 2025-09-07T06:23:13.6203696Z 2025-09-07T06:23:13.6203782Z Reenabled issues? 2025-09-07T06:23:13.6321541Z Prepare all required actions 2025-09-07T06:23:13.6321990Z Getting action download info 2025-09-07T06:23:13.7451999Z ##[group]Run ./.github/actions/pytest-cache-download 2025-09-07T06:23:13.7452318Z with: 2025-09-07T06:23:13.7452507Z cache_dir: .pytest_cache 2025-09-07T06:23:13.7452774Z job_identifier: trunk_win-vs2022-cuda12.6-py3 2025-09-07T06:23:13.7453080Z s3_bucket: gha-artifacts 2025-09-07T06:23:13.7453308Z env: 2025-09-07T06:23:13.7453483Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:13.7453935Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:13.7454534Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:13.7455005Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:13.7455391Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:13.7455680Z ##[endgroup] 2025-09-07T06:23:13.7546503Z ##[group]Run nick-fields/retry@v3.0.0 2025-09-07T06:23:13.7546825Z with: 2025-09-07T06:23:13.7546995Z shell: bash 2025-09-07T06:23:13.7547195Z timeout_minutes: 5 2025-09-07T06:23:13.7547401Z max_attempts: 5 2025-09-07T06:23:13.7547620Z retry_wait_seconds: 30 2025-09-07T06:23:13.7547918Z command: set -eu python3 -m pip install boto3==1.35.42 2025-09-07T06:23:13.7548255Z polling_interval_seconds: 1 2025-09-07T06:23:13.7548503Z warning_on_retry: true 2025-09-07T06:23:13.7548905Z continue_on_error: false 2025-09-07T06:23:13.7549116Z env: 2025-09-07T06:23:13.7549308Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:13.7549672Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:13.7550170Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:13.7550631Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:13.7551009Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:13.7551293Z ##[endgroup] 2025-09-07T06:23:15.3080707Z Collecting boto3==1.35.42 2025-09-07T06:23:15.5024170Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-09-07T06:23:16.3056772Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-09-07T06:23:16.3101020Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-09-07T06:23:16.3168615Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.42) (1.0.1) 2025-09-07T06:23:16.3507346Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-09-07T06:23:16.3551296Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-09-07T06:23:16.3688055Z Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (2.9.0.post0) 2025-09-07T06:23:16.3700284Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.26.19) 2025-09-07T06:23:16.6782405Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil<3.0.0,>=2.1->botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.17.0) 2025-09-07T06:23:16.7019604Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-09-07T06:23:16.8134073Z ---------------------------------------- 139.2/139.2 kB 1.2 MB/s eta 0:00:00 2025-09-07T06:23:16.8172033Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-09-07T06:23:16.9399990Z ---------------------------------------- 13.3/13.3 MB 164.9 MB/s eta 0:00:00 2025-09-07T06:23:16.9443622Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-09-07T06:23:16.9540272Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-09-07T06:23:17.8484488Z Installing collected packages: botocore, s3transfer, boto3 2025-09-07T06:23:17.8485281Z Attempting uninstall: botocore 2025-09-07T06:23:17.8494568Z Found existing installation: botocore 1.37.10 2025-09-07T06:23:18.0996835Z Uninstalling botocore-1.37.10: 2025-09-07T06:23:18.1856091Z Successfully uninstalled botocore-1.37.10 2025-09-07T06:23:20.6107422Z Attempting uninstall: s3transfer 2025-09-07T06:23:20.6117241Z Found existing installation: s3transfer 0.11.2 2025-09-07T06:23:20.6276996Z Uninstalling s3transfer-0.11.2: 2025-09-07T06:23:20.6299546Z Successfully uninstalled s3transfer-0.11.2 2025-09-07T06:23:20.7093133Z Attempting uninstall: boto3 2025-09-07T06:23:20.7101298Z Found existing installation: boto3 1.37.10 2025-09-07T06:23:20.7292595Z Uninstalling boto3-1.37.10: 2025-09-07T06:23:20.7354843Z Successfully uninstalled boto3-1.37.10 2025-09-07T06:23:20.9118900Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-09-07T06:23:21.8820589Z Command completed after 1 attempt(s). 2025-09-07T06:23:21.8979538Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-09-07T06:23:21.8979985Z python3 .github/scripts/pytest_cache.py \ 2025-09-07T06:23:21.8980318Z  --download \ 2025-09-07T06:23:21.8980590Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-09-07T06:23:21.8980938Z  --pr_identifier $GITHUB_REF \ 2025-09-07T06:23:21.8981252Z  --job_identifier $JOB_IDENTIFIER \ 2025-09-07T06:23:21.8981567Z  --temp_dir $RUNNER_TEMP \ 2025-09-07T06:23:21.8981836Z  --repo $REPO \ 2025-09-07T06:23:21.8982236Z  --bucket $BUCKET \ 2025-09-07T06:23:21.9002179Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:23:21.9002604Z env: 2025-09-07T06:23:21.9002810Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:21.9003188Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:21.9003717Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:21.9004194Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:21.9004601Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:21.9004912Z CACHE_DIR: .pytest_cache 2025-09-07T06:23:21.9005183Z JOB_IDENTIFIER: trunk_win-vs2022-cuda12.6-py3 2025-09-07T06:23:21.9005494Z REPO: pytorch/pytorch 2025-09-07T06:23:21.9005720Z BUCKET: gha-artifacts 2025-09-07T06:23:21.9005946Z ##[endgroup] 2025-09-07T06:23:22.8134080Z PR identifier for `refs/heads/main` is `96e092540d6b3c4076e3d2bc6f1f9013` 2025-09-07T06:23:22.8135644Z Downloading cache with args Namespace(upload=False, download=True, cache_dir='C:\\actions-runner\\_work\\pytorch\\pytorch/.pytest_cache', pr_identifier='refs/heads/main', job_identifier='trunk_win-vs2022-cuda12.6-py3', sha=None, test_config=None, shard=None, repo='pytorch/pytorch', temp_dir='C:\\actions-runner\\_work\\_temp', bucket='gha-artifacts') 2025-09-07T06:23:22.8138597Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cuda12_6-py3` in bucket `gha-artifacts` 2025-09-07T06:23:22.8818028Z ##[group]Run .ci/pytorch/win-build.sh 2025-09-07T06:23:22.8818416Z .ci/pytorch/win-build.sh 2025-09-07T06:23:22.8842964Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:23:22.8843399Z env: 2025-09-07T06:23:22.8843589Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:23:22.8843966Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:23:22.8844509Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:23:22.8846158Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:23:22.8846558Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:23:22.8846918Z PYTORCH_FINAL_PACKAGE_DIR: /c/17524754564/build-results/ 2025-09-07T06:23:22.8847244Z BRANCH: main 2025-09-07T06:23:22.8847483Z BUILD_ENVIRONMENT: win-vs2022-cuda12.6-py3 2025-09-07T06:23:22.8847805Z BUILD_WHEEL: 1 2025-09-07T06:23:22.8848001Z MAX_JOBS: 8 2025-09-07T06:23:22.8848241Z CUDA_VERSION: 12.6 2025-09-07T06:23:22.8848445Z PYTHON_VERSION: 3.9 2025-09-07T06:23:22.8848681Z SCCACHE_BUCKET: ossci-compiler-cache 2025-09-07T06:23:22.8848966Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:23:22.8849220Z SCCACHE_REGION: us-east-1 2025-09-07T06:23:22.8849468Z VC_PRODUCT: BuildTools 2025-09-07T06:23:22.8849678Z VC_VERSION: 2025-09-07T06:23:22.8849866Z VC_YEAR: 2022 2025-09-07T06:23:22.8850200Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-09-07T06:23:22.8851636Z AWS_DEFAULT_REGION: us-east-1 2025-09-07T06:23:22.8851881Z PR_NUMBER: 2025-09-07T06:23:22.8852115Z SHA1: 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:23:22.8852405Z DEBUG: 0 2025-09-07T06:23:22.8852608Z TORCH_CUDA_ARCH_LIST: 8.6 2025-09-07T06:23:22.8852823Z USE_CUDA: 1 2025-09-07T06:23:22.8853011Z USE_XPU: 0 2025-09-07T06:23:22.8853192Z XPU_VERSION: 2025-09-07T06:23:22.8853388Z OUR_GITHUB_JOB_ID: 49773699333 2025-09-07T06:23:22.8853645Z ##[endgroup] 2025-09-07T06:23:22.9613702Z ++ [[ win-vs2022-cuda12.6-py3 == *rocm* ]] 2025-09-07T06:23:22.9614049Z ++ BUILD_TEST_LIBTORCH=0 2025-09-07T06:23:22.9614431Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-09-07T06:23:22.9616682Z ++ [[ win-vs2022-cuda12.6-py3 != *win-* ]] 2025-09-07T06:23:22.9617088Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:23:22.9617763Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:23:22.9671793Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:23:22.9769447Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-09-07T06:23:22.9769851Z + export TMP_DIR_WIN 2025-09-07T06:23:22.9770164Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/17524754564/build-results/ 2025-09-07T06:23:22.9770572Z + PYTORCH_FINAL_PACKAGE_DIR=/c/17524754564/build-results/ 2025-09-07T06:23:22.9770942Z + [[ -n /c/17524754564/build-results/ ]] 2025-09-07T06:23:22.9771223Z + mkdir -p /c/17524754564/build-results/ 2025-09-07T06:23:22.9906440Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-09-07T06:23:22.9907155Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-09-07T06:23:22.9907597Z + set +ex 2025-09-07T06:23:23.9563638Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-09-07T06:23:23.9709811Z 2025-09-07T06:23:23.9710562Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-09-07T06:23:23.9713844Z 2025-09-07T06:23:23.9718817Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-09-07T06:23:23.9721894Z 2025-09-07T06:23:23.9722484Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-09-07T06:23:23.9723174Z 2025-09-07T06:23:23.9723696Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-09-07T06:23:23.9731492Z 2025-09-07T06:23:23.9731794Z C:\actions-runner\_work\pytorch\pytorch>if "12.6" == "cpu" ( 2025-09-07T06:23:23.9732240Z echo skip magma installation for cpu builds 2025-09-07T06:23:23.9732533Z exit /b 0 2025-09-07T06:23:23.9732713Z ) 2025-09-07T06:23:23.9732934Z 2025-09-07T06:23:23.9733258Z C:\actions-runner\_work\pytorch\pytorch>rem remove dot in cuda_version, fox example 11.1 to 111 2025-09-07T06:23:23.9734778Z 2025-09-07T06:23:23.9735285Z C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" (exit /b 0 ) 2025-09-07T06:23:23.9737135Z 2025-09-07T06:23:23.9737410Z C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-09-07T06:23:23.9737867Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-09-07T06:23:23.9738251Z exit /b 1 2025-09-07T06:23:23.9738417Z ) 2025-09-07T06:23:23.9738954Z 2025-09-07T06:23:23.9739149Z C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=126 2025-09-07T06:23:23.9741393Z 2025-09-07T06:23:23.9741638Z C:\actions-runner\_work\pytorch\pytorch>set CUDA_SUFFIX=cuda126 2025-09-07T06:23:23.9744250Z 2025-09-07T06:23:23.9744571Z C:\actions-runner\_work\pytorch\pytorch>if "cuda126" == "" ( 2025-09-07T06:23:23.9745047Z echo unknown CUDA version, please set `CUDA_VERSION` higher than 10.2 2025-09-07T06:23:23.9745421Z exit /b 1 2025-09-07T06:23:23.9745613Z ) 2025-09-07T06:23:23.9747223Z 2025-09-07T06:23:23.9747534Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-09-07T06:23:23.9749398Z if "win-vs2022-cuda12.6-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/magma_2.5.4_cuda126_release.7z --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z & REM @lint-ignore ) else (aws s3 cp s3://ossci-windows/magma_2.5.4_cuda126_release.7z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z --quiet ) 2025-09-07T06:23:23.9750962Z if errorlevel 1 exit /b 2025-09-07T06:23:23.9751218Z if not errorlevel 0 exit /b 2025-09-07T06:23:23.9751858Z 7z x -aoa C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z -oC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-09-07T06:23:23.9752545Z if errorlevel 1 exit /b 2025-09-07T06:23:23.9752777Z if not errorlevel 0 exit /b 2025-09-07T06:23:23.9753010Z ) 2025-09-07T06:23:26.7718723Z 2025-09-07T06:23:26.7719266Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-09-07T06:23:26.7719608Z 2025-09-07T06:23:26.7719706Z Scanning the drive for archives: 2025-09-07T06:23:26.7719976Z 1 file, 62070579 bytes (60 MiB) 2025-09-07T06:23:26.7720134Z 2025-09-07T06:23:26.7720458Z Extracting archive: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-09-07T06:23:28.0617493Z -- 2025-09-07T06:23:28.0618017Z Path = C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-09-07T06:23:28.0618590Z Type = 7z 2025-09-07T06:23:28.0619631Z Physical Size = 62070579 2025-09-07T06:23:28.0619889Z Headers Size = 931 2025-09-07T06:23:28.0620121Z Method = LZMA2:24 2025-09-07T06:23:28.0620319Z Solid = + 2025-09-07T06:23:28.0620511Z Blocks = 1 2025-09-07T06:23:28.0620620Z 2025-09-07T06:23:28.0620729Z Everything is Ok 2025-09-07T06:23:28.0620856Z 2025-09-07T06:23:28.0620930Z Folders: 2 2025-09-07T06:23:28.0621118Z Files: 68 2025-09-07T06:23:28.0621293Z Size: 144236024 2025-09-07T06:23:28.0621534Z Compressed: 62070579 2025-09-07T06:23:28.0643501Z 2025-09-07T06:23:28.0644268Z C:\actions-runner\_work\pytorch\pytorch>set MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-09-07T06:23:28.0648452Z 2025-09-07T06:23:28.0648936Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-09-07T06:23:28.0649613Z 2025-09-07T06:23:28.0649946Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-09-07T06:23:28.0650888Z 2025-09-07T06:23:28.0651648Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-09-07T06:23:28.0661660Z 2025-09-07T06:23:28.0662062Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-09-07T06:23:28.0666981Z 2025-09-07T06:23:28.0667524Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-09-07T06:23:28.0668035Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-09-07T06:23:28.0668494Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-09-07T06:23:28.0668991Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-09-07T06:23:28.0669476Z ) 2025-09-07T06:23:28.0670778Z if "win-vs2022-cuda12.6-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/sccache-v0.7.4.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) else (aws s3 cp s3://ossci-windows/sccache-v0.7.4.exe C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ) 2025-09-07T06:23:28.0672093Z ) 2025-09-07T06:23:29.5830307Z Completed 256.0 KiB/18.8 MiB (432.5 KiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5842863Z Completed 512.0 KiB/18.8 MiB (859.5 KiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5846409Z Completed 768.0 KiB/18.8 MiB (1.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5849947Z Completed 1.0 MiB/18.8 MiB (1.7 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5858821Z Completed 1.2 MiB/18.8 MiB (2.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5871405Z Completed 1.5 MiB/18.8 MiB (2.5 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5879253Z Completed 1.8 MiB/18.8 MiB (2.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5896673Z Completed 2.0 MiB/18.8 MiB (3.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5903697Z Completed 2.2 MiB/18.8 MiB (3.7 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5908051Z Completed 2.5 MiB/18.8 MiB (4.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5910681Z Completed 2.8 MiB/18.8 MiB (4.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5914170Z Completed 3.0 MiB/18.8 MiB (5.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5919177Z Completed 3.2 MiB/18.8 MiB (5.4 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5923677Z Completed 3.5 MiB/18.8 MiB (5.8 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5925752Z Completed 3.8 MiB/18.8 MiB (6.2 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5949779Z Completed 3.8 MiB/18.8 MiB (6.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5961862Z Completed 4.1 MiB/18.8 MiB (6.7 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.5984263Z Completed 4.3 MiB/18.8 MiB (7.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6002301Z Completed 4.6 MiB/18.8 MiB (7.5 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6014547Z Completed 4.8 MiB/18.8 MiB (7.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6033297Z Completed 5.1 MiB/18.8 MiB (8.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6042805Z Completed 5.3 MiB/18.8 MiB (8.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6061687Z Completed 5.6 MiB/18.8 MiB (9.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6064770Z Completed 5.8 MiB/18.8 MiB (9.4 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6083884Z Completed 6.1 MiB/18.8 MiB (9.8 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6088377Z Completed 6.3 MiB/18.8 MiB (10.2 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6104292Z Completed 6.6 MiB/18.8 MiB (10.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6106759Z Completed 6.8 MiB/18.8 MiB (10.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6118739Z Completed 7.1 MiB/18.8 MiB (11.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6125163Z Completed 7.3 MiB/18.8 MiB (11.7 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6138120Z Completed 7.6 MiB/18.8 MiB (12.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6145215Z Completed 7.8 MiB/18.8 MiB (12.5 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6156945Z Completed 8.1 MiB/18.8 MiB (12.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6165177Z Completed 8.3 MiB/18.8 MiB (13.2 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6169740Z Completed 8.6 MiB/18.8 MiB (13.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6178792Z Completed 8.8 MiB/18.8 MiB (14.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6180546Z Completed 9.1 MiB/18.8 MiB (14.4 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6196555Z Completed 9.3 MiB/18.8 MiB (14.8 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6199241Z Completed 9.6 MiB/18.8 MiB (15.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6211622Z Completed 9.8 MiB/18.8 MiB (15.5 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6212192Z Completed 10.1 MiB/18.8 MiB (15.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6221327Z Completed 10.3 MiB/18.8 MiB (16.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6223639Z Completed 10.6 MiB/18.8 MiB (16.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6231434Z Completed 10.8 MiB/18.8 MiB (17.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6237793Z Completed 11.1 MiB/18.8 MiB (17.4 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6246576Z Completed 11.3 MiB/18.8 MiB (17.8 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6253418Z Completed 11.6 MiB/18.8 MiB (18.2 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6259840Z Completed 11.8 MiB/18.8 MiB (18.5 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6269728Z Completed 12.1 MiB/18.8 MiB (18.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6272557Z Completed 12.3 MiB/18.8 MiB (19.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6281172Z Completed 12.6 MiB/18.8 MiB (19.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6285451Z Completed 12.8 MiB/18.8 MiB (20.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6291651Z Completed 13.1 MiB/18.8 MiB (20.4 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6296515Z Completed 13.3 MiB/18.8 MiB (20.8 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6302488Z Completed 13.6 MiB/18.8 MiB (21.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6307946Z Completed 13.8 MiB/18.8 MiB (21.5 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6314974Z Completed 14.1 MiB/18.8 MiB (21.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6326218Z Completed 14.3 MiB/18.8 MiB (22.2 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6329308Z Completed 14.6 MiB/18.8 MiB (22.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6339262Z Completed 14.8 MiB/18.8 MiB (23.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6348883Z Completed 15.1 MiB/18.8 MiB (23.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6351396Z Completed 15.3 MiB/18.8 MiB (23.7 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6358678Z Completed 15.6 MiB/18.8 MiB (24.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6361975Z Completed 15.8 MiB/18.8 MiB (24.4 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6367261Z Completed 16.1 MiB/18.8 MiB (24.8 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6372598Z Completed 16.3 MiB/18.8 MiB (25.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6376093Z Completed 16.6 MiB/18.8 MiB (25.5 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6381812Z Completed 16.8 MiB/18.8 MiB (25.9 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6383740Z Completed 17.1 MiB/18.8 MiB (26.2 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6389775Z Completed 17.3 MiB/18.8 MiB (26.6 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6393177Z Completed 17.6 MiB/18.8 MiB (27.0 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6399107Z Completed 17.8 MiB/18.8 MiB (27.3 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6400657Z Completed 18.1 MiB/18.8 MiB (27.7 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6406943Z Completed 18.3 MiB/18.8 MiB (28.1 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6410670Z Completed 18.6 MiB/18.8 MiB (28.4 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6420296Z Completed 18.8 MiB/18.8 MiB (28.8 MiB/s) with 1 file(s) remaining 2025-09-07T06:23:29.6420957Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-09-07T06:23:29.7535168Z 2025-09-07T06:23:29.7536046Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-09-07T06:23:29.7536642Z 2025-09-07T06:23:29.7537015Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-09-07T06:23:29.7538221Z 2025-09-07T06:23:29.7538760Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-09-07T06:23:29.7539144Z set CUDA_VERSION=xpu 2025-09-07T06:23:29.7539699Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-09-07T06:23:29.7540286Z if errorlevel 1 exit /b 1 2025-09-07T06:23:29.7540515Z ) 2025-09-07T06:23:29.7540639Z 2025-09-07T06:23:29.7541196Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-09-07T06:23:29.7551070Z 2025-09-07T06:23:29.7552540Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cuda12.6-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-09-07T06:23:29.7554814Z 2025-09-07T06:23:29.7555421Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-09-07T06:23:29.7557930Z 2025-09-07T06:23:29.7558164Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-09-07T06:23:29.7559225Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-09-07T06:23:29.7560199Z if errorlevel 1 exit /b 2025-09-07T06:23:29.7560449Z if not errorlevel 0 exit /b 2025-09-07T06:23:29.7561240Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-09-07T06:23:29.7562053Z if errorlevel 1 exit /b 2025-09-07T06:23:29.7562316Z if not errorlevel 0 exit /b 2025-09-07T06:23:29.7562565Z ) 2025-09-07T06:23:29.7562664Z 2025-09-07T06:23:29.7563010Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-09-07T06:23:31.1681555Z Chocolatey v2.5.0 2025-09-07T06:23:31.3102362Z Upgrading the following packages: 2025-09-07T06:23:31.3107028Z cmake 2025-09-07T06:23:31.3110486Z By upgrading, you accept licenses for the packages. 2025-09-07T06:23:31.6521320Z cmake is not installed. Installing... 2025-09-07T06:23:32.4877064Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-09-07T06:23:33.3261943Z 2025-09-07T06:23:33.3262366Z cmake.install v3.27.9 [Approved] 2025-09-07T06:23:33.3451619Z cmake.install package files upgrade completed. Performing other installation steps. 2025-09-07T06:23:34.0557711Z Installing 64-bit cmake.install... 2025-09-07T06:23:47.6093399Z cmake.install has been installed. 2025-09-07T06:23:47.6942877Z cmake.install may be able to be automatically uninstalled. 2025-09-07T06:23:47.6991749Z Environment Vars (like PATH) have changed. Close/reopen your shell to 2025-09-07T06:23:47.6992259Z see the changes (or in powershell/cmd.exe just type `refreshenv`). 2025-09-07T06:23:47.9516367Z The upgrade of cmake.install was successful. 2025-09-07T06:23:47.9519273Z Deployed to 'C:\Program Files\CMake\' 2025-09-07T06:23:47.9554724Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-09-07T06:23:48.0715322Z 2025-09-07T06:23:48.0715723Z cmake v3.27.9 [Approved] 2025-09-07T06:23:48.0730711Z cmake package files upgrade completed. Performing other installation steps. 2025-09-07T06:23:48.1573098Z The upgrade of cmake was successful. 2025-09-07T06:23:48.1575985Z Deployed to 'C:\ProgramData\chocolatey\lib\cmake' 2025-09-07T06:23:48.1657509Z 2025-09-07T06:23:48.1657967Z Chocolatey upgraded 2/2 packages. 2025-09-07T06:23:48.1658443Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-09-07T06:23:48.9521109Z Collecting mkl==2024.2.0 2025-09-07T06:23:49.1392621Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-09-07T06:23:49.1813949Z Collecting mkl-static==2024.2.0 2025-09-07T06:23:49.1864226Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.5 kB) 2025-09-07T06:23:49.2478739Z Collecting mkl-include==2024.2.0 2025-09-07T06:23:49.2529811Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-09-07T06:23:49.2945042Z Collecting intel-openmp>=2023 (from mkl==2024.2.0) 2025-09-07T06:23:49.2994396Z Downloading intel_openmp-2025.2.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-09-07T06:23:49.3338002Z Collecting tbb==2021.* (from mkl==2024.2.0) 2025-09-07T06:23:49.3381814Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-09-07T06:23:49.3713155Z Collecting tbb-devel==2021.* (from mkl-static==2024.2.0) 2025-09-07T06:23:49.3765095Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl.metadata (1.2 kB) 2025-09-07T06:23:49.4088940Z Collecting intel-cmplr-lib-ur==2025.2.1 (from intel-openmp>=2023->mkl==2024.2.0) 2025-09-07T06:23:49.4140145Z Downloading intel_cmplr_lib_ur-2025.2.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-09-07T06:23:49.4383748Z Collecting umf==0.11.* (from intel-cmplr-lib-ur==2025.2.1->intel-openmp>=2023->mkl==2024.2.0) 2025-09-07T06:23:49.4422750Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-09-07T06:23:49.4664181Z Collecting tcmlib>=1.4 (from umf==0.11.*->intel-cmplr-lib-ur==2025.2.1->intel-openmp>=2023->mkl==2024.2.0) 2025-09-07T06:23:49.4737738Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-09-07T06:23:49.4868833Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl (161.5 MB) 2025-09-07T06:23:52.0421251Z ---------------------------------------- 161.5/161.5 MB 5.7 MB/s eta 0:00:00 2025-09-07T06:23:52.0473674Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl (207.3 MB) 2025-09-07T06:23:54.8800646Z ---------------------------------------- 207.3/207.3 MB 5.4 MB/s eta 0:00:00 2025-09-07T06:23:54.8848153Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl (1.3 MB) 2025-09-07T06:23:54.9038457Z ---------------------------------------- 1.3/1.3 MB 87.7 MB/s eta 0:00:00 2025-09-07T06:23:54.9086981Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-09-07T06:23:54.9187916Z --------------------------------------- 286.9/286.9 kB 17.3 MB/s eta 0:00:00 2025-09-07T06:23:54.9259976Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl (5.7 MB) 2025-09-07T06:23:54.9690142Z ---------------------------------------- 5.7/5.7 MB 120.3 MB/s eta 0:00:00 2025-09-07T06:23:54.9738300Z Downloading intel_openmp-2025.2.1-py2.py3-none-win_amd64.whl (34.0 MB) 2025-09-07T06:23:55.2720819Z ---------------------------------------- 34.0/34.0 MB 54.4 MB/s eta 0:00:00 2025-09-07T06:23:55.2764702Z Downloading intel_cmplr_lib_ur-2025.2.1-py2.py3-none-win_amd64.whl (1.2 MB) 2025-09-07T06:23:55.2921388Z ---------------------------------------- 1.2/1.2 MB 37.4 MB/s eta 0:00:00 2025-09-07T06:23:55.2968735Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl (231 kB) 2025-09-07T06:23:55.3064423Z ---------------------------------------- 231.7/231.7 kB ? eta 0:00:00 2025-09-07T06:23:55.3105699Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl (370 kB) 2025-09-07T06:23:55.3203999Z ---------------------------------------- 370.3/370.3 kB ? eta 0:00:00 2025-09-07T06:23:57.2348930Z Installing collected packages: tcmlib, tbb, mkl-include, umf, tbb-devel, intel-cmplr-lib-ur, intel-openmp, mkl-static, mkl 2025-09-07T06:24:04.7736499Z Successfully installed intel-cmplr-lib-ur-2025.2.1 intel-openmp-2025.2.1 mkl-2024.2.0 mkl-include-2024.2.0 mkl-static-2024.2.0 tbb-2021.13.1 tbb-devel-2021.13.1 tcmlib-1.4.0 umf-0.11.0 2025-09-07T06:24:05.2500490Z ********************************************************************** 2025-09-07T06:24:05.2500935Z ** Visual Studio 2022 Developer Command Prompt v17.12.11 2025-09-07T06:24:05.2501310Z ** Copyright (c) 2022 Microsoft Corporation 2025-09-07T06:24:05.2501691Z ********************************************************************** 2025-09-07T06:24:05.8333743Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-09-07T06:24:05.8375254Z 2025-09-07T06:24:05.8375787Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-09-07T06:24:05.8379295Z 2025-09-07T06:24:05.8379632Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" goto cuda_build_end 2025-09-07T06:24:05.8380632Z 2025-09-07T06:24:05.8381063Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:05.8383675Z 2025-09-07T06:24:05.8383933Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-09-07T06:24:05.8384408Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-09-07T06:24:05.8384992Z goto fail 2025-09-07T06:24:05.8385163Z ) 2025-09-07T06:24:05.8385267Z 2025-09-07T06:24:05.8385559Z (base) C:\actions-runner\_work\pytorch\pytorch>rem version transformer, for example 10.1 to 10_1. 2025-09-07T06:24:05.8386625Z 2025-09-07T06:24:05.8388626Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-09-07T06:24:05.8389160Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-09-07T06:24:05.8389538Z goto fail 2025-09-07T06:24:05.8389742Z ) 2025-09-07T06:24:05.8389836Z 2025-09-07T06:24:05.8390034Z (base) C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=12_6 2025-09-07T06:24:05.8390835Z 2025-09-07T06:24:05.8391299Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:05.8393687Z 2025-09-07T06:24:05.8394125Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-09-07T06:24:05.8396422Z 2025-09-07T06:24:05.8397159Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:05.8399034Z 2025-09-07T06:24:05.8399503Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:05.8401990Z 2025-09-07T06:24:05.8410871Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-09-07T06:24:05.8419485Z 2025-09-07T06:24:05.8419733Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-09-07T06:24:05.8420175Z 2025-09-07T06:24:05.8428615Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-09-07T06:24:05.8437879Z 2025-09-07T06:24:05.8438147Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-09-07T06:24:05.8438534Z 2025-09-07T06:24:05.8438737Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-09-07T06:24:05.8439043Z 2025-09-07T06:24:05.8439300Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-09-07T06:24:05.8439648Z 2025-09-07T06:24:05.8439844Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-09-07T06:24:05.8566160Z Stopping sccache server... 2025-09-07T06:24:06.8616132Z sccache: error: couldn't connect to server 2025-09-07T06:24:06.8618337Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-09-07T06:24:06.8643268Z 2025-09-07T06:24:06.8643769Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-09-07T06:24:06.8740525Z sccache: Starting the server... 2025-09-07T06:24:06.9966813Z 2025-09-07T06:24:06.9967756Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-09-07T06:24:07.0085561Z Compile requests 0 2025-09-07T06:24:07.0085970Z Compile requests executed 0 2025-09-07T06:24:07.0086242Z Cache hits 0 2025-09-07T06:24:07.0086515Z Cache misses 0 2025-09-07T06:24:07.0086776Z Cache timeouts 0 2025-09-07T06:24:07.0087270Z Cache read errors 0 2025-09-07T06:24:07.0087611Z Forced recaches 0 2025-09-07T06:24:07.0087887Z Cache write errors 0 2025-09-07T06:24:07.0088153Z Compilation failures 0 2025-09-07T06:24:07.0088431Z Cache errors 0 2025-09-07T06:24:07.0088711Z Non-cacheable compilations 0 2025-09-07T06:24:07.0089002Z Non-cacheable calls 0 2025-09-07T06:24:07.0089278Z Non-compilation calls 0 2025-09-07T06:24:07.0089565Z Unsupported compiler calls 0 2025-09-07T06:24:07.0089852Z Average cache write 0.000 s 2025-09-07T06:24:07.0090128Z Average compiler 0.000 s 2025-09-07T06:24:07.0090406Z Average cache read hit 0.000 s 2025-09-07T06:24:07.0090684Z Failed distributed compilations 0 2025-09-07T06:24:07.0091068Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-09-07T06:24:07.0091476Z Version (client) 0.7.4 2025-09-07T06:24:07.0107862Z 2025-09-07T06:24:07.0108220Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-09-07T06:24:07.0110971Z 2025-09-07T06:24:07.0111502Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-09-07T06:24:07.0113610Z 2025-09-07T06:24:07.0113865Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-09-07T06:24:07.0117956Z 2025-09-07T06:24:07.0119024Z (base) C:\actions-runner\_work\pytorch\pytorch>if "1" == "1" ( 2025-09-07T06:24:07.0119398Z 2025-09-07T06:24:07.0119568Z 2025-09-07T06:24:07.0119726Z 2025-09-07T06:24:07.0120490Z curl -kL https://github.com/peterjc123/randomtemp-rust/releases/download/v0.4/randomtemp.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe 2025-09-07T06:24:07.0121321Z if errorlevel 1 goto fail 2025-09-07T06:24:07.0121577Z if not errorlevel 0 goto fail 2025-09-07T06:24:07.0122736Z echo @"C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe" "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe" %* 1>"C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat" 2025-09-07T06:24:07.0124029Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-09-07T06:24:07.0124641Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-09-07T06:24:07.0125470Z for /F "usebackq delims=" %n in (`cygpath -m "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe"`) do set CMAKE_CUDA_COMPILER=%n 2025-09-07T06:24:07.0126646Z set CMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe 2025-09-07T06:24:07.0127444Z ) 2025-09-07T06:24:07.0127726Z The system cannot find the drive specified. 2025-09-07T06:24:07.0128055Z The system cannot find the drive specified. 2025-09-07T06:24:07.0128362Z The system cannot find the drive specified. 2025-09-07T06:24:07.1767386Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-09-07T06:24:07.1767951Z Dload Upload Total Spent Left Speed 2025-09-07T06:24:07.1768601Z 2025-09-07T06:24:07.2139493Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-09-07T06:24:08.0545556Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-09-07T06:24:08.0545973Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-09-07T06:24:08.1038300Z 2025-09-07T06:24:08.1039085Z 100 303k 100 303k 0 0 321k 0 --:--:-- --:--:-- --:--:-- 321k 2025-09-07T06:24:08.1214999Z @"C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\randomtemp.exe" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe" "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin\nvcc.exe" %* 2025-09-07T06:24:08.1433717Z 2025-09-07T06:24:08.1435045Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-09-07T06:24:08.1438818Z 2025-09-07T06:24:08.1439200Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-09-07T06:24:08.1631407Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-09-07T06:24:08.1633564Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-2-azure-eastus.actions.githubusercontent.com/139//idtoken/f409845e-2ea6-41ce-a516-e066432415ca/00caee3e-79f1-5d32-b8e4-2f99f4a3380d?api-version=2.0 2025-09-07T06:24:08.1634646Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-09-07T06:24:08.1635048Z ALLUSERSPROFILE=C:\ProgramData 2025-09-07T06:24:08.1635430Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-09-07T06:24:08.1635858Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-09-07T06:24:08.1636156Z AWS_DEFAULT_REGION=us-east-1 2025-09-07T06:24:08.1636394Z AWS_EXECUTION_ENV=EC2 2025-09-07T06:24:08.1636618Z BRANCH=main 2025-09-07T06:24:08.1636820Z BUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 2025-09-07T06:24:08.1637105Z BUILD_TYPE=release 2025-09-07T06:24:08.1637306Z BUILD_WHEEL=1 2025-09-07T06:24:08.1637479Z CI=true 2025-09-07T06:24:08.1637843Z CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-09-07T06:24:08.1657131Z CMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe 2025-09-07T06:24:08.1658012Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-09-07T06:24:08.1658290Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-09-07T06:24:08.1658552Z CMAKE_GENERATOR=Ninja 2025-09-07T06:24:08.1658780Z CommandPromptType=Native 2025-09-07T06:24:08.1659072Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-09-07T06:24:08.1659420Z COMPUTERNAME=EC2AMAZ-F4P7NAP 2025-09-07T06:24:08.1659678Z COMSPEC=C:\Windows\system32\cmd.exe 2025-09-07T06:24:08.1660059Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:24:08.1660430Z CONDA_DEFAULT_ENV=base 2025-09-07T06:24:08.1660706Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-09-07T06:24:08.1661088Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:24:08.1661448Z CONDA_PARENT_DIR=C:\Jenkins 2025-09-07T06:24:08.1662335Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-09-07T06:24:08.1663021Z CONDA_PROMPT_MODIFIER=(base) 2025-09-07T06:24:08.1663309Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-09-07T06:24:08.1663766Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:24:08.1664163Z CONDA_SHLVL=1 2025-09-07T06:24:08.1664534Z CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-09-07T06:24:08.1665094Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:08.1665560Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:08.1666052Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-09-07T06:24:08.1666527Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-09-07T06:24:08.1667020Z CUDA_PATH_V13_0=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0 2025-09-07T06:24:08.1667393Z CUDA_SUFFIX=cuda126 2025-09-07T06:24:08.1668761Z CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:08.1669171Z CUDA_VERSION=12.6 2025-09-07T06:24:08.1669413Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-09-07T06:24:08.1669797Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-09-07T06:24:08.1670189Z CommonProgramW6432=C:\Program Files\Common Files 2025-09-07T06:24:08.1670632Z CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-09-07T06:24:08.1671319Z CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:24:08.1671704Z DEBUG=0 2025-09-07T06:24:08.1672043Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-09-07T06:24:08.1672458Z DISTUTILS_USE_SDK=1 2025-09-07T06:24:08.1672721Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-09-07T06:24:08.1673036Z EC2LAUNCH_TELEMETRY=1 2025-09-07T06:24:08.1674428Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-09-07T06:24:08.1676614Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-09-07T06:24:08.1678735Z Framework40Version=v4.0 2025-09-07T06:24:08.1679011Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-09-07T06:24:08.1680390Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-09-07T06:24:08.1680726Z FrameworkVersion=v4.0.30319 2025-09-07T06:24:08.1680980Z FrameworkVersion64=v4.0.30319 2025-09-07T06:24:08.1681213Z GITHUB_ACTION=build 2025-09-07T06:24:08.1681553Z GITHUB_ACTIONS=true 2025-09-07T06:24:08.1681745Z GITHUB_ACTION_REF= 2025-09-07T06:24:08.1681959Z GITHUB_ACTION_REPOSITORY= 2025-09-07T06:24:08.1682205Z GITHUB_ACTOR=pytorchmergebot 2025-09-07T06:24:08.1682455Z GITHUB_ACTOR_ID=97764156 2025-09-07T06:24:08.1682717Z GITHUB_API_URL=https://api.github.com 2025-09-07T06:24:08.1682983Z GITHUB_BASE_REF= 2025-09-07T06:24:08.1683430Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_54593c2e-cac2-43a7-b12c-6ef8f81669eb 2025-09-07T06:24:08.1683934Z GITHUB_EVENT_NAME=push 2025-09-07T06:24:08.1684293Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-09-07T06:24:08.1684745Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-09-07T06:24:08.1686090Z GITHUB_HEAD_REF= 2025-09-07T06:24:08.1686281Z GITHUB_JOB=build 2025-09-07T06:24:08.1686750Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_54593c2e-cac2-43a7-b12c-6ef8f81669eb 2025-09-07T06:24:08.1687570Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_54593c2e-cac2-43a7-b12c-6ef8f81669eb 2025-09-07T06:24:08.1688087Z GITHUB_REF=refs/heads/main 2025-09-07T06:24:08.1688321Z GITHUB_REF_NAME=main 2025-09-07T06:24:08.1688535Z GITHUB_REF_PROTECTED=true 2025-09-07T06:24:08.1688779Z GITHUB_REF_TYPE=branch 2025-09-07T06:24:08.1689012Z GITHUB_REPOSITORY=pytorch/pytorch 2025-09-07T06:24:08.1689289Z GITHUB_REPOSITORY_ID=65600975 2025-09-07T06:24:08.1689549Z GITHUB_REPOSITORY_OWNER=pytorch 2025-09-07T06:24:08.1689832Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-09-07T06:24:08.1690099Z GITHUB_RETENTION_DAYS=90 2025-09-07T06:24:08.1690317Z GITHUB_RUN_ATTEMPT=1 2025-09-07T06:24:08.1691143Z GITHUB_RUN_ID=17524754564 2025-09-07T06:24:08.1691779Z GITHUB_RUN_NUMBER=143911 2025-09-07T06:24:08.1692031Z GITHUB_SERVER_URL=https://github.com 2025-09-07T06:24:08.1692344Z GITHUB_SHA=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:24:08.1692919Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_54593c2e-cac2-43a7-b12c-6ef8f81669eb 2025-09-07T06:24:08.1693719Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_54593c2e-cac2-43a7-b12c-6ef8f81669eb 2025-09-07T06:24:08.1694301Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-09-07T06:24:08.1694590Z GITHUB_WORKFLOW=trunk 2025-09-07T06:24:08.1694954Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-09-07T06:24:08.1695636Z GITHUB_WORKFLOW_SHA=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:24:08.1696056Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:24:08.1697398Z GIT_DEFAULT_BRANCH=main 2025-09-07T06:24:08.1697636Z HOME=C:\Users\runneruser 2025-09-07T06:24:08.1699586Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-09-07T06:24:08.1701823Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-09-07T06:24:08.1703325Z is_x64_arch=true 2025-09-07T06:24:08.1704316Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-09-07T06:24:08.1706598Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-09-07T06:24:08.1709034Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-09-07T06:24:08.1709457Z MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-09-07T06:24:08.1709844Z MAX_JOBS=8 2025-09-07T06:24:08.1710124Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-09-07T06:24:08.1710493Z NUMBER_OF_PROCESSORS=16 2025-09-07T06:24:08.1710698Z OS=Windows_NT 2025-09-07T06:24:08.1710907Z OUR_GITHUB_JOB_ID=49773699333 2025-09-07T06:24:08.1721371Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-09-07T06:24:08.1732168Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-09-07T06:24:08.1732501Z Platform=x64 2025-09-07T06:24:08.1732711Z PROCESSOR_ARCHITECTURE=AMD64 2025-09-07T06:24:08.1733082Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-09-07T06:24:08.1733484Z PROCESSOR_LEVEL=6 2025-09-07T06:24:08.1733690Z PROCESSOR_REVISION=5507 2025-09-07T06:24:08.1733922Z PROGRAMFILES=C:\Program Files 2025-09-07T06:24:08.1734167Z PROMPT=(base) $P$G 2025-09-07T06:24:08.1734374Z PR_NUMBER= 2025-09-07T06:24:08.1734823Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-09-07T06:24:08.1735369Z PUBLIC=C:\Users\Public 2025-09-07T06:24:08.1735793Z *** 2025-09-07T06:24:08.1735963Z PYTHON_VERSION=3.9 2025-09-07T06:24:08.1736239Z PYTORCH_FINAL_PACKAGE_DIR=C:/17524754564/build-results/ 2025-09-07T06:24:08.1737728Z ProgramData=C:\ProgramData 2025-09-07T06:24:08.1738011Z ProgramFiles(x86)=C:\Program Files (x86) 2025-09-07T06:24:08.1738307Z ProgramW6432=C:\Program Files 2025-09-07T06:24:08.1738567Z RUNNER_ARCH=X64 2025-09-07T06:24:08.1738786Z RUNNER_ENVIRONMENT=self-hosted 2025-09-07T06:24:08.1739046Z RUNNER_NAME=i-0a035dcdde4a77639 2025-09-07T06:24:08.1739299Z RUNNER_OS=Windows 2025-09-07T06:24:08.1739534Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-09-07T06:24:08.1739868Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-09-07T06:24:08.1740241Z RUNNER_TRACKING_ID=github_88445ef1-a128-4581-a871-7d735b849941 2025-09-07T06:24:08.1740640Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-09-07T06:24:08.1740961Z SCCACHE_BUCKET=ossci-compiler-cache 2025-09-07T06:24:08.1741224Z SCCACHE_IDLE_TIMEOUT=0 2025-09-07T06:24:08.1741448Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-09-07T06:24:08.1741711Z SCCACHE_REGION=us-east-1 2025-09-07T06:24:08.1741941Z SCCACHE_S3_KEY_PREFIX=trunk 2025-09-07T06:24:08.1743388Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-09-07T06:24:08.1743897Z SHA1=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:24:08.1744172Z SHLVL=2 2025-09-07T06:24:08.1744422Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-09-07T06:24:08.1744749Z SYSTEMDRIVE=C: 2025-09-07T06:24:08.1744952Z SYSTEMROOT=C:\Windows 2025-09-07T06:24:08.1745187Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:24:08.1745463Z TERM=xterm-256color 2025-09-07T06:24:08.1745687Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:24:08.1745983Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:24:08.1746347Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:24:08.1746768Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-09-07T06:24:08.1747121Z TORCH_CUDA_ARCH_LIST=8.6 2025-09-07T06:24:08.1747338Z UCRTVersion=10.0.19041.0 2025-09-07T06:24:08.1747651Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-09-07T06:24:08.1748620Z UPDATEFILE=update.finished 2025-09-07T06:24:08.1749267Z USERDOMAIN=EC2AMAZ-F4P7NAP 2025-09-07T06:24:08.1749509Z USERNAME=runneruser 2025-09-07T06:24:08.1749730Z USERPROFILE=C:\Users\runneruser 2025-09-07T06:24:08.1749966Z USE_CUDA=1 2025-09-07T06:24:08.1750133Z USE_XPU=0 2025-09-07T06:24:08.1750522Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-09-07T06:24:08.1751273Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-09-07T06:24:08.1751927Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-09-07T06:24:08.1752684Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-09-07T06:24:08.1753188Z VCToolsVersion=14.42.34433 2025-09-07T06:24:08.1753432Z VC_PRODUCT=BuildTools 2025-09-07T06:24:08.1753642Z VC_VERSION= 2025-09-07T06:24:08.1753830Z VC_YEAR=2022 2025-09-07T06:24:08.1755054Z VERBOSE_ARG='SilentlyContinue' 2025-09-07T06:24:08.1755318Z VERSION_SUFFIX=12_6 2025-09-07T06:24:08.1755529Z VisualStudioVersion=17.0 2025-09-07T06:24:08.1755967Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-09-07T06:24:08.1756418Z VSCMD_ARG_app_plat=Desktop 2025-09-07T06:24:08.1756655Z VSCMD_ARG_HOST_ARCH=x64 2025-09-07T06:24:08.1756864Z VSCMD_ARG_TGT_ARCH=x64 2025-09-07T06:24:08.1757071Z VSCMD_VER=17.12.11 2025-09-07T06:24:08.1757407Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-09-07T06:24:08.1757790Z WINDIR=C:\Windows 2025-09-07T06:24:08.1758345Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-09-07T06:24:08.1759048Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-09-07T06:24:08.1759471Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-09-07T06:24:08.1760933Z WindowsSDKLibVersion=10.0.19041.0\ 2025-09-07T06:24:08.1761358Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-09-07T06:24:08.1761795Z WindowsSDKVersion=10.0.19041.0\ 2025-09-07T06:24:08.1762297Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-09-07T06:24:08.1763036Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-09-07T06:24:08.1763521Z XPU_VERSION= 2025-09-07T06:24:08.1763904Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-09-07T06:24:08.1764375Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-09-07T06:24:08.1764621Z __DOTNET_ADD_64BIT=1 2025-09-07T06:24:08.1764844Z __DOTNET_PREFERRED_BITNESS=64 2025-09-07T06:24:08.1769625Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-09-07T06:24:08.1774480Z 2025-09-07T06:24:08.1774727Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-09-07T06:24:08.7434327Z Building wheel torch-2.9.0a0+git93fb23d 2025-09-07T06:24:08.8931892Z -- Building version 2.9.0a0+git93fb23d 2025-09-07T06:24:09.0163041Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\_msvccompiler.py:12: UserWarning: _get_vc_env is private; find an alternative (pypa/distutils#340) 2025-09-07T06:24:09.0163797Z warnings.warn( 2025-09-07T06:24:09.0487868Z Cloning into 'nccl'... 2025-09-07T06:24:09.4623893Z Note: switching to '3ea7eedf3b9b94f1d9f99f4e55536dfcbd23c1ca'. 2025-09-07T06:24:09.4624227Z 2025-09-07T06:24:09.4624429Z You are in 'detached HEAD' state. You can look around, make experimental 2025-09-07T06:24:09.4624950Z changes and commit them, and you can discard any commits you make in this 2025-09-07T06:24:09.4625437Z state without impacting any branches by switching back to a branch. 2025-09-07T06:24:09.4625731Z 2025-09-07T06:24:09.4625930Z If you want to create a new branch to retain commits you create, you may 2025-09-07T06:24:09.4626403Z do so (now or later) by using -c with the switch command. Example: 2025-09-07T06:24:09.4626670Z 2025-09-07T06:24:09.4626767Z git switch -c 2025-09-07T06:24:09.4626946Z 2025-09-07T06:24:09.4627043Z Or undo this operation with: 2025-09-07T06:24:09.4627205Z 2025-09-07T06:24:09.4627278Z git switch - 2025-09-07T06:24:09.4627392Z 2025-09-07T06:24:09.4627609Z Turn off this advice by setting config variable advice.detachedHead to false 2025-09-07T06:24:09.4627932Z 2025-09-07T06:24:12.4478772Z cmake -GNinja -DBUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 -DBUILD_PYTHON=True -DBUILD_TEST=True -DBUILD_TYPE=release -DBUILD_WHEEL=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe -DCMAKE_CUDA_COMPILER_LAUNCHER=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/randomtemp.exe;C:/actions-runner/_work/pytorch/pytorch/build/win_tmp\bin\sccache.exe -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_GENERATOR=Ninja -DCMAKE_INSTALL_PREFIX=C:\actions-runner\_work\pytorch\pytorch\torch -DCMAKE_PREFIX_PATH=C:\Jenkins\Miniconda3\Lib\site-packages -DCUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat -DCUDNN_LIBRARY=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 -DPython_EXECUTABLE=C:\Jenkins\Miniconda3\python.exe -DPython_NumPy_INCLUDE_DIR=C:\Jenkins\Miniconda3\lib\site-packages\numpy\core\include -DTORCH_BUILD_VERSION=2.9.0a0+git93fb23d -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=1 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:24:19.9301444Z -- The CXX compiler identification is MSVC 19.42.34444.0 2025-09-07T06:24:20.0779207Z -- The C compiler identification is MSVC 19.42.34444.0 2025-09-07T06:24:20.0996964Z -- Detecting CXX compiler ABI info 2025-09-07T06:24:26.8173817Z -- Detecting CXX compiler ABI info - done 2025-09-07T06:24:26.8196837Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-09-07T06:24:26.8201094Z -- Detecting CXX compile features 2025-09-07T06:24:26.8214988Z -- Detecting CXX compile features - done 2025-09-07T06:24:26.8323379Z -- Detecting C compiler ABI info 2025-09-07T06:24:27.1515943Z -- Detecting C compiler ABI info - done 2025-09-07T06:24:27.1539287Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe - skipped 2025-09-07T06:24:27.1543446Z -- Detecting C compile features 2025-09-07T06:24:27.1554480Z -- Detecting C compile features - done 2025-09-07T06:24:27.1603899Z -- Not forcing any particular BLAS to be found 2025-09-07T06:24:27.1707386Z CMake Warning at CMakeLists.txt:422 (message): 2025-09-07T06:24:27.1707782Z TensorPipe cannot be used on Windows. Set it to OFF 2025-09-07T06:24:27.1708029Z 2025-09-07T06:24:27.1708034Z 2025-09-07T06:24:27.1708191Z CMake Warning at CMakeLists.txt:424 (message): 2025-09-07T06:24:27.1708537Z KleidiAI cannot be used on Windows. Set it to OFF 2025-09-07T06:24:27.1708772Z 2025-09-07T06:24:27.1708776Z 2025-09-07T06:24:27.1773363Z -- Performing Test C_HAS_AVX_1 2025-09-07T06:24:28.0542113Z -- Performing Test C_HAS_AVX_1 - Success 2025-09-07T06:24:28.0547268Z -- Performing Test C_HAS_AVX2_1 2025-09-07T06:24:28.4398835Z -- Performing Test C_HAS_AVX2_1 - Success 2025-09-07T06:24:28.4413612Z -- Performing Test C_HAS_AVX512_1 2025-09-07T06:24:28.8056350Z -- Performing Test C_HAS_AVX512_1 - Success 2025-09-07T06:24:28.8060854Z -- Performing Test CXX_HAS_AVX_1 2025-09-07T06:24:29.1794725Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-09-07T06:24:29.1799198Z -- Performing Test CXX_HAS_AVX2_1 2025-09-07T06:24:29.5986126Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-09-07T06:24:29.5991272Z -- Performing Test CXX_HAS_AVX512_1 2025-09-07T06:24:29.9691603Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-09-07T06:24:29.9693218Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-09-07T06:24:29.9716012Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-09-07T06:24:30.5083013Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-09-07T06:24:30.5106572Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-09-07T06:24:30.8306900Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-09-07T06:24:30.8313820Z -- Could not find hardware support for NEON on this machine. 2025-09-07T06:24:30.8314189Z -- No OMAP3 processor on this machine. 2025-09-07T06:24:30.8314476Z -- No OMAP4 processor on this machine. 2025-09-07T06:24:30.8315319Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-09-07T06:24:30.8372410Z CMake Warning at CMakeLists.txt:841 (message): 2025-09-07T06:24:30.8372901Z x64 operating system is required for FBGEMM. Not compiling with FBGEMM. 2025-09-07T06:24:30.8373629Z Turn this warning off by USE_FBGEMM=OFF. 2025-09-07T06:24:30.8373837Z 2025-09-07T06:24:30.8373842Z 2025-09-07T06:24:30.8395653Z -- Performing Test HAS/UTF_8 2025-09-07T06:24:31.1620220Z -- Performing Test HAS/UTF_8 - Success 2025-09-07T06:24:31.9827190Z -- Found CUDA: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 (found version "12.6") 2025-09-07T06:24:37.9281332Z -- The CUDA compiler identification is NVIDIA 12.6.85 2025-09-07T06:24:37.9506271Z -- Detecting CUDA compiler ABI info 2025-09-07T06:24:44.4066617Z -- Detecting CUDA compiler ABI info - done 2025-09-07T06:24:44.4395452Z -- Check for working CUDA compiler: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe - skipped 2025-09-07T06:24:45.5278073Z -- Detecting CUDA compile features 2025-09-07T06:24:45.5290340Z -- Detecting CUDA compile features - done 2025-09-07T06:24:45.5355910Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found version "12.6.85") 2025-09-07T06:24:46.7547453Z -- PyTorch: CUDA detected: 12.6 2025-09-07T06:24:46.7548038Z -- PyTorch: CUDA nvcc is: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-09-07T06:24:46.7548740Z -- PyTorch: CUDA toolkit directory: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-09-07T06:24:47.3397157Z -- PyTorch: Header version is: 12.6 2025-09-07T06:24:47.7699393Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-09-07T06:24:47.7741906Z CMake Warning at cmake/public/cuda.cmake:140 (message): 2025-09-07T06:24:47.7742308Z Failed to compute shorthash for libnvrtc.so 2025-09-07T06:24:47.7742624Z Call Stack (most recent call first): 2025-09-07T06:24:47.7742909Z cmake/Dependencies.cmake:44 (include) 2025-09-07T06:24:47.7743189Z CMakeLists.txt:869 (include) 2025-09-07T06:24:47.7743351Z 2025-09-07T06:24:47.7743356Z 2025-09-07T06:24:47.7791221Z -- Found CUDNN: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-09-07T06:24:47.8259164Z -- Could NOT find CUSPARSELT (missing: CUSPARSELT_LIBRARY_PATH CUSPARSELT_INCLUDE_PATH) 2025-09-07T06:24:47.8259748Z CMake Warning at cmake/public/cuda.cmake:226 (message): 2025-09-07T06:24:47.8260156Z Cannot find cuSPARSELt library. Turning the option off 2025-09-07T06:24:47.8260512Z Call Stack (most recent call first): 2025-09-07T06:24:47.8260797Z cmake/Dependencies.cmake:44 (include) 2025-09-07T06:24:47.8261320Z CMakeLists.txt:869 (include) 2025-09-07T06:24:47.8261488Z 2025-09-07T06:24:47.8261493Z 2025-09-07T06:24:47.8606160Z -- Could NOT find CUDSS (missing: CUDSS_LIBRARY_PATH CUDSS_INCLUDE_PATH) 2025-09-07T06:24:47.8607270Z CMake Warning at cmake/public/cuda.cmake:242 (message): 2025-09-07T06:24:47.8607739Z Cannot find CUDSS library. Turning the option off 2025-09-07T06:24:47.8608122Z Call Stack (most recent call first): 2025-09-07T06:24:47.8608445Z cmake/Dependencies.cmake:44 (include) 2025-09-07T06:24:47.8608759Z CMakeLists.txt:869 (include) 2025-09-07T06:24:47.8608963Z 2025-09-07T06:24:47.8608968Z 2025-09-07T06:24:47.8609143Z -- USE_CUFILE is set to 0. Compiling without cuFile support 2025-09-07T06:24:47.8615928Z CMake Warning at cmake/public/cuda.cmake:323 (message): 2025-09-07T06:24:47.8616437Z pytorch is not compatible with `CMAKE_CUDA_ARCHITECTURES` and will ignore 2025-09-07T06:24:47.8617003Z its value. Please configure `TORCH_CUDA_ARCH_LIST` instead. 2025-09-07T06:24:47.8617414Z Call Stack (most recent call first): 2025-09-07T06:24:47.8617736Z cmake/Dependencies.cmake:44 (include) 2025-09-07T06:24:47.8618043Z CMakeLists.txt:869 (include) 2025-09-07T06:24:47.8618226Z 2025-09-07T06:24:47.8618230Z 2025-09-07T06:24:47.8618410Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2025-09-07T06:24:47.8642367Z -- Building using own protobuf under third_party per request. 2025-09-07T06:24:47.8642804Z -- Use custom protobuf build. 2025-09-07T06:24:47.8666471Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-09-07T06:24:47.8667142Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-09-07T06:24:47.8667511Z CMake. 2025-09-07T06:24:47.8667624Z 2025-09-07T06:24:47.8667823Z Update the VERSION argument value or use a ... suffix to tell 2025-09-07T06:24:47.8668334Z CMake that the project does not need compatibility with older versions. 2025-09-07T06:24:47.8668642Z 2025-09-07T06:24:47.8668646Z 2025-09-07T06:24:47.8681083Z -- 2025-09-07T06:24:47.8681428Z -- 3.13.0.0 2025-09-07T06:24:47.8698467Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-09-07T06:24:47.9844844Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-09-07T06:24:47.9846766Z -- Looking for pthread_create in pthreads 2025-09-07T06:24:48.1522785Z -- Looking for pthread_create in pthreads - not found 2025-09-07T06:24:48.1523751Z -- Looking for pthread_create in pthread 2025-09-07T06:24:48.3226966Z -- Looking for pthread_create in pthread - not found 2025-09-07T06:24:48.3243877Z -- Found Threads: TRUE 2025-09-07T06:24:48.3751228Z -- Caffe2 protobuf include directory: $$ 2025-09-07T06:24:48.3788105Z -- Trying to find preferred BLAS backend of choice: MKL 2025-09-07T06:24:48.3812523Z -- MKL_THREADING = OMP 2025-09-07T06:24:48.3815923Z -- Looking for sys/types.h 2025-09-07T06:24:48.7102200Z -- Looking for sys/types.h - found 2025-09-07T06:24:48.7104097Z -- Looking for stdint.h 2025-09-07T06:24:49.0249979Z -- Looking for stdint.h - found 2025-09-07T06:24:49.0251676Z -- Looking for stddef.h 2025-09-07T06:24:49.3394315Z -- Looking for stddef.h - found 2025-09-07T06:24:49.3395278Z -- Check size of void* 2025-09-07T06:24:49.6735376Z -- Check size of void* - done 2025-09-07T06:24:49.6962089Z -- Looking for cblas_sgemm 2025-09-07T06:24:50.2436187Z -- Looking for cblas_sgemm - found 2025-09-07T06:24:50.2440376Z -- Looking for cblas_gemm_bf16bf16f32 2025-09-07T06:24:50.8009237Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-09-07T06:24:50.8009621Z -- Looking for cblas_gemm_f16f16f32 2025-09-07T06:24:51.3351375Z -- Looking for cblas_gemm_f16f16f32 - found 2025-09-07T06:24:51.3711033Z -- MKL libraries: C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core.lib;C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-09-07T06:24:51.3712395Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-09-07T06:24:51.3712766Z -- MKL OpenMP type: Intel 2025-09-07T06:24:51.3713131Z -- MKL OpenMP library: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-09-07T06:24:52.0167038Z -- The ASM compiler identification is MSVC 2025-09-07T06:24:52.0183078Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-09-07T06:24:52.0306656Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-09-07T06:24:52.0365759Z -- Generating microkernels.cmake 2025-09-07T06:24:56.9925972Z Duplicate microkernel definition: src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c and src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c (1th function) 2025-09-07T06:24:56.9927390Z Duplicate microkernel definition: src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c and src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-scalar.c 2025-09-07T06:24:56.9928239Z No microkernel found in src\reference\binary-elementwise.cc 2025-09-07T06:24:56.9928639Z No microkernel found in src\reference\packing.cc 2025-09-07T06:24:56.9929015Z No microkernel found in src\reference\unary-elementwise.cc 2025-09-07T06:24:57.1124205Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.51.0.windows.1") 2025-09-07T06:24:57.1588223Z -- Google Benchmark version: v1.9.3, normalized to 1.9.3 2025-09-07T06:24:57.1603385Z -- Looking for shm_open in rt 2025-09-07T06:25:02.4111471Z -- Looking for shm_open in rt - not found 2025-09-07T06:25:02.4136786Z -- Performing Test HAVE_CXX_FLAG_WX 2025-09-07T06:25:02.9418450Z -- Performing Test HAVE_CXX_FLAG_WX - Success 2025-09-07T06:25:02.9422419Z -- Compiling and running to test HAVE_STD_REGEX 2025-09-07T06:25:05.4524974Z -- Performing Test HAVE_STD_REGEX -- success 2025-09-07T06:25:05.4525974Z -- Compiling and running to test HAVE_GNU_POSIX_REGEX 2025-09-07T06:25:05.5586049Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-09-07T06:25:05.5586578Z -- Compiling and running to test HAVE_POSIX_REGEX 2025-09-07T06:25:05.6500049Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-09-07T06:25:05.6501080Z -- Compiling and running to test HAVE_STEADY_CLOCK 2025-09-07T06:25:07.1482682Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-09-07T06:25:07.1518810Z -- Compiling and running to test HAVE_PTHREAD_AFFINITY 2025-09-07T06:25:07.2505480Z -- Performing Test HAVE_PTHREAD_AFFINITY -- failed to compile 2025-09-07T06:25:07.4548215Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-09-07T06:25:07.4548864Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-09-07T06:25:07.4549242Z CMake. 2025-09-07T06:25:07.4549365Z 2025-09-07T06:25:07.4549564Z Update the VERSION argument value or use a ... suffix to tell 2025-09-07T06:25:07.4550065Z CMake that the project does not need compatibility with older versions. 2025-09-07T06:25:07.4550384Z 2025-09-07T06:25:07.4550389Z 2025-09-07T06:25:07.4619894Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-09-07T06:25:07.4620536Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-09-07T06:25:07.4620922Z CMake. 2025-09-07T06:25:07.4621038Z 2025-09-07T06:25:07.4621237Z Update the VERSION argument value or use a ... suffix to tell 2025-09-07T06:25:07.4621752Z CMake that the project does not need compatibility with older versions. 2025-09-07T06:25:07.4622057Z 2025-09-07T06:25:07.4622061Z 2025-09-07T06:25:07.4671181Z -- Using third party subdirectory Eigen. 2025-09-07T06:25:09.0063390Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-09-07T06:25:09.0065927Z -- Using third_party/pybind11. 2025-09-07T06:25:09.0067180Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-09-07T06:25:09.0122829Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-09-07T06:25:09.0123297Z -- Using third_party/opentelemetry-cpp. 2025-09-07T06:25:09.0123933Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-09-07T06:25:09.6160542Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-09-07T06:25:10.0455052Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-09-07T06:25:10.0464462Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-09-07T06:25:10.0468746Z CMake Warning at cmake/Dependencies.cmake:894 (message): 2025-09-07T06:25:10.0469284Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-09-07T06:25:10.0469726Z Call Stack (most recent call first): 2025-09-07T06:25:10.0470022Z CMakeLists.txt:869 (include) 2025-09-07T06:25:10.0470199Z 2025-09-07T06:25:10.0470203Z 2025-09-07T06:25:10.0506124Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-09-07T06:25:10.4085761Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-09-07T06:25:11.3165471Z -- Found OpenMP_C: -openmp:experimental 2025-09-07T06:25:11.7404716Z -- Found OpenMP_CXX: -openmp:experimental 2025-09-07T06:25:11.7413883Z -- Found OpenMP: TRUE 2025-09-07T06:25:11.7416543Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-09-07T06:25:11.7417072Z -- Will link against OpenMP libraries: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-09-07T06:25:11.7427664Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-09-07T06:25:11.7433504Z -- ROCM_PATH environment variable is not set and C:/opt/rocm does not exist. 2025-09-07T06:25:11.7433937Z Building without ROCm support. 2025-09-07T06:25:11.7465619Z -- Found CUB: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-09-07T06:25:11.7489245Z -- MSVC detected 2025-09-07T06:25:11.7489478Z -- Set USE_REDIS OFF 2025-09-07T06:25:11.7490718Z -- Set USE_IBVERBS OFF 2025-09-07T06:25:11.7490939Z -- Set USE_NCCL OFF 2025-09-07T06:25:11.7491141Z -- Set USE_RCCL OFF 2025-09-07T06:25:11.7491345Z -- Set USE_LIBUV OFF 2025-09-07T06:25:11.7492388Z -- Gloo build as SHARED library 2025-09-07T06:25:11.7540081Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found suitable version "12.6.85", minimum required is "7.0") 2025-09-07T06:25:12.9168842Z -- CUDA detected: 12.6.85 2025-09-07T06:25:12.9425989Z -- GLOO_USE_TORCH_DTYPES : 1 C:/actions-runner/_work/pytorch/pytorch;C:/actions-runner/_work/pytorch/pytorch/build 2025-09-07T06:25:13.3941021Z -- Found Python3: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-09-07T06:25:13.3954385Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-09-07T06:25:13.3954817Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-09-07T06:25:13.3970486Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-09-07T06:25:13.3978052Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-09-07T06:25:13.3985560Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-09-07T06:25:13.6190902Z -- 2025-09-07T06:25:13.6191192Z -- ******** Summary ******** 2025-09-07T06:25:13.6191478Z -- CMake version : 3.27.9 2025-09-07T06:25:13.6191865Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-09-07T06:25:13.6192256Z -- System : Windows 2025-09-07T06:25:13.6192876Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-09-07T06:25:13.6193731Z -- C++ compiler version : 19.42.34444.0 2025-09-07T06:25:13.6194261Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-09-07T06:25:13.6194786Z -- Build type : Release 2025-09-07T06:25:13.6195237Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-09-07T06:25:13.6196784Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-09-07T06:25:13.6198291Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-09-07T06:25:13.6199122Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules;C:/actions-runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-09-07T06:25:13.6199791Z -- 2025-09-07T06:25:13.6199993Z -- ONNX version : 1.18.0 2025-09-07T06:25:13.6200303Z -- ONNX NAMESPACE : onnx_torch 2025-09-07T06:25:13.6200624Z -- ONNX_USE_LITE_PROTO : OFF 2025-09-07T06:25:13.6200914Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-09-07T06:25:13.6201397Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-09-07T06:25:13.6201743Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-09-07T06:25:13.6202037Z -- ONNX_WERROR : OFF 2025-09-07T06:25:13.6202322Z -- ONNX_BUILD_TESTS : OFF 2025-09-07T06:25:13.6202594Z -- BUILD_SHARED_LIBS : OFF 2025-09-07T06:25:13.6202861Z -- 2025-09-07T06:25:13.6203165Z -- Protobuf compiler : $ 2025-09-07T06:25:13.6203554Z -- Protobuf includes : 2025-09-07T06:25:13.6203829Z -- Protobuf libraries : 2025-09-07T06:25:13.6204113Z -- ONNX_BUILD_PYTHON : OFF 2025-09-07T06:25:13.6204495Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-09-07T06:25:13.6204874Z -- Adding -DNDEBUG to compile flags 2025-09-07T06:25:13.6244305Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 2025-09-07T06:25:13.7179523Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False 2025-09-07T06:25:13.7179945Z -- Compiling with MAGMA support 2025-09-07T06:25:13.7180415Z -- MAGMA INCLUDE DIRECTORIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/include 2025-09-07T06:25:13.7181100Z -- MAGMA LIBRARIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/lib/magma.lib 2025-09-07T06:25:13.7181565Z -- MAGMA V2 check: 0 2025-09-07T06:25:13.7184980Z -- Could not find hardware support for NEON on this machine. 2025-09-07T06:25:13.7185375Z -- No OMAP3 processor on this machine. 2025-09-07T06:25:13.7185651Z -- No OMAP4 processor on this machine. 2025-09-07T06:25:13.7200789Z -- Looking for sbgemm_ 2025-09-07T06:25:14.0345211Z -- Looking for sbgemm_ - not found 2025-09-07T06:25:14.0357015Z -- Found a library with LAPACK API (mkl). 2025-09-07T06:25:14.0358263Z disabling ROCM because NOT USE_ROCM is set 2025-09-07T06:25:14.0358643Z -- MIOpen not found. Compiling without MIOpen support 2025-09-07T06:25:14.0368781Z -- Will build oneDNN UKERNEL 2025-09-07T06:25:14.0476402Z -- MKLDNN_CPU_RUNTIME = OMP 2025-09-07T06:25:14.0496788Z -- DNNL_TARGET_ARCH: X64 2025-09-07T06:25:14.0527743Z -- DNNL_LIBRARY_NAME: dnnl 2025-09-07T06:25:14.0626442Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-09-07T06:25:14.0627220Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-09-07T06:25:14.0628697Z does not match the name of the calling package (OpenMP). This can lead to 2025-09-07T06:25:14.0629203Z problems in calling code that expects `find_package` result variables 2025-09-07T06:25:14.0629612Z (e.g., `_FOUND`) to follow a certain pattern. 2025-09-07T06:25:14.0629908Z Call Stack (most recent call first): 2025-09-07T06:25:14.0630301Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-09-07T06:25:14.0630789Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-09-07T06:25:14.0631218Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-09-07T06:25:14.0631644Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-09-07T06:25:14.0631945Z 2025-09-07T06:25:14.0632066Z -- Found OpenMP_C: -openmp:experimental 2025-09-07T06:25:14.0637171Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-09-07T06:25:14.0637925Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-09-07T06:25:14.0638468Z does not match the name of the calling package (OpenMP). This can lead to 2025-09-07T06:25:14.0638964Z problems in calling code that expects `find_package` result variables 2025-09-07T06:25:14.0640480Z (e.g., `_FOUND`) to follow a certain pattern. 2025-09-07T06:25:14.0640790Z Call Stack (most recent call first): 2025-09-07T06:25:14.0641190Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-09-07T06:25:14.0641881Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-09-07T06:25:14.0642299Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-09-07T06:25:14.0642745Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-09-07T06:25:14.0643041Z 2025-09-07T06:25:14.0643171Z -- Found OpenMP_CXX: -openmp:experimental 2025-09-07T06:25:14.1066557Z -- Enabled testing coverage: CI 2025-09-07T06:25:14.1078064Z -- Enabled workload: TRAINING 2025-09-07T06:25:14.1078405Z -- Enabled primitives: ALL 2025-09-07T06:25:14.1078777Z -- Enabled primitive CPU ISA: ALL 2025-09-07T06:25:14.1079164Z -- Enabled primitive GPU ISA: ALL 2025-09-07T06:25:14.1079551Z -- Enabled GeMM kernels ISA: ALL 2025-09-07T06:25:14.1192686Z -- Primitive cache is enabled 2025-09-07T06:25:14.1193540Z -- Experimental functionality for ukernels is enabled 2025-09-07T06:25:14.1818023Z -- The ASM_MASM compiler identification is MSVC 2025-09-07T06:25:14.2350156Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/ml64.exe 2025-09-07T06:25:14.2605064Z -- Graph component is enabled 2025-09-07T06:25:14.2722121Z -- Graph compiler backend is disabled. 2025-09-07T06:25:14.2856690Z -- Found MKL-DNN: TRUE 2025-09-07T06:25:14.2948129Z -- {fmt} version: 11.2.0 2025-09-07T06:25:14.2948409Z -- Build type: Release 2025-09-07T06:25:14.3031272Z -- Using Kineto with CUPTI support 2025-09-07T06:25:14.3032448Z -- Configuring Kineto dependency: 2025-09-07T06:25:14.3032936Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-09-07T06:25:14.3033400Z -- KINETO_BUILD_TESTS = OFF 2025-09-07T06:25:14.3033645Z -- KINETO_LIBRARY_TYPE = static 2025-09-07T06:25:14.3034037Z -- CUDA_SOURCE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-09-07T06:25:14.3034599Z -- CUDA_INCLUDE_DIRS = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-09-07T06:25:14.3037566Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-09-07T06:25:14.3038296Z -- CUDA_cupti_LIBRARY = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/lib64/cupti.lib 2025-09-07T06:25:14.3038790Z -- Found CUPTI 2025-09-07T06:25:14.3103611Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-09-07T06:25:14.3104243Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-09-07T06:25:14.3105021Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-09-07T06:25:14.3105513Z the cmake_policy command to set the policy and suppress this warning. 2025-09-07T06:25:14.3105824Z 2025-09-07T06:25:14.3106017Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-09-07T06:25:14.3106312Z 2025-09-07T06:25:14.3598350Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-09-07T06:25:14.3602705Z -- ROCM_SOURCE_DIR = 2025-09-07T06:25:14.4883252Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-09-07T06:25:14.4883905Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-09-07T06:25:14.4884559Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-09-07T06:25:14.4885076Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-09-07T06:25:14.4885668Z -- DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-09-07T06:25:14.4886660Z -- IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-09-07T06:25:14.4905950Z -- Configured Kineto 2025-09-07T06:25:14.4962729Z -- Performing Test HAS/WD4624 2025-09-07T06:25:14.9196108Z -- Performing Test HAS/WD4624 - Success 2025-09-07T06:25:14.9221589Z -- Performing Test HAS/WD4068 2025-09-07T06:25:15.7853166Z -- Performing Test HAS/WD4068 - Success 2025-09-07T06:25:15.7877784Z -- Performing Test HAS/WD4067 2025-09-07T06:25:16.1319947Z -- Performing Test HAS/WD4067 - Success 2025-09-07T06:25:16.1344860Z -- Performing Test HAS/WD4267 2025-09-07T06:25:16.4962117Z -- Performing Test HAS/WD4267 - Success 2025-09-07T06:25:16.4986287Z -- Performing Test HAS/WD4661 2025-09-07T06:25:16.8737513Z -- Performing Test HAS/WD4661 - Success 2025-09-07T06:25:16.8771922Z -- Performing Test HAS/WD4717 2025-09-07T06:25:17.2411787Z -- Performing Test HAS/WD4717 - Success 2025-09-07T06:25:17.2437373Z -- Performing Test HAS/WD4244 2025-09-07T06:25:17.7146480Z -- Performing Test HAS/WD4244 - Success 2025-09-07T06:25:17.7171347Z -- Performing Test HAS/WD4804 2025-09-07T06:25:18.0640948Z -- Performing Test HAS/WD4804 - Success 2025-09-07T06:25:18.0666192Z -- Performing Test HAS/WD4273 2025-09-07T06:25:18.8313370Z -- Performing Test HAS/WD4273 - Success 2025-09-07T06:25:18.8339195Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-09-07T06:25:18.9144275Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-09-07T06:25:20.0576328Z -- 2025-09-07T06:25:20.0577123Z -- Architecture: x64 2025-09-07T06:25:20.0580661Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-09-07T06:25:20.0587382Z -- 2025-09-07T06:25:20.0587577Z -- Library name : mimalloc 2025-09-07T06:25:20.0587881Z -- Version : 2.2.4 2025-09-07T06:25:20.0588108Z -- Build type : release 2025-09-07T06:25:20.0588731Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-09-07T06:25:20.0589326Z -- Compiler flags : /Zc:__cplusplus 2025-09-07T06:25:20.0589682Z -- Compiler defines : MI_CMAKE_BUILD_TYPE=release;MI_BUILD_RELEASE 2025-09-07T06:25:20.0590112Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-09-07T06:25:20.0590440Z -- Build targets : static 2025-09-07T06:25:20.0590662Z -- 2025-09-07T06:25:20.0708378Z -- don't use NUMA 2025-09-07T06:25:20.0769839Z -- Looking for backtrace 2025-09-07T06:25:20.1659708Z -- Looking for backtrace - not found 2025-09-07T06:25:20.1767934Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-09-07T06:25:24.6899416Z -- headers outputs: 2025-09-07T06:25:26.8112718Z -- sources outputs: 2025-09-07T06:25:28.7055219Z -- declarations_yaml outputs: 2025-09-07T06:25:28.7138870Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-09-07T06:25:34.1271729Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-09-07T06:25:34.3693334Z -- Using ATen parallel backend: OMP 2025-09-07T06:25:34.9712428Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.17") 2025-09-07T06:25:35.0022841Z -- Check size of long double 2025-09-07T06:25:35.4629256Z -- Check size of long double - done 2025-09-07T06:25:35.4634640Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-09-07T06:25:35.6116660Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-09-07T06:25:35.6120081Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-09-07T06:25:36.0412739Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-09-07T06:25:36.0415833Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-09-07T06:25:36.4361742Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-09-07T06:25:36.4365978Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-09-07T06:25:36.9072527Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-09-07T06:25:36.9075192Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-09-07T06:25:37.3140067Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-09-07T06:25:37.3143343Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-09-07T06:25:37.7091785Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-09-07T06:25:37.7095228Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-09-07T06:25:38.1154275Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-09-07T06:25:38.1198195Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-09-07T06:25:38.1214549Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-09-07T06:25:38.1227403Z -- Found OpenMP: TRUE (found version "2.0") 2025-09-07T06:25:38.1233229Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-09-07T06:25:38.6015498Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-09-07T06:25:38.6017921Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-09-07T06:25:38.7292373Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-09-07T06:25:38.7294266Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-09-07T06:25:38.8925905Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-09-07T06:25:38.8929503Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-09-07T06:25:39.1011118Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-09-07T06:25:39.1013852Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-09-07T06:25:39.1915734Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-09-07T06:25:39.2869944Z Target system: Windows-10.0.17763 2025-09-07T06:25:39.2870323Z -- Configuring build for SLEEF-v3.8.0 2025-09-07T06:25:39.2870638Z Target processor: AMD64 2025-09-07T06:25:39.2870878Z Host system: Windows-10.0.17763 2025-09-07T06:25:39.2871146Z Host processor: AMD64 2025-09-07T06:25:39.2871760Z Detected C compiler: MSVC @ C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-09-07T06:25:39.2872398Z CMake: 3.27.9 2025-09-07T06:25:39.2872679Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-09-07T06:25:39.2873188Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-09-07T06:25:39.2873644Z -- Building shared libs : OFF 2025-09-07T06:25:39.2873897Z -- Building static test bins: OFF 2025-09-07T06:25:39.2874165Z -- MPFR : LIB_MPFR-NOTFOUND 2025-09-07T06:25:39.2874398Z -- GMP : LIBGMP-NOTFOUND 2025-09-07T06:25:39.2875643Z -- RT : 2025-09-07T06:25:39.2875848Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-09-07T06:25:39.2876077Z -- OPENSSL : 3.0.17 2025-09-07T06:25:39.2876292Z -- SDE : SDE_COMMAND-NOTFOUND 2025-09-07T06:25:39.2876545Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-09-07T06:25:39.3441263Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-09-07T06:25:39.3441926Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-09-07T06:25:39.3442932Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-09-07T06:25:39.3443643Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-09-07T06:25:40.0018604Z -- NVSHMEM not found, not building with NVSHMEM support. 2025-09-07T06:25:40.0067372Z CMake Warning (dev) in test/cpp/nativert/CMakeLists.txt: 2025-09-07T06:25:40.0067750Z A logical block opening on the line 2025-09-07T06:25:40.0067949Z 2025-09-07T06:25:40.0068237Z C:/actions-runner/_work/pytorch/pytorch/test/cpp/nativert/CMakeLists.txt:48 (if) 2025-09-07T06:25:40.0068596Z 2025-09-07T06:25:40.0068680Z closes on the line 2025-09-07T06:25:40.0068812Z 2025-09-07T06:25:40.0069074Z C:/actions-runner/_work/pytorch/pytorch/test/cpp/nativert/CMakeLists.txt:50 (endif) 2025-09-07T06:25:40.0069453Z 2025-09-07T06:25:40.0069551Z with mis-matching arguments. 2025-09-07T06:25:40.0069906Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-09-07T06:25:40.0070232Z 2025-09-07T06:25:40.2196526Z CMake Warning at CMakeLists.txt:1292 (message): 2025-09-07T06:25:40.2197020Z Generated cmake files are only fully tested if one builds with system glog, 2025-09-07T06:25:40.2197549Z gflags, and protobuf. Other settings may generate files that are not well 2025-09-07T06:25:40.2197936Z tested. 2025-09-07T06:25:40.2198042Z 2025-09-07T06:25:40.2198047Z 2025-09-07T06:25:40.2218251Z -- 2025-09-07T06:25:40.2218492Z -- ******** Summary ******** 2025-09-07T06:25:40.2218766Z -- General: 2025-09-07T06:25:40.2219184Z -- CMake version : 3.27.9 2025-09-07T06:25:40.2219521Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-09-07T06:25:40.2219990Z -- System : Windows 2025-09-07T06:25:40.2221068Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.42.34433/bin/Hostx64/x64/cl.exe 2025-09-07T06:25:40.2221998Z -- C++ compiler id : MSVC 2025-09-07T06:25:40.2222287Z -- C++ compiler version : 19.42.34444.0 2025-09-07T06:25:40.2222577Z -- Using ccache if found : OFF 2025-09-07T06:25:40.2223671Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE /wd4624 /wd4068 /wd4067 /wd4267 /wd4661 /wd4717 /wd4244 /wd4804 /wd4273 2025-09-07T06:25:40.2225033Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-09-07T06:25:40.2225505Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-09-07T06:25:40.2225974Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-09-07T06:25:40.2226347Z -- Build type : Release 2025-09-07T06:25:40.2227384Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;_CRT_SECURE_NO_DEPRECATE=1;IDEEP_USE_MKL;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS;EXPORT_AOTI_FUNCTIONS;WIN32_LEAN_AND_MEAN;_UCRT_LEGACY_INFINITY;NOMINMAX;USE_MIMALLOC 2025-09-07T06:25:40.2229535Z -- CMAKE_PREFIX_PATH : C:\Jenkins\Miniconda3\Lib\site-packages;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-09-07T06:25:40.2231017Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-09-07T06:25:40.2231482Z -- USE_GOLD_LINKER : OFF 2025-09-07T06:25:40.2231913Z -- 2025-09-07T06:25:40.2232189Z -- TORCH_VERSION : 2.9.0 2025-09-07T06:25:40.2232475Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-09-07T06:25:40.2232755Z -- BUILD_BINARY : OFF 2025-09-07T06:25:40.2233007Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-09-07T06:25:40.2233455Z -- Link local protobuf : ON 2025-09-07T06:25:40.2233712Z -- BUILD_PYTHON : True 2025-09-07T06:25:40.2233958Z -- Python version : 3.9.19 2025-09-07T06:25:40.2234297Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-09-07T06:25:40.2234738Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-09-07T06:25:40.2235140Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-09-07T06:25:40.2235555Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-09-07T06:25:40.2235920Z -- BUILD_SHARED_LIBS : ON 2025-09-07T06:25:40.2236197Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-09-07T06:25:40.2236485Z -- BUILD_TEST : True 2025-09-07T06:25:40.2236733Z -- BUILD_JNI : OFF 2025-09-07T06:25:40.2236976Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-09-07T06:25:40.2237243Z -- BUILD_LITE_INTERPRETER: OFF 2025-09-07T06:25:40.2237495Z -- INTERN_BUILD_MOBILE : 2025-09-07T06:25:40.2237743Z -- TRACING_BASED : OFF 2025-09-07T06:25:40.2237999Z -- USE_BLAS : 1 2025-09-07T06:25:40.2238227Z -- BLAS : mkl 2025-09-07T06:25:40.2238476Z -- BLAS_HAS_SBGEMM : 2025-09-07T06:25:40.2238710Z -- USE_LAPACK : 1 2025-09-07T06:25:40.2238959Z -- LAPACK : mkl 2025-09-07T06:25:40.2239195Z -- USE_ASAN : OFF 2025-09-07T06:25:40.2239441Z -- USE_TSAN : OFF 2025-09-07T06:25:40.2239738Z -- USE_CPP_CODE_COVERAGE : OFF 2025-09-07T06:25:40.2240099Z -- USE_CUDA : 1 2025-09-07T06:25:40.2240352Z -- CUDA static link : OFF 2025-09-07T06:25:40.2240590Z -- USE_CUDNN : ON 2025-09-07T06:25:40.2240846Z -- USE_CUSPARSELT : OFF 2025-09-07T06:25:40.2241089Z -- USE_CUDSS : OFF 2025-09-07T06:25:40.2241327Z -- USE_CUFILE : OFF 2025-09-07T06:25:40.2241559Z -- CUDA version : 12.6 2025-09-07T06:25:40.2241809Z -- USE_FLASH_ATTENTION : OFF 2025-09-07T06:25:40.2242056Z -- USE_MEM_EFF_ATTENTION : ON 2025-09-07T06:25:40.2242315Z -- cuDNN version : 9.10.2 2025-09-07T06:25:40.2242721Z -- CUDA root directory : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-09-07T06:25:40.2243318Z -- CUDA library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cuda.lib 2025-09-07T06:25:40.2243981Z -- cudart library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart.lib 2025-09-07T06:25:40.2244638Z -- cublas library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cublas.lib 2025-09-07T06:25:40.2245300Z -- cufft library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cufft.lib 2025-09-07T06:25:40.2246077Z -- curand library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/curand.lib 2025-09-07T06:25:40.2246744Z -- cusparse library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cusparse.lib 2025-09-07T06:25:40.2247426Z -- cuDNN library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-09-07T06:25:40.2248045Z -- nvrtc : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/nvrtc.lib 2025-09-07T06:25:40.2248636Z -- CUDA include path : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-09-07T06:25:40.2249258Z -- NVCC executable : C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-09-07T06:25:40.2249873Z -- CUDA compiler : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-09-07T06:25:40.2253554Z -- CUDA flags : -DLIBCUDACXX_ENABLE_SIMPLIFIED_COMPLEX_OPERATIONS -Xcompiler /Zc:__cplusplus -Xcompiler /w -w -Xcompiler /FS -Xfatbin -compress-all -DONNX_NAMESPACE=onnx_torch --use-local-env -gencode arch=compute_86,code=sm_86 -Xcudafe --diag_suppress=cc_clobber_ignored,--diag_suppress=field_without_dll_interface,--diag_suppress=base_class_has_different_dll_interface,--diag_suppress=dll_interface_conflict_none_assumed,--diag_suppress=dll_interface_conflict_dllexport_assumed,--diag_suppress=bad_friend_decl --Werror cross-execution-space-call --no-host-device-move-forward --expt-relaxed-constexpr --expt-extended-lambda -Xcompiler=/wd4819,/wd4503,/wd4190,/wd4244,/wd4251,/wd4275,/wd4522 -Wno-deprecated-gpu-targets --expt-extended-lambda -DCUB_WRAPPED_NAMESPACE=at_cuda_detail -DCUDA_HAS_FP16=1 -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ 2025-09-07T06:25:40.2257161Z -- CUDA host compiler : 2025-09-07T06:25:40.2257420Z -- CUDA --device-c : OFF 2025-09-07T06:25:40.2257673Z -- USE_TENSORRT : 2025-09-07T06:25:40.2257908Z -- USE_XPU : 0 2025-09-07T06:25:40.2258142Z -- USE_ROCM : OFF 2025-09-07T06:25:40.2258390Z -- BUILD_NVFUSER : 2025-09-07T06:25:40.2258625Z -- USE_EIGEN_FOR_BLAS : 2025-09-07T06:25:40.2258870Z -- USE_EIGEN_FOR_SPARSE : OFF 2025-09-07T06:25:40.2259129Z -- USE_FBGEMM : OFF 2025-09-07T06:25:40.2259360Z -- USE_KINETO : ON 2025-09-07T06:25:40.2259599Z -- USE_GFLAGS : OFF 2025-09-07T06:25:40.2259831Z -- USE_GLOG : OFF 2025-09-07T06:25:40.2260071Z -- USE_LITE_PROTO : OFF 2025-09-07T06:25:40.2260330Z -- USE_PYTORCH_METAL : OFF 2025-09-07T06:25:40.2260594Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-09-07T06:25:40.2260955Z -- USE_MPS : OFF 2025-09-07T06:25:40.2261202Z -- CAN_COMPILE_METAL : 2025-09-07T06:25:40.2261446Z -- USE_MKL : ON 2025-09-07T06:25:40.2261675Z -- USE_STATIC_MKL : OFF 2025-09-07T06:25:40.2261915Z -- USE_MKLDNN : ON 2025-09-07T06:25:40.2262145Z -- USE_MKLDNN_ACL : OFF 2025-09-07T06:25:40.2262391Z -- USE_MKLDNN_CBLAS : OFF 2025-09-07T06:25:40.2262627Z -- USE_UCC : OFF 2025-09-07T06:25:40.2262871Z -- USE_ITT : ON 2025-09-07T06:25:40.2263093Z -- USE_XCCL : OFF 2025-09-07T06:25:40.2263326Z -- USE_NCCL : OFF 2025-09-07T06:25:40.2263571Z -- Found NVSHMEM : 2025-09-07T06:25:40.2263797Z -- USE_NNPACK : OFF 2025-09-07T06:25:40.2264039Z -- USE_NUMPY : ON 2025-09-07T06:25:40.2264267Z -- USE_OBSERVERS : ON 2025-09-07T06:25:40.2264512Z -- USE_OPENCL : OFF 2025-09-07T06:25:40.2264747Z -- USE_OPENMP : ON 2025-09-07T06:25:40.2264983Z -- USE_MIMALLOC : ON 2025-09-07T06:25:40.2265217Z -- USE_MIMALLOC_ON_MKL : OFF 2025-09-07T06:25:40.2265473Z -- USE_VULKAN : OFF 2025-09-07T06:25:40.2265704Z -- USE_PROF : OFF 2025-09-07T06:25:40.2265949Z -- USE_PYTORCH_QNNPACK : OFF 2025-09-07T06:25:40.2266191Z -- USE_XNNPACK : ON 2025-09-07T06:25:40.2266422Z -- USE_DISTRIBUTED : ON 2025-09-07T06:25:40.2266671Z -- USE_MPI : OFF 2025-09-07T06:25:40.2266915Z -- USE_GLOO : ON 2025-09-07T06:25:40.2267168Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-09-07T06:25:40.2267414Z -- USE_GLOO_IBVERBS : OFF 2025-09-07T06:25:40.2267664Z -- USE_TENSORPIPE : OFF 2025-09-07T06:25:40.2267962Z -- Public Dependencies : caffe2::mkl 2025-09-07T06:25:40.2268696Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-09-07T06:25:40.2269413Z -- Public CUDA Deps. : 2025-09-07T06:25:40.2271544Z -- Private CUDA Deps. : caffe2::curand;caffe2::cufft;caffe2::cublas;torch::cudnn;gloo_cuda;fmt::fmt-header-only;C:/Jenkins/Miniconda3/Library/lib/mkl_lapack95_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core.lib;C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart_static.lib;CUDA::cusparse;CUDA::cufft;CUDA::cusolver;torch::magma;ATEN_CUDA_FILES_GEN_LIB 2025-09-07T06:25:40.2273805Z -- USE_COREML_DELEGATE : OFF 2025-09-07T06:25:40.2274078Z -- BUILD_LAZY_TS_BACKEND : ON 2025-09-07T06:25:40.2274328Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-09-07T06:25:40.2339825Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-09-07T06:25:40.3159568Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-09-07T06:25:40.3184899Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-09-07T06:25:40.3977963Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-09-07T06:25:40.4060793Z -- Configuring done (87.9s) 2025-09-07T06:25:47.8015562Z -- Generating done (6.3s) 2025-09-07T06:25:48.0619807Z CMake Warning: 2025-09-07T06:25:48.0620202Z Manually-specified variables were not used by the project: 2025-09-07T06:25:48.0620497Z 2025-09-07T06:25:48.0620588Z BUILD_ENVIRONMENT 2025-09-07T06:25:48.0622304Z BUILD_TYPE 2025-09-07T06:25:48.0622496Z BUILD_WHEEL 2025-09-07T06:25:48.0622632Z 2025-09-07T06:25:48.0622637Z 2025-09-07T06:25:48.0649301Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-09-07T06:25:48.1609565Z cmake --build . --target install --config Release -j 8 2025-09-07T06:25:54.0265466Z [1/4] Generating ATen declarations_yaml 2025-09-07T06:26:01.9460494Z [2/4] Generating ATen headers 2025-09-07T06:26:02.3699601Z [3/4] Generating ATen sources 2025-09-07T06:26:08.0585096Z [1/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-09-07T06:26:08.0773629Z [2/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-09-07T06:26:08.0958951Z [3/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-09-07T06:26:08.1095040Z [4/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-09-07T06:26:08.1116407Z [5/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-09-07T06:26:08.1180314Z [6/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-09-07T06:26:08.1197586Z [7/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-09-07T06:26:08.1253933Z [8/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-09-07T06:26:08.3314429Z [9/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-09-07T06:26:08.3560013Z [10/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-09-07T06:26:08.3764477Z [11/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-09-07T06:26:08.3779121Z [12/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-09-07T06:26:08.4017179Z [13/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-09-07T06:26:08.4325801Z [14/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-09-07T06:26:08.4440867Z [15/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-09-07T06:26:08.5891121Z [16/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-09-07T06:26:08.6362085Z [17/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-09-07T06:26:08.6517238Z [18/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-09-07T06:26:08.6695873Z [19/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-09-07T06:26:08.6710881Z [20/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-09-07T06:26:08.6928865Z [21/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-09-07T06:26:08.8262717Z [22/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-09-07T06:26:08.8858403Z [23/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-09-07T06:26:08.9189671Z [24/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-09-07T06:26:08.9381577Z [25/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-09-07T06:26:08.9871750Z [26/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-09-07T06:26:08.9956948Z [27/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-09-07T06:26:09.1507010Z [28/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-09-07T06:26:09.2189101Z [29/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-09-07T06:26:09.2941683Z [30/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-09-07T06:26:09.3199202Z [31/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-09-07T06:26:09.3550689Z [32/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-09-07T06:26:09.3568202Z [33/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-09-07T06:26:09.4678777Z [34/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-09-07T06:26:09.5667653Z [35/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-09-07T06:26:09.6011093Z [36/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-09-07T06:26:09.6278690Z [37/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-09-07T06:26:09.6700098Z [38/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-09-07T06:26:09.6835950Z [39/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-09-07T06:26:09.6966928Z [40/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-09-07T06:26:09.8083514Z [41/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-09-07T06:26:09.8485342Z [42/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-09-07T06:26:09.8563817Z [43/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-09-07T06:26:09.8681961Z [44/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-09-07T06:26:09.9011066Z [45/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-09-07T06:26:10.0036943Z [46/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-09-07T06:26:10.0484695Z [47/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-09-07T06:26:10.0753557Z [48/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-09-07T06:26:10.0940059Z [49/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-09-07T06:26:10.1510470Z [50/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-09-07T06:26:10.1946048Z [51/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-09-07T06:26:10.2284580Z [52/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-09-07T06:26:10.3092310Z [53/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-09-07T06:26:10.3463773Z [54/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-09-07T06:26:10.3619739Z [55/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-09-07T06:26:10.4111049Z [56/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-09-07T06:26:10.4431860Z [57/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-09-07T06:26:10.4780202Z [58/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-09-07T06:26:10.5249377Z [59/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-09-07T06:26:10.5997138Z [60/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-09-07T06:26:10.6068343Z [61/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-09-07T06:26:10.6774986Z [62/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-09-07T06:26:10.6857278Z [63/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-09-07T06:26:10.7166071Z [64/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-09-07T06:26:10.7486786Z [65/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-09-07T06:26:10.8101787Z [66/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-09-07T06:26:10.8782970Z [67/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-09-07T06:26:10.9791995Z [68/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-09-07T06:26:10.9875097Z [69/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-09-07T06:26:11.0464173Z [70/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-09-07T06:26:11.0553030Z [71/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-09-07T06:26:11.0727179Z [72/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-09-07T06:26:11.0833197Z [73/7565] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-09-07T06:26:11.1443853Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-09-07T06:26:11.1444246Z 2025-09-07T06:26:11.1444251Z 2025-09-07T06:26:11.1444430Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-09-07T06:26:11.1444742Z 2025-09-07T06:26:11.1444818Z 2025-09-07T06:26:11.1444825Z 2025-09-07T06:26:11.1444832Z 2025-09-07T06:26:11.1445634Z [74/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-09-07T06:26:11.1712642Z [75/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-09-07T06:26:11.2741434Z [76/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-09-07T06:26:11.3895526Z [77/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-09-07T06:26:11.3952464Z [78/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-09-07T06:26:11.4466296Z [79/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-09-07T06:26:11.4522760Z [80/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-09-07T06:26:11.5263639Z [81/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-09-07T06:26:11.6361674Z [82/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-09-07T06:26:11.7023539Z [83/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-09-07T06:26:11.7574454Z [84/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-09-07T06:26:11.7599845Z [85/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-09-07T06:26:11.8005466Z [86/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-09-07T06:26:11.8164807Z [87/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-09-07T06:26:11.9360264Z [88/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-09-07T06:26:11.9904570Z [89/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-09-07T06:26:12.0659029Z [90/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-09-07T06:26:12.1147553Z [91/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-09-07T06:26:12.1557607Z [92/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-09-07T06:26:12.1640022Z [93/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-09-07T06:26:12.1779366Z [94/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-09-07T06:26:12.2601907Z [95/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-09-07T06:26:12.2906000Z [96/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-09-07T06:26:12.4264965Z [97/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-09-07T06:26:12.4759358Z [98/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-09-07T06:26:12.5124654Z [99/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-09-07T06:26:12.5292327Z [100/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-09-07T06:26:12.5378868Z [101/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-09-07T06:26:12.6134207Z [102/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-09-07T06:26:12.6668513Z [103/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-09-07T06:26:12.8450817Z [104/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-09-07T06:26:12.8476263Z [105/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-09-07T06:26:12.8642441Z [106/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-09-07T06:26:12.8878573Z [107/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-09-07T06:26:12.8957743Z [108/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-09-07T06:26:12.9654212Z [109/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-09-07T06:26:12.9804470Z [110/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-09-07T06:26:13.0177695Z [111/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-09-07T06:26:13.1488093Z [112/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-09-07T06:26:13.2075288Z [113/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-09-07T06:26:13.2224826Z [114/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-09-07T06:26:13.2236581Z [115/7565] Linking CXX static library lib\libprotobuf.lib 2025-09-07T06:26:13.2523681Z [116/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-09-07T06:26:13.2589785Z [117/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-09-07T06:26:13.3457080Z [118/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-09-07T06:26:13.4253358Z [119/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-09-07T06:26:13.5069987Z [120/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-09-07T06:26:13.5911845Z [121/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-09-07T06:26:13.6098461Z [122/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-09-07T06:26:13.6182087Z [123/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-09-07T06:26:13.6275916Z [124/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-09-07T06:26:13.6359813Z [125/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-09-07T06:26:13.7335232Z [126/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-09-07T06:26:13.7971333Z [127/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-09-07T06:26:13.8876494Z [128/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-09-07T06:26:13.9838737Z [129/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-09-07T06:26:13.9965590Z [130/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-09-07T06:26:14.0039191Z [131/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-09-07T06:26:14.0125673Z [132/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-09-07T06:26:14.0353721Z [133/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-09-07T06:26:14.1148472Z [134/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-09-07T06:26:14.1638304Z [135/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-09-07T06:26:14.2545119Z [136/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-09-07T06:26:14.3317307Z [137/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-09-07T06:26:14.3530230Z [138/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-09-07T06:26:14.3614921Z [139/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-09-07T06:26:14.4048310Z [140/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-09-07T06:26:14.4108387Z [141/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-09-07T06:26:14.4199774Z [142/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-09-07T06:26:14.4984515Z [143/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-09-07T06:26:14.6506458Z [144/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-09-07T06:26:14.6882620Z [145/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-09-07T06:26:14.7181865Z [146/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-09-07T06:26:14.7447527Z [147/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-09-07T06:26:14.7753314Z [148/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-09-07T06:26:14.7870704Z [149/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-09-07T06:26:14.8125461Z [150/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-09-07T06:26:14.8791102Z [151/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-09-07T06:26:15.0424245Z [152/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-09-07T06:26:15.0720740Z [153/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-09-07T06:26:15.0921964Z [154/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-09-07T06:26:15.1127863Z [155/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-09-07T06:26:15.1248461Z [156/7565] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-09-07T06:26:15.1639154Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-09-07T06:26:15.1639497Z 2025-09-07T06:26:15.1639501Z 2025-09-07T06:26:15.1639688Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-09-07T06:26:15.1639956Z 2025-09-07T06:26:15.1639960Z 2025-09-07T06:26:15.1639963Z 2025-09-07T06:26:15.1639966Z 2025-09-07T06:26:15.1640445Z [157/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-09-07T06:26:15.1755119Z [158/7565] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-09-07T06:26:15.1826195Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-09-07T06:26:15.1826572Z 2025-09-07T06:26:15.1826577Z 2025-09-07T06:26:15.1826809Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-09-07T06:26:15.1827203Z 2025-09-07T06:26:15.1827207Z 2025-09-07T06:26:15.1827212Z 2025-09-07T06:26:15.1827217Z 2025-09-07T06:26:15.1828337Z [159/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-09-07T06:26:15.1857096Z [160/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-09-07T06:26:15.2749715Z [161/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-09-07T06:26:15.2831979Z [162/7565] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-09-07T06:26:15.3776022Z [163/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-09-07T06:26:15.4151216Z [164/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-09-07T06:26:15.4646066Z [165/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-09-07T06:26:15.4774893Z [166/7565] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-09-07T06:26:15.4840728Z [167/7565] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-09-07T06:26:15.4855803Z [168/7565] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-09-07T06:26:15.4993714Z [169/7565] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-09-07T06:26:15.5264908Z [170/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-09-07T06:26:15.5520529Z [171/7565] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-09-07T06:26:15.5734635Z [172/7565] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-09-07T06:26:15.5809401Z [173/7565] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-09-07T06:26:15.6155832Z [174/7565] Linking C static library lib\pthreadpool.lib 2025-09-07T06:26:15.6401336Z [175/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-09-07T06:26:15.6563481Z [176/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-09-07T06:26:15.6820630Z [177/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-09-07T06:26:15.7159012Z [178/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-09-07T06:26:15.7372256Z [179/7565] Linking CXX static library lib\libprotoc.lib 2025-09-07T06:26:15.7387626Z [180/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-09-07T06:26:15.7829919Z [181/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-09-07T06:26:15.8126877Z [182/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-09-07T06:26:15.8142716Z [183/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-09-07T06:26:15.8273734Z [184/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-09-07T06:26:15.8379870Z [185/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-09-07T06:26:15.8467200Z [186/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-09-07T06:26:15.8656751Z [187/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-09-07T06:26:15.8722049Z [188/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-09-07T06:26:15.9102703Z [189/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-09-07T06:26:15.9386447Z [190/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-09-07T06:26:15.9603694Z [191/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-09-07T06:26:15.9874384Z [192/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-09-07T06:26:16.0051260Z [193/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:26:16.0107743Z [194/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-09-07T06:26:16.0281187Z [195/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-09-07T06:26:16.0416011Z [196/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-09-07T06:26:16.0700502Z [197/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-09-07T06:26:16.1257378Z [198/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-09-07T06:26:16.1273204Z [199/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-09-07T06:26:16.1285729Z [200/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-09-07T06:26:16.1298548Z [201/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-09-07T06:26:16.1394822Z [202/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-09-07T06:26:16.1468163Z [203/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-09-07T06:26:16.1970642Z [204/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:16.2411752Z [205/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-09-07T06:26:16.2527320Z [206/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:16.2573283Z [207/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-09-07T06:26:16.2586196Z [208/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-09-07T06:26:16.2640872Z [209/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:16.3016212Z [210/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:16.3115990Z [211/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-09-07T06:26:16.3440992Z [212/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-09-07T06:26:16.3605549Z [213/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-09-07T06:26:16.3680071Z [214/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-09-07T06:26:16.3695339Z [215/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-09-07T06:26:16.3754537Z [216/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-09-07T06:26:16.4096550Z [217/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-09-07T06:26:16.4155340Z [218/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-09-07T06:26:16.4580950Z [219/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-09-07T06:26:16.4639118Z [220/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-09-07T06:26:16.4769781Z [221/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-09-07T06:26:16.4853128Z [222/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-09-07T06:26:16.4913498Z [223/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-09-07T06:26:16.5378986Z [224/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-09-07T06:26:16.5451231Z [225/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-09-07T06:26:16.5892165Z [226/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-09-07T06:26:16.5957282Z [227/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-09-07T06:26:16.6059733Z [228/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-09-07T06:26:16.6119582Z [229/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-09-07T06:26:16.6134186Z [230/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-09-07T06:26:16.6653276Z [231/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-09-07T06:26:16.6664475Z [232/7565] Linking CXX executable bin\protoc.exe 2025-09-07T06:26:16.6734853Z [233/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-09-07T06:26:16.7129337Z [234/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-09-07T06:26:16.7181799Z [235/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-09-07T06:26:16.7335617Z [236/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-09-07T06:26:16.7408452Z [237/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-09-07T06:26:16.7423681Z [238/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-09-07T06:26:16.7669605Z [239/7565] Running gen_proto.py on onnx/onnx.in.proto 2025-09-07T06:26:16.7914021Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-09-07T06:26:16.7914506Z 2025-09-07T06:26:16.7915013Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-09-07T06:26:16.7915796Z 2025-09-07T06:26:16.7916199Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-09-07T06:26:16.7917435Z 2025-09-07T06:26:16.7918099Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-09-07T06:26:16.7918910Z 2025-09-07T06:26:16.7919478Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-09-07T06:26:16.7920264Z 2025-09-07T06:26:16.7921113Z [240/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-09-07T06:26:16.7981178Z [241/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-09-07T06:26:16.8378802Z [242/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-09-07T06:26:16.8442024Z [243/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-09-07T06:26:16.8583076Z [244/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-09-07T06:26:16.8644835Z [245/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-09-07T06:26:16.8660111Z [246/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-09-07T06:26:16.9181978Z [247/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-09-07T06:26:16.9199615Z [248/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-09-07T06:26:16.9508277Z [249/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-09-07T06:26:16.9652162Z [250/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-09-07T06:26:16.9810372Z [251/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-09-07T06:26:16.9870846Z [252/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-09-07T06:26:16.9888147Z [253/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-09-07T06:26:17.0331111Z [254/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-09-07T06:26:17.0455389Z [255/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-09-07T06:26:17.0722836Z [256/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-09-07T06:26:17.0880900Z [257/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-09-07T06:26:17.1086938Z [258/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-09-07T06:26:17.1105305Z [259/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-09-07T06:26:17.1173484Z [260/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-09-07T06:26:17.1365027Z [261/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-09-07T06:26:17.1461439Z [262/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-09-07T06:26:17.1546237Z [263/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-09-07T06:26:17.1773349Z [264/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-09-07T06:26:17.1902977Z [265/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-09-07T06:26:17.1915444Z [266/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-09-07T06:26:17.2033575Z [267/7565] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-09-07T06:26:17.2102397Z [268/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-09-07T06:26:17.2426768Z [269/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-09-07T06:26:17.2534781Z [270/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-09-07T06:26:17.2637210Z [271/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-09-07T06:26:17.2916120Z [272/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-09-07T06:26:17.3070252Z [273/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-09-07T06:26:17.3083859Z [274/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-09-07T06:26:17.3322287Z [275/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-09-07T06:26:17.3337302Z [276/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-09-07T06:26:17.3766758Z [277/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-09-07T06:26:17.3832938Z [278/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-09-07T06:26:17.3896442Z [279/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-09-07T06:26:17.4158242Z [280/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-09-07T06:26:17.4364381Z [281/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-09-07T06:26:17.4503520Z [282/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-09-07T06:26:17.4648777Z [283/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-09-07T06:26:17.4708721Z [284/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-09-07T06:26:17.5099377Z [285/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-09-07T06:26:17.5116867Z [286/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-09-07T06:26:17.5176790Z [287/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-09-07T06:26:17.5462927Z [288/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-09-07T06:26:17.5653230Z [289/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-09-07T06:26:17.5827836Z [290/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-09-07T06:26:17.5890557Z [291/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-09-07T06:26:17.5986628Z [292/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-09-07T06:26:17.6478576Z [293/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-09-07T06:26:17.6492577Z [294/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-09-07T06:26:17.6554474Z [295/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-09-07T06:26:17.6710333Z [296/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-09-07T06:26:17.7019476Z [297/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-09-07T06:26:17.7155317Z [298/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-09-07T06:26:17.7169144Z [299/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-09-07T06:26:17.7257363Z [300/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-09-07T06:26:17.7763315Z [301/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-09-07T06:26:17.7816432Z [302/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-09-07T06:26:17.7882075Z [303/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-09-07T06:26:17.8040220Z [304/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.obj 2025-09-07T06:26:17.8346416Z [305/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.obj 2025-09-07T06:26:17.8461470Z [306/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.obj 2025-09-07T06:26:17.8506037Z [307/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.obj 2025-09-07T06:26:17.8565721Z [308/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.obj 2025-09-07T06:26:17.9042882Z [309/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.obj 2025-09-07T06:26:17.9271930Z [310/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.obj 2025-09-07T06:26:17.9407654Z [311/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.obj 2025-09-07T06:26:17.9641852Z [312/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.obj 2025-09-07T06:26:17.9689066Z [313/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.obj 2025-09-07T06:26:17.9766646Z [314/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.obj 2025-09-07T06:26:17.9821053Z [315/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.obj 2025-09-07T06:26:17.9885018Z [316/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.obj 2025-09-07T06:26:18.0387001Z [317/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-09-07T06:26:18.0615876Z [318/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-09-07T06:26:18.0750628Z [319/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-09-07T06:26:18.0802444Z [320/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-09-07T06:26:18.0858207Z [321/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-09-07T06:26:18.0915667Z [322/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-09-07T06:26:18.0986182Z [323/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-09-07T06:26:18.1329581Z [324/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:18.1805517Z [325/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:18.2059610Z [326/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:18.2265684Z [327/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:26:18.2316282Z [328/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:18.2406934Z [329/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-09-07T06:26:18.2489154Z [330/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-09-07T06:26:18.2749105Z [331/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-09-07T06:26:18.2762033Z [332/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-09-07T06:26:18.3391313Z [333/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-09-07T06:26:18.3447162Z [334/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-09-07T06:26:18.3653613Z [335/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:18.3752501Z [336/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-09-07T06:26:18.3864973Z [337/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-09-07T06:26:18.3922988Z [338/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-09-07T06:26:18.4166186Z [339/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-09-07T06:26:18.4221253Z [340/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:18.4842465Z [341/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-09-07T06:26:18.4854729Z [342/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-09-07T06:26:18.5046660Z [343/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-09-07T06:26:18.5101408Z [344/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:18.5151188Z [345/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:18.5307546Z [346/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-09-07T06:26:18.5362772Z [347/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-09-07T06:26:18.5417516Z [348/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:26:18.5916760Z [349/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-09-07T06:26:18.6170317Z [350/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:18.6356585Z [351/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:18.6410362Z [352/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:18.6465826Z [353/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:26:18.6651143Z [354/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:18.6665423Z [355/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-09-07T06:26:18.6720920Z [356/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-09-07T06:26:18.7231130Z [357/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-09-07T06:26:18.7411194Z [358/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-09-07T06:26:18.7710990Z [359/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-09-07T06:26:18.7827210Z [360/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:18.7918283Z [361/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-09-07T06:26:18.7971404Z [362/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-09-07T06:26:18.8073578Z [363/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-09-07T06:26:18.8088219Z [364/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-09-07T06:26:18.8466598Z [365/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:18.8654593Z [366/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-09-07T06:26:18.9036574Z [367/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-09-07T06:26:18.9193850Z [368/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-09-07T06:26:18.9242115Z [369/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:18.9303483Z [370/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-09-07T06:26:18.9387760Z [371/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:26:18.9442458Z [372/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-09-07T06:26:18.9498049Z [373/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-09-07T06:26:18.9736431Z [374/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-09-07T06:26:19.0152150Z [375/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-09-07T06:26:19.0282674Z [376/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-09-07T06:26:19.0414230Z [377/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-09-07T06:26:19.0746869Z [378/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:19.0812353Z [379/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:19.0905496Z [380/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:19.1070234Z [381/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:19.1128412Z [382/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x8-minmax-sse41-dup.c.obj 2025-09-07T06:26:19.1551350Z [383/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:19.1765759Z [384/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:19.1967102Z [385/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:19.2214268Z [386/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x8-minmax-sse41-dup.c.obj 2025-09-07T06:26:19.2226572Z [387/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:19.2355108Z [388/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:26:19.2604455Z [389/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:26:19.2619743Z [390/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:19.3008361Z [391/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:19.3206419Z [392/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:19.3416597Z [393/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:26:19.3701467Z [394/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:19.3718921Z [395/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-sse41-dup.c.obj 2025-09-07T06:26:19.3850664Z [396/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:19.3989957Z [397/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-sse41-dup.c.obj 2025-09-07T06:26:19.4237345Z [398/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.obj 2025-09-07T06:26:19.4392814Z [399/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:26:19.4693033Z [400/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:26:19.4851480Z [401/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-09-07T06:26:19.4910212Z [402/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-09-07T06:26:19.4964046Z [403/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:26:19.5026653Z [404/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-09-07T06:26:19.5270123Z [405/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-09-07T06:26:19.5466537Z [406/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-09-07T06:26:19.5559064Z [407/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-09-07T06:26:19.5908888Z [408/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-09-07T06:26:19.5987545Z [409/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-09-07T06:26:19.6139940Z [410/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-09-07T06:26:19.6155509Z [411/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-09-07T06:26:19.6213132Z [412/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-09-07T06:26:19.6313902Z [413/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-09-07T06:26:19.6592842Z [414/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-09-07T06:26:19.6665846Z [415/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-09-07T06:26:19.7061829Z [416/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-09-07T06:26:19.7078340Z [417/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-09-07T06:26:19.7307574Z [418/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-09-07T06:26:19.7352595Z [419/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-09-07T06:26:19.7364198Z [420/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-09-07T06:26:19.7491990Z [421/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-09-07T06:26:19.7691236Z [422/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-09-07T06:26:19.7750534Z [423/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-09-07T06:26:19.8176439Z [424/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-09-07T06:26:19.8234075Z [425/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-09-07T06:26:19.8445501Z [426/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-09-07T06:26:19.8502616Z [427/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-09-07T06:26:19.8550890Z [428/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-09-07T06:26:19.8628270Z [429/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-09-07T06:26:19.8804607Z [430/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-09-07T06:26:19.8876714Z [431/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-09-07T06:26:19.9324865Z [432/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-09-07T06:26:19.9338006Z [433/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-09-07T06:26:19.9544187Z [434/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-09-07T06:26:19.9655674Z [435/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-09-07T06:26:19.9714152Z [436/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-09-07T06:26:19.9784264Z [437/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-09-07T06:26:19.9883345Z [438/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-09-07T06:26:20.0010180Z [439/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-09-07T06:26:20.0483259Z [440/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-09-07T06:26:20.0499260Z [441/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-09-07T06:26:20.0812512Z [442/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-09-07T06:26:20.0862119Z [443/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-09-07T06:26:20.1011121Z [444/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-09-07T06:26:20.1096974Z [445/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-09-07T06:26:20.1111762Z [446/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-09-07T06:26:20.1225797Z [447/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-09-07T06:26:20.1708712Z [448/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-09-07T06:26:20.1826443Z [449/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-09-07T06:26:20.2065985Z [450/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-09-07T06:26:20.2123652Z [451/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-09-07T06:26:20.2273667Z [452/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-09-07T06:26:20.2287426Z [453/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-09-07T06:26:20.2347978Z [454/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-09-07T06:26:20.2438761Z [455/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-09-07T06:26:20.2993404Z [456/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-09-07T06:26:20.3062213Z [457/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-09-07T06:26:20.3309765Z [458/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-09-07T06:26:20.3366718Z [459/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-09-07T06:26:20.3499847Z [460/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-09-07T06:26:20.3557756Z [461/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-09-07T06:26:20.3616003Z [462/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-09-07T06:26:20.3688708Z [463/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-09-07T06:26:20.4187382Z [464/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-09-07T06:26:20.4308194Z [465/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-09-07T06:26:20.4593908Z [466/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-09-07T06:26:20.4606793Z [467/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-09-07T06:26:20.4715439Z [468/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-09-07T06:26:20.4805208Z [469/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-09-07T06:26:20.4821039Z [470/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-09-07T06:26:20.4973949Z [471/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-09-07T06:26:20.5414344Z [472/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-09-07T06:26:20.5587673Z [473/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-09-07T06:26:20.5835940Z [474/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-09-07T06:26:20.5900341Z [475/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-09-07T06:26:20.5962581Z [476/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-09-07T06:26:20.6020506Z [477/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-09-07T06:26:20.6086695Z [478/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-09-07T06:26:20.6251337Z [479/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-09-07T06:26:20.6669533Z [480/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-09-07T06:26:20.6856287Z [481/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-09-07T06:26:20.7095794Z [482/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-09-07T06:26:20.7167034Z [483/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-09-07T06:26:20.7222950Z [484/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-09-07T06:26:20.7321156Z [485/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-09-07T06:26:20.7382814Z [486/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-09-07T06:26:20.7451341Z [487/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-09-07T06:26:20.7863453Z [488/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-09-07T06:26:20.8093872Z [489/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-09-07T06:26:20.8385712Z [490/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-09-07T06:26:20.8448722Z [491/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-09-07T06:26:20.8504083Z [492/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-09-07T06:26:20.8659059Z [493/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-09-07T06:26:20.8725447Z [494/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-09-07T06:26:20.8750819Z [495/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-09-07T06:26:20.9176885Z [496/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-09-07T06:26:20.9341323Z [497/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-09-07T06:26:20.9617446Z [498/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-09-07T06:26:20.9677593Z [499/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-09-07T06:26:20.9794777Z [500/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-09-07T06:26:20.9905039Z [501/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-09-07T06:26:20.9920957Z [502/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-09-07T06:26:20.9991675Z [503/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-09-07T06:26:21.0459837Z [504/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-09-07T06:26:21.0610900Z [505/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-09-07T06:26:21.0825031Z [506/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-09-07T06:26:21.0937182Z [507/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-09-07T06:26:21.1007682Z [508/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-09-07T06:26:21.1158355Z [509/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-09-07T06:26:21.1219224Z [510/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-09-07T06:26:21.1236242Z [511/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-09-07T06:26:21.1679971Z [512/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-09-07T06:26:21.1819561Z [513/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-09-07T06:26:21.2005549Z [514/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-09-07T06:26:21.2083364Z [515/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-09-07T06:26:21.2295992Z [516/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-09-07T06:26:21.2371338Z [517/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-09-07T06:26:21.2475967Z [518/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-09-07T06:26:21.2540349Z [519/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-09-07T06:26:21.2907321Z [520/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-09-07T06:26:21.2976148Z [521/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-09-07T06:26:21.3326565Z [522/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-09-07T06:26:21.3407153Z [523/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-09-07T06:26:21.3471981Z [524/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-09-07T06:26:21.3560855Z [525/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-09-07T06:26:21.3698058Z [526/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-09-07T06:26:21.3868011Z [527/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-09-07T06:26:21.4194611Z [528/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-09-07T06:26:21.4277695Z [529/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-09-07T06:26:21.4498373Z [530/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-09-07T06:26:21.4653876Z [531/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-09-07T06:26:21.4751276Z [532/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-09-07T06:26:21.4886081Z [533/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-09-07T06:26:21.4943801Z [534/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-09-07T06:26:21.5099829Z [535/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-09-07T06:26:21.5414731Z [536/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-09-07T06:26:21.5536680Z [537/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-09-07T06:26:21.5745758Z [538/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u32.c.obj 2025-09-07T06:26:21.5926571Z [539/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u32.c.obj 2025-09-07T06:26:21.5985785Z [540/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-09-07T06:26:21.6109046Z [541/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-09-07T06:26:21.6269500Z [542/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-09-07T06:26:21.6331135Z [543/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-09-07T06:26:21.6660268Z [544/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-09-07T06:26:21.6775974Z [545/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-09-07T06:26:21.7000880Z [546/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-09-07T06:26:21.7191766Z [547/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-09-07T06:26:21.7254090Z [548/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-09-07T06:26:21.7377640Z [549/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-09-07T06:26:21.7481256Z [550/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-09-07T06:26:21.7548599Z [551/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-09-07T06:26:21.7888210Z [552/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-09-07T06:26:21.8058928Z [553/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-09-07T06:26:21.8168614Z [554/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-09-07T06:26:21.8544248Z [555/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-09-07T06:26:21.8638637Z [556/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-09-07T06:26:21.8727085Z [557/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-09-07T06:26:21.8792390Z [558/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-09-07T06:26:21.8910042Z [559/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-09-07T06:26:21.9133381Z [560/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-09-07T06:26:21.9245251Z [561/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-09-07T06:26:21.9301052Z [562/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-09-07T06:26:21.9811537Z [563/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-09-07T06:26:21.9879456Z [564/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-09-07T06:26:21.9942473Z [565/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-09-07T06:26:22.0022870Z [566/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-09-07T06:26:22.0170535Z [567/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-09-07T06:26:22.0369639Z [568/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-09-07T06:26:22.0475739Z [569/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-09-07T06:26:22.0543224Z [570/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-09-07T06:26:22.1095801Z [571/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-09-07T06:26:22.1203275Z [572/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-09-07T06:26:22.1276384Z [573/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-09-07T06:26:22.1289866Z [574/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-09-07T06:26:22.1422143Z [575/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-09-07T06:26:22.1559030Z [576/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-09-07T06:26:22.1807597Z [577/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-09-07T06:26:22.1821163Z [578/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-09-07T06:26:22.2317927Z [579/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-09-07T06:26:22.2453775Z [580/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-09-07T06:26:22.2514601Z [581/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-09-07T06:26:22.2532117Z [582/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-09-07T06:26:22.2629665Z [583/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-09-07T06:26:22.2837572Z [584/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-09-07T06:26:22.2967550Z [585/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-09-07T06:26:22.3028388Z [586/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-09-07T06:26:22.3551769Z [587/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-09-07T06:26:22.3806328Z [588/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-09-07T06:26:22.3865917Z [589/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-09-07T06:26:22.3956495Z [590/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-09-07T06:26:22.4027138Z [591/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-09-07T06:26:22.4124801Z [592/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-09-07T06:26:22.4201774Z [593/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-09-07T06:26:22.4320714Z [594/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-09-07T06:26:22.4812539Z [595/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-09-07T06:26:22.5106783Z [596/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-09-07T06:26:22.5174734Z [597/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-09-07T06:26:22.5298774Z [598/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-09-07T06:26:22.5357201Z [599/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-09-07T06:26:22.5510989Z [600/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.obj 2025-09-07T06:26:22.5669428Z [601/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.obj 2025-09-07T06:26:22.5849894Z [602/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.obj 2025-09-07T06:26:22.6012370Z [603/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.obj 2025-09-07T06:26:22.6303548Z [604/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-09-07T06:26:22.6477227Z [605/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-09-07T06:26:22.6688704Z [606/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-09-07T06:26:22.6850293Z [607/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-09-07T06:26:22.7036792Z [608/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-09-07T06:26:22.7191757Z [609/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-09-07T06:26:22.7400996Z [610/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-09-07T06:26:22.7643212Z [611/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-09-07T06:26:22.7856305Z [612/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-09-07T06:26:22.8021029Z [613/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-09-07T06:26:24.7977341Z [614/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-09-07T06:26:24.8157597Z [615/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-09-07T06:26:24.8355156Z [616/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-09-07T06:26:24.8540227Z [617/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-09-07T06:26:24.8757255Z [618/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-09-07T06:26:24.9022816Z [619/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-09-07T06:26:24.9215679Z [620/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-09-07T06:26:24.9416364Z [621/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-09-07T06:26:24.9508714Z [622/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-09-07T06:26:24.9615089Z [623/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-09-07T06:26:24.9701268Z [624/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-09-07T06:26:24.9714641Z [625/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-09-07T06:26:25.0195852Z [626/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.0338127Z [627/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.0648441Z [628/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:26:25.0899856Z [629/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:26:25.1069658Z [630/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:26:25.1130457Z [631/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:26:25.1189596Z [632/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:26:25.1205630Z [633/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:26:25.1693667Z [634/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.1754033Z [635/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:25.2130156Z [636/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:26:25.2481345Z [637/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:25.2494511Z [638/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:25.2547391Z [639/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.2620334Z [640/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:26:25.2714538Z [641/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.3020113Z [642/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.3164516Z [643/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:26:25.3341010Z [644/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:25.4013972Z [645/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:26:25.4109369Z [646/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:25.4164424Z [647/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:26:25.4218382Z [648/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:25.4343066Z [649/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:26:25.4514242Z [650/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:26:25.4662426Z [651/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:26:25.4727900Z [652/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:26:25.5482889Z [653/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.5621730Z [654/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:26:25.5636701Z [655/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:26:25.5696704Z [656/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:25.5829303Z [657/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:26:25.5997732Z [658/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:26:25.6214200Z [659/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:25.6693871Z [660/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:26:25.6963405Z [661/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:26:25.7055475Z [662/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:26:25.7118839Z [663/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:25.7132658Z [664/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:25.7270527Z [665/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:26:25.7445733Z [666/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.obj 2025-09-07T06:26:25.7656870Z [667/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:26:25.8084236Z [668/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:26:25.8527520Z [669/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:25.8620746Z [670/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.obj 2025-09-07T06:26:25.8784812Z [671/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:26:25.8835091Z [672/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:26:25.8848579Z [673/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:26:25.8942117Z [674/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:25.9026021Z [675/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:26:25.9451244Z [676/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:25.9970986Z [677/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:26:26.0194106Z [678/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:26.0256905Z [679/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:26.0321832Z [680/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:26:26.0333341Z [681/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.obj 2025-09-07T06:26:26.0395231Z [682/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:26:26.0450356Z [683/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:26:26.0936913Z [684/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:26.1453729Z [685/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.obj 2025-09-07T06:26:26.1698487Z [686/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:26.1785565Z [687/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:26:26.1799097Z [688/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:26:26.1850040Z [689/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:26:26.1911239Z [690/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:26.1967498Z [691/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:26:26.2347261Z [692/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:26.2744956Z [693/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:26:26.3176529Z [694/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:26.3188524Z [695/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:26:26.3281945Z [696/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.obj 2025-09-07T06:26:26.3294299Z [697/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:26:26.3343593Z [698/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:26:26.3357687Z [699/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.obj 2025-09-07T06:26:26.3621069Z [700/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:26.4507126Z [701/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.obj 2025-09-07T06:26:26.4519520Z [702/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:26:26.4611267Z [703/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:26:26.4664619Z [704/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.obj 2025-09-07T06:26:26.4677740Z [705/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:26:26.4781094Z [706/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:26:26.4855879Z [707/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256skx.c.obj 2025-09-07T06:26:26.4979632Z [708/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:26:26.5828754Z [709/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:26:26.5879659Z [710/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:26:26.5930037Z [711/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:26.5992781Z [712/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:26.6044178Z [713/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:26:26.6099380Z [714/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:26:26.6173114Z [715/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:26:26.6281672Z [716/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:26:26.7142603Z [717/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:26:26.7230189Z [718/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:26:26.7291551Z [719/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:26.7309582Z [720/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:26.7374520Z [721/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:26:26.7390784Z [722/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:26:26.7448389Z [723/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:26:26.7459949Z [724/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-09-07T06:26:26.8413571Z [725/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-09-07T06:26:26.8426546Z [726/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-09-07T06:26:26.8478406Z [727/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-09-07T06:26:26.8539773Z [728/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-09-07T06:26:26.8590683Z [729/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-09-07T06:26:26.8603773Z [730/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-09-07T06:26:26.8664477Z [731/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-09-07T06:26:26.8680410Z [732/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-09-07T06:26:26.9682568Z [733/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-09-07T06:26:26.9697801Z [734/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-09-07T06:26:26.9864145Z [735/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:26:26.9919683Z [736/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:26:26.9930789Z [737/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-09-07T06:26:26.9992576Z [738/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:27.0008498Z [739/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:26:27.0021154Z [740/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:27.1022008Z [741/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:26:27.1078979Z [742/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:26:27.1155304Z [743/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:26:27.1227574Z [744/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:26:27.1319596Z [745/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:26:27.1372852Z [746/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:27.1428928Z [747/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:26:27.1754797Z [748/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:27.2293812Z [749/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:26:27.2358455Z [750/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p8c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:26:27.2375484Z [751/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:26:27.2522163Z [752/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:26:27.2574942Z [753/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:26:27.2632795Z [754/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:26:27.2687646Z [755/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:27.3059304Z [756/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:27.3636456Z [757/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:26:27.3706612Z [758/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:26:27.3721637Z [759/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:26:27.4064040Z [760/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:26:27.4150529Z [761/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:27.4203782Z [762/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:27.4346958Z [763/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:27.4802883Z [764/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:27.5040588Z [765/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:27.5108096Z [766/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:27.5190337Z [767/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:27.5794229Z [768/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:27.5898322Z [769/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:27.5984513Z [770/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:27.6036069Z [771/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:26:27.6156393Z [772/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:27.6465050Z [773/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:27.6591544Z [774/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:26:27.6799435Z [775/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:27.7438961Z [776/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:27.7517721Z [777/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:27.7789873Z [778/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:26:27.7801360Z [779/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:27.7858797Z [780/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:27.8016189Z [781/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:27.8176184Z [782/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:27.8337504Z [783/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:27.8758342Z [784/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:27.8925020Z [785/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:27.9179203Z [786/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:27.9375985Z [787/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:27.9389853Z [788/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:26:27.9444646Z [789/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:27.9456331Z [790/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:27.9660412Z [791/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:28.0065109Z [792/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:28.0251371Z [793/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:26:28.0600284Z [794/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-09-07T06:26:28.0652254Z [795/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:26:28.0664311Z [796/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-scalar.c.obj 2025-09-07T06:26:28.0742165Z [797/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-09-07T06:26:28.1025949Z [798/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:28.1100744Z [799/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-09-07T06:26:28.1181843Z [800/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-09-07T06:26:28.1333512Z [801/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-09-07T06:26:28.1664832Z [802/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-09-07T06:26:28.1800169Z [803/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-09-07T06:26:28.2073328Z [804/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-09-07T06:26:28.2122846Z [805/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-09-07T06:26:28.2258113Z [806/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-09-07T06:26:28.2294423Z [807/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-09-07T06:26:28.2362576Z [808/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-09-07T06:26:28.2706753Z [809/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-09-07T06:26:28.2983636Z [810/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-09-07T06:26:28.3068998Z [811/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-09-07T06:26:28.3286433Z [812/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-09-07T06:26:28.3369112Z [813/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:28.3453378Z [814/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:26:28.3520069Z [815/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-09-07T06:26:28.3644732Z [816/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-09-07T06:26:28.3961597Z [817/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-09-07T06:26:28.4212889Z [818/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-09-07T06:26:28.4348434Z [819/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-09-07T06:26:28.4530582Z [820/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:28.4621663Z [821/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-09-07T06:26:28.4681999Z [822/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:26:28.4697591Z [823/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-09-07T06:26:28.4809734Z [824/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-09-07T06:26:28.5083663Z [825/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-09-07T06:26:28.5300575Z [826/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-09-07T06:26:28.5502671Z [827/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-09-07T06:26:28.5705752Z [828/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-09-07T06:26:28.5873574Z [829/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-09-07T06:26:28.5952742Z [830/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-09-07T06:26:28.6013773Z [831/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-09-07T06:26:28.6026229Z [832/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-09-07T06:26:28.6320672Z [833/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-09-07T06:26:28.6493549Z [834/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-09-07T06:26:28.6693109Z [835/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-09-07T06:26:28.6958510Z [836/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-09-07T06:26:28.7072039Z [837/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-09-07T06:26:28.7240565Z [838/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:28.7257361Z [839/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:26:28.7270901Z [840/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-09-07T06:26:28.7536479Z [841/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-09-07T06:26:28.7751101Z [842/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:28.7883018Z [843/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:26:28.8081243Z [844/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-09-07T06:26:28.8175242Z [845/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-09-07T06:26:28.8393956Z [846/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-09-07T06:26:28.8409273Z [847/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-09-07T06:26:28.8579503Z [848/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:26:28.8854859Z [849/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:26:28.9191562Z [850/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:26:28.9205650Z [851/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:28.9371266Z [852/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:28.9492246Z [853/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:26:28.9704842Z [854/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:26:28.9759695Z [855/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:26:28.9954932Z [856/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:26:29.0176528Z [857/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:26:29.0552247Z [858/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:26:29.0568021Z [859/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:29.0647324Z [860/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:29.0847633Z [861/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:26:29.0939930Z [862/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:26:29.1035614Z [863/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:26:29.1156858Z [864/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-09-07T06:26:29.1520044Z [865/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-09-07T06:26:29.1634833Z [866/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-09-07T06:26:29.1733502Z [867/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-09-07T06:26:29.1748910Z [868/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-09-07T06:26:29.2003519Z [869/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-09-07T06:26:29.2058738Z [870/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-09-07T06:26:29.2431795Z [871/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:29.2536884Z [872/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:29.2925234Z [873/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:29.3107803Z [874/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:29.3181459Z [875/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:29.3197522Z [876/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:29.3550762Z [877/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:29.3607301Z [878/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:29.3767786Z [879/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:29.3950197Z [880/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:29.4414921Z [881/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:29.4605369Z [882/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:29.4664979Z [883/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:29.4681085Z [884/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:29.4857240Z [885/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:29.4978244Z [886/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:29.5238678Z [887/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:29.5254294Z [888/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:29.5718540Z [889/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:29.5897348Z [890/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:29.6031882Z [891/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:29.6105266Z [892/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:26:29.6194951Z [893/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:26:29.6427407Z [894/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:26:29.6520828Z [895/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:26:29.6573698Z [896/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:26:29.7013338Z [897/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:26:29.7189678Z [898/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-09-07T06:26:29.7248977Z [899/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:26:29.7261173Z [900/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-09-07T06:26:29.7388614Z [901/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-09-07T06:26:29.7631959Z [902/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-09-07T06:26:29.7749343Z [903/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-09-07T06:26:29.7995356Z [904/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-09-07T06:26:29.8257442Z [905/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-09-07T06:26:29.8429888Z [906/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-09-07T06:26:29.8491885Z [907/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-09-07T06:26:29.8557333Z [908/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-09-07T06:26:29.8724801Z [909/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:29.8839356Z [910/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:26:29.8941345Z [911/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-09-07T06:26:29.9176105Z [912/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-09-07T06:26:29.9481617Z [913/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-09-07T06:26:29.9675860Z [914/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-09-07T06:26:29.9742811Z [915/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-09-07T06:26:29.9850198Z [916/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:29.9956302Z [917/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:26:30.0005208Z [918/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-09-07T06:26:30.0058136Z [919/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-09-07T06:26:30.0262943Z [920/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-09-07T06:26:30.0631527Z [921/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-09-07T06:26:30.0841349Z [922/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-09-07T06:26:30.0960406Z [923/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-09-07T06:26:30.0975523Z [924/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-09-07T06:26:30.1154162Z [925/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-09-07T06:26:30.1211954Z [926/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-09-07T06:26:30.1274665Z [927/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-09-07T06:26:30.1399206Z [928/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-09-07T06:26:30.1882410Z [929/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-09-07T06:26:30.2046737Z [930/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-09-07T06:26:30.2219309Z [931/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-09-07T06:26:30.2273696Z [932/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-09-07T06:26:30.2421187Z [933/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:30.2494762Z [934/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-09-07T06:26:30.2513847Z [935/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:26:30.2580428Z [936/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.obj 2025-09-07T06:26:30.3084366Z [937/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-09-07T06:26:30.3305692Z [938/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.obj 2025-09-07T06:26:30.3358001Z [939/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-09-07T06:26:30.3446495Z [940/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:26:30.3554038Z [941/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-09-07T06:26:30.3732465Z [942/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-09-07T06:26:30.3745911Z [943/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-09-07T06:26:30.3758230Z [944/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-09-07T06:26:30.4074629Z [945/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-09-07T06:26:30.4484496Z [946/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-09-07T06:26:30.4659668Z [947/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-09-07T06:26:30.4743624Z [948/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-09-07T06:26:30.4900013Z [949/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-09-07T06:26:30.4920129Z [950/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-09-07T06:26:30.4981457Z [951/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-09-07T06:26:30.5059613Z [952/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-09-07T06:26:30.5415419Z [953/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-09-07T06:26:30.5536285Z [954/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-09-07T06:26:30.5706496Z [955/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-09-07T06:26:30.5798090Z [956/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-09-07T06:26:30.5853661Z [957/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-09-07T06:26:30.5979519Z [958/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-09-07T06:26:30.6109410Z [959/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-09-07T06:26:30.6255118Z [960/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-09-07T06:26:30.6619681Z [961/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-09-07T06:26:30.6693776Z [962/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-09-07T06:26:30.6874411Z [963/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-09-07T06:26:30.7078939Z [964/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-09-07T06:26:30.7171297Z [965/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16-prfm.c.obj 2025-09-07T06:26:30.7241430Z [966/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-packw\gen\x16-packw-x64-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:26:30.7327781Z [967/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-09-07T06:26:30.7404911Z [968/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-09-07T06:26:30.7697819Z [969/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-09-07T06:26:30.7904530Z [970/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-09-07T06:26:30.8035629Z [971/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-09-07T06:26:30.8091084Z [972/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-09-07T06:26:30.8223790Z [973/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-09-07T06:26:30.8308660Z [974/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-09-07T06:26:30.8477904Z [975/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-09-07T06:26:30.8548127Z [976/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2-gemm-goi-scalar-float-u4.c.obj 2025-09-07T06:26:30.8729519Z [977/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-09-07T06:26:30.9078964Z [978/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-09-07T06:26:30.9229201Z [979/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.obj 2025-09-07T06:26:30.9277562Z [980/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x4-gemm-goi-scalar-float-u4.c.obj 2025-09-07T06:26:30.9335462Z [981/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-09-07T06:26:30.9351044Z [982/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-09-07T06:26:30.9404466Z [983/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-09-07T06:26:30.9528577Z [984/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-09-07T06:26:30.9580045Z [985/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-09-07T06:26:30.9775286Z [986/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-09-07T06:26:30.9904557Z [987/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-09-07T06:26:30.9959895Z [988/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-09-07T06:26:31.0017703Z [989/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-09-07T06:26:31.0071647Z [990/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-09-07T06:26:31.0086159Z [991/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-09-07T06:26:31.0217573Z [992/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-09-07T06:26:31.0270260Z [993/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-09-07T06:26:31.0486961Z [994/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-09-07T06:26:31.0995094Z [995/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-09-07T06:26:31.1007157Z [996/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-09-07T06:26:31.1052480Z [997/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-09-07T06:26:31.1064552Z [998/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-09-07T06:26:31.1118032Z [999/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-09-07T06:26:31.1164725Z [1000/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-09-07T06:26:31.1224363Z [1001/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-09-07T06:26:31.1359479Z [1002/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-09-07T06:26:31.2178211Z [1003/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-09-07T06:26:31.2189849Z [1004/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-09-07T06:26:31.2201830Z [1005/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-09-07T06:26:31.2261592Z [1006/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-09-07T06:26:31.2272804Z [1007/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-09-07T06:26:31.2319240Z [1008/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-09-07T06:26:31.2472749Z [1009/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-09-07T06:26:31.2644397Z [1010/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-09-07T06:26:31.2874054Z [1011/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-09-07T06:26:31.2886146Z [1012/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-09-07T06:26:31.2939732Z [1013/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-09-07T06:26:31.2952409Z [1014/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-09-07T06:26:31.3012511Z [1015/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-09-07T06:26:31.3094911Z [1016/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-09-07T06:26:31.3158130Z [1017/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-09-07T06:26:31.3332523Z [1018/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-09-07T06:26:31.3575566Z [1019/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-09-07T06:26:31.3646812Z [1020/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-09-07T06:26:31.3658654Z [1021/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-09-07T06:26:31.3705858Z [1022/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-09-07T06:26:31.3752910Z [1023/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-09-07T06:26:31.3924626Z [1024/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-09-07T06:26:31.4098098Z [1025/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-09-07T06:26:31.4159928Z [1026/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-09-07T06:26:31.4217976Z [1027/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-09-07T06:26:31.4268817Z [1028/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-09-07T06:26:31.4290266Z [1029/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-09-07T06:26:31.4344525Z [1030/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-09-07T06:26:31.4398502Z [1031/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-09-07T06:26:31.4556291Z [1032/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-09-07T06:26:31.4746414Z [1033/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-09-07T06:26:31.4850555Z [1034/7565] Linking C static library lib\cpuinfo.lib 2025-09-07T06:26:31.5029365Z [1035/7565] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-09-07T06:26:31.5030015Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-09-07T06:26:31.5030828Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-09-07T06:26:31.5031682Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-09-07T06:26:31.5032476Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-09-07T06:26:31.5094819Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-09-07T06:26:31.5096107Z 2025-09-07T06:26:31.5096432Z [1036/7565] Running gen_proto.py on onnx/onnx-data.in.proto 2025-09-07T06:26:31.5441739Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-09-07T06:26:31.5442517Z 2025-09-07T06:26:31.5443158Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-09-07T06:26:31.5443909Z 2025-09-07T06:26:31.5444527Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-09-07T06:26:31.5445324Z 2025-09-07T06:26:31.5445784Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-09-07T06:26:31.5446457Z 2025-09-07T06:26:31.5446964Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-09-07T06:26:31.5447643Z 2025-09-07T06:26:31.5447889Z [1037/7565] Linking C executable sleef\bin\mkrename.exe 2025-09-07T06:26:31.5603497Z [1038/7565] Linking C executable sleef\bin\mkalias.exe 2025-09-07T06:26:31.5631451Z [1039/7565] Linking C executable sleef\bin\mkdisp.exe 2025-09-07T06:26:31.5721396Z [1040/7565] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-09-07T06:26:31.5806328Z [1041/7565] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-09-07T06:26:31.5974317Z [1042/7565] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-09-07T06:26:31.6115689Z [1043/7565] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-09-07T06:26:31.6270382Z [1044/7565] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-09-07T06:26:31.6330141Z [1045/7565] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-09-07T06:26:31.6966130Z [1046/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-09-07T06:26:31.7112574Z [1047/7565] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-09-07T06:26:31.7266577Z [1048/7565] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-09-07T06:26:31.7891659Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:31.7892497Z [1049/7565] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-09-07T06:26:31.7906218Z [1050/7565] Linking C static library lib\microkernels-prod.lib 2025-09-07T06:26:31.8174617Z [1051/7565] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-09-07T06:26:31.8338945Z [1052/7565] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-09-07T06:26:31.8340402Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:31.8341788Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:31.8343089Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:31.8344421Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:31.8345711Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-09-07T06:26:31.8346988Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-09-07T06:26:31.8348621Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-09-07T06:26:31.8350071Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-09-07T06:26:31.8351347Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:31.8352633Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:31.8353973Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): warning C4244: '=': conversion from 'const _Ty' to 'float', possible loss of data 2025-09-07T06:26:31.8354814Z with 2025-09-07T06:26:31.8355009Z [ 2025-09-07T06:26:31.8355172Z _Ty=int 2025-09-07T06:26:31.8355406Z ] 2025-09-07T06:26:31.8356111Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): note: the template instantiation context (the oldest one first) is 2025-09-07T06:26:31.8359927Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(100): note: see reference to function template instantiation 'void copy_bias(const Src *,size_t,size_t,Dst *)' being compiled 2025-09-07T06:26:31.8364142Z with 2025-09-07T06:26:31.8364879Z [ 2025-09-07T06:26:31.8365247Z Src=float, 2025-09-07T06:26:31.8365663Z Dst=float 2025-09-07T06:26:31.8366030Z ] 2025-09-07T06:26:31.8367816Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(49): note: see reference to function template instantiation '_OutIt *std::fill_n(_OutIt,const _Diff,const _Ty &)' being compiled 2025-09-07T06:26:31.8369799Z with 2025-09-07T06:26:31.8370126Z [ 2025-09-07T06:26:31.8370453Z _OutIt=float *, 2025-09-07T06:26:31.8370915Z Dst=float, 2025-09-07T06:26:31.8371338Z _Diff=size_t, 2025-09-07T06:26:31.8371777Z _Ty=int 2025-09-07T06:26:31.8372143Z ] 2025-09-07T06:26:31.8373661Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): warning C4244: 'argument': conversion from 'const _Ty' to 'float', possible loss of data 2025-09-07T06:26:31.8375307Z with 2025-09-07T06:26:31.8375651Z [ 2025-09-07T06:26:31.8375979Z _Ty=int 2025-09-07T06:26:31.8376320Z ] 2025-09-07T06:26:31.8378029Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5246): note: the template instantiation context (the oldest one first) is 2025-09-07T06:26:31.8380356Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(192): note: see reference to function template instantiation 'void copy_bias(const Src *,size_t,size_t,Dst *)' being compiled 2025-09-07T06:26:31.8382084Z with 2025-09-07T06:26:31.8382325Z [ 2025-09-07T06:26:31.8382545Z Src=float, 2025-09-07T06:26:31.8382774Z Dst=xnn_float16 2025-09-07T06:26:31.8382983Z ] 2025-09-07T06:26:31.8399208Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\reference\packing.cc(49): note: see reference to function template instantiation '_OutIt *std::fill_n(_OutIt,const _Diff,const _Ty &)' being compiled 2025-09-07T06:26:31.8400318Z with 2025-09-07T06:26:31.8400878Z [ 2025-09-07T06:26:31.8401099Z _OutIt=xnn_float16 *, 2025-09-07T06:26:31.8401376Z Dst=xnn_float16, 2025-09-07T06:26:31.8401885Z _Diff=size_t, 2025-09-07T06:26:31.8402212Z _Ty=int 2025-09-07T06:26:31.8402511Z ] 2025-09-07T06:26:31.8403250Z [1053/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-09-07T06:26:31.8546713Z [1054/7565] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-09-07T06:26:31.9081505Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:31.9082626Z [1055/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-09-07T06:26:31.9385998Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:31.9386564Z [1056/7565] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-09-07T06:26:31.9441571Z [1057/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-09-07T06:26:31.9589243Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:31.9590770Z [1058/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-09-07T06:26:31.9639786Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:31.9640862Z [1059/7565] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-09-07T06:26:31.9832435Z [1060/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-09-07T06:26:32.0060009Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.0060705Z [1061/7565] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-09-07T06:26:32.0292378Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.0293335Z [1062/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-09-07T06:26:32.0597185Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.0598289Z [1063/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-09-07T06:26:32.0831228Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.0832137Z [1064/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-09-07T06:26:32.1146934Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.1148294Z [1065/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-09-07T06:26:32.1536403Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.1538469Z [1066/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-09-07T06:26:32.1777762Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.1778540Z [1067/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-09-07T06:26:32.1866673Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.1869362Z [1068/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-09-07T06:26:32.1957167Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.1958367Z [1069/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-09-07T06:26:32.2191901Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.2193014Z [1070/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-09-07T06:26:32.2251301Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.2252485Z [1071/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-09-07T06:26:32.2362218Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.2363363Z [1072/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-09-07T06:26:32.2625410Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.2626213Z [1073/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-09-07T06:26:32.2827343Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.2828676Z [1074/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-09-07T06:26:32.2986402Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.2987157Z [1075/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-09-07T06:26:32.3216459Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.3217118Z [1076/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-09-07T06:26:32.3341429Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.3342171Z [1077/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-09-07T06:26:32.3426375Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.3427880Z [1078/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-09-07T06:26:32.3495067Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.3496219Z [1079/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-09-07T06:26:32.3587246Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.3587994Z [1080/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-09-07T06:26:32.3810483Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.3811433Z [1081/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-09-07T06:26:32.4057068Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.4057683Z [1082/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-09-07T06:26:32.4058668Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2243): warning C4098: 'xnn_compute_f16_qd8_convert': 'void' function returning a value 2025-09-07T06:26:32.4059991Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2250): warning C4098: 'xnn_compute_f16_qdu8_convert': 'void' function returning a value 2025-09-07T06:26:32.4061179Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2279): warning C4098: 'xnn_compute_f32_qd8_convert': 'void' function returning a value 2025-09-07T06:26:32.4167803Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(2286): warning C4098: 'xnn_compute_f32_qdu8_convert': 'void' function returning a value 2025-09-07T06:26:32.4168959Z [1083/7565] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-09-07T06:26:32.5393133Z [1084/7565] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-09-07T06:26:32.5395282Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:32.5397215Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:32.5399273Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:32.5401452Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:32.5403407Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-09-07T06:26:32.5405553Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-09-07T06:26:32.5407619Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-09-07T06:26:32.5409811Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-09-07T06:26:32.5412744Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:32.5415237Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:32.5417143Z [1085/7565] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-09-07T06:26:32.5419344Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(552): warning C4190: 'xnn_float16_from_float' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:32.5421794Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:32.5424069Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(576): warning C4190: 'xnn_float16_from_bits' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:32.5426225Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:32.5428419Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(582): warning C4190: 'xnn_bfloat16_from_float' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-09-07T06:26:32.5430698Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-09-07T06:26:32.5432927Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(598): warning C4190: 'xnn_bfloat16_from_bits' has C-linkage specified, but returns UDT 'xnn_bfloat16' which is incompatible with C 2025-09-07T06:26:32.5435172Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-09-07T06:26:32.5757804Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(604): warning C4190: 'xnn_float16_zero' has C-linkage specified, but returns UDT 'xnn_float16' which is incompatible with C 2025-09-07T06:26:32.5759968Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-09-07T06:26:32.5761461Z [1086/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-09-07T06:26:32.6057382Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.6058000Z [1087/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-09-07T06:26:32.6160429Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.6161242Z [1088/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-09-07T06:26:32.6231322Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.6232135Z [1089/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-09-07T06:26:32.6666866Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.6668293Z [1090/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-09-07T06:26:32.6687420Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.6688295Z [1091/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-09-07T06:26:32.7831702Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.7832334Z [1092/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-09-07T06:26:32.7958443Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.7959146Z [1093/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-09-07T06:26:32.8363695Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.8364824Z [1094/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-09-07T06:26:32.8568821Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.8569634Z [1095/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-09-07T06:26:32.8684746Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.8685891Z [1096/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-09-07T06:26:32.8756108Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.8756764Z [1097/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-09-07T06:26:32.9213701Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.9214362Z [1098/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-09-07T06:26:32.9403126Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:32.9404460Z [1099/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-09-07T06:26:33.0177767Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.0178956Z [1100/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-09-07T06:26:33.0330534Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.0331399Z [1101/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-09-07T06:26:33.0951970Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.0953182Z [1102/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-09-07T06:26:33.1034841Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.1036083Z [1103/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-09-07T06:26:33.1145573Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.1146698Z [1104/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-09-07T06:26:33.1247704Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.1248933Z [1105/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-09-07T06:26:33.1657375Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.1658210Z [1106/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-09-07T06:26:33.1947218Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.1948405Z [1107/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-09-07T06:26:33.2534907Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.2536485Z [1108/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-09-07T06:26:33.2777410Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.2778641Z [1109/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-09-07T06:26:33.3490884Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.3507102Z [1110/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-09-07T06:26:33.3508109Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.3508835Z [1111/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-09-07T06:26:33.3701812Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.3703260Z [1112/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-09-07T06:26:33.3783990Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.3785045Z [1113/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-09-07T06:26:33.4027781Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.4028462Z [1114/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-09-07T06:26:33.4409033Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.4409955Z [1115/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-09-07T06:26:33.4448124Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.4449654Z [1116/7565] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-09-07T06:26:33.4673416Z [1117/7565] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-09-07T06:26:33.4876304Z [1118/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-09-07T06:26:33.5382894Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.5383535Z [1119/7565] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-09-07T06:26:33.7474635Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:33.7476531Z [1120/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-09-07T06:26:33.7563370Z [1121/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-09-07T06:26:33.8064884Z [1122/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-09-07T06:26:33.8162101Z [1123/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-09-07T06:26:33.8219705Z [1124/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-09-07T06:26:33.8431800Z [1125/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-09-07T06:26:33.8650499Z [1126/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-09-07T06:26:33.9120145Z [1127/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\libc.c.obj 2025-09-07T06:26:34.1090969Z [1128/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-09-07T06:26:34.1270913Z [1129/7565] Generating sleeflibm_AVX.h.tmp 2025-09-07T06:26:34.1419093Z [1130/7565] Generating sleeflibm_AVX2.h.tmp 2025-09-07T06:26:34.1550417Z [1131/7565] Generating sleeflibm_AVX2128.h.tmp 2025-09-07T06:26:34.1637165Z [1132/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-09-07T06:26:34.1688385Z [1133/7565] Generating sleeflibm_AVX512F.h.tmp 2025-09-07T06:26:34.1812722Z [1134/7565] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-09-07T06:26:34.1823761Z [1135/7565] Generating sleeflibm_AVX512F_.h.tmp 2025-09-07T06:26:34.1891242Z [1136/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-09-07T06:26:34.1912424Z [1137/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-09-07T06:26:34.1950480Z [1138/7565] Generating sleeflibm_AVX_.h.tmp 2025-09-07T06:26:34.1967870Z [1139/7565] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-09-07T06:26:34.2034876Z [1140/7565] Generating sleeflibm_FMA4.h.tmp 2025-09-07T06:26:34.2056569Z [1141/7565] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-09-07T06:26:34.2087177Z [1142/7565] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-09-07T06:26:34.2116819Z [1143/7565] Generating sleeflibm_SSE2.h.tmp 2025-09-07T06:26:34.2174985Z [1144/7565] Generating sleeflibm_SSE4.h.tmp 2025-09-07T06:26:34.2195834Z [1145/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-09-07T06:26:34.2209234Z [1146/7565] Generating sleeflibm_SSE_.h.tmp 2025-09-07T06:26:34.2259866Z [1147/7565] Generating alias_AVX512F_sp.h.tmp 2025-09-07T06:26:34.2271903Z [1148/7565] Generating alias_AVX512F_dp.h.tmp 2025-09-07T06:26:34.2331747Z [1149/7565] Generating dispscalar.c.body 2025-09-07T06:26:34.2342035Z [1150/7565] Generating dispsse.c.tmp 2025-09-07T06:26:34.2354259Z [1151/7565] Generating dispavx.c.tmp 2025-09-07T06:26:34.2425951Z [1152/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-09-07T06:26:34.3275781Z [1153/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-09-07T06:26:34.3873534Z [1154/7565] Generating build_identifier.c 2025-09-07T06:26:34.4128777Z [1155/7565] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-09-07T06:26:34.6318306Z [1156/7565] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-09-07T06:26:34.6414057Z [1157/7565] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-09-07T06:26:34.6560222Z [1158/7565] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-09-07T06:26:34.6664784Z [1159/7565] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-09-07T06:26:34.7000801Z [1160/7565] Building CXX object c10\CMakeFiles\c10.dir\core\AllocatorConfig.cpp.obj 2025-09-07T06:26:34.7276546Z [1161/7565] Building CXX object c10\CMakeFiles\c10.dir\core\CachingDeviceAllocator.cpp.obj 2025-09-07T06:26:34.7445722Z [1162/7565] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-09-07T06:26:34.9563122Z [1163/7565] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-09-07T06:26:34.9732778Z [1164/7565] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-09-07T06:26:35.0239713Z [1165/7565] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-09-07T06:26:35.0299797Z [1166/7565] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-09-07T06:26:35.0342516Z [1167/7565] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-09-07T06:26:35.0620512Z [1168/7565] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-09-07T06:26:35.0682034Z [1169/7565] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-09-07T06:26:35.1848231Z [1170/7565] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-09-07T06:26:35.2008142Z [1171/7565] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-09-07T06:26:35.2300877Z [1172/7565] Linking CXX static library lib\mimalloc.lib 2025-09-07T06:26:35.3653110Z [1173/7565] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-09-07T06:26:35.4078931Z [1174/7565] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-09-07T06:26:35.4392781Z [1175/7565] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-09-07T06:26:35.4492320Z [1176/7565] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-09-07T06:26:35.4508065Z [1177/7565] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-09-07T06:26:35.4890691Z [1178/7565] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-09-07T06:26:35.5555841Z [1179/7565] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-09-07T06:26:35.6001452Z [1180/7565] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-09-07T06:26:35.6907091Z [1181/7565] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-09-07T06:26:35.7513718Z [1182/7565] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-09-07T06:26:35.7798096Z [1183/7565] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-09-07T06:26:35.7958932Z [1184/7565] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-09-07T06:26:35.8205995Z [1185/7565] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-09-07T06:26:35.8374353Z [1186/7565] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-09-07T06:26:35.9175355Z [1187/7565] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-09-07T06:26:36.1083639Z [1188/7565] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-09-07T06:26:36.1150454Z [1189/7565] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-09-07T06:26:36.1368325Z [1190/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-09-07T06:26:36.1429821Z [1191/7565] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-09-07T06:26:36.1750354Z [1192/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-09-07T06:26:36.1932714Z [1193/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-09-07T06:26:36.2010644Z [1194/7565] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-09-07T06:26:36.2144515Z [1195/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-09-07T06:26:36.2529511Z [1196/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-09-07T06:26:36.4446481Z [1197/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-09-07T06:26:36.5260416Z [1198/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreterHooks.cpp.obj 2025-09-07T06:26:36.5353875Z [1199/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-09-07T06:26:36.5429377Z C:\actions-runner\_work\pytorch\pytorch\c10\core\impl\PyObjectSlot.cpp(53): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation 2025-09-07T06:26:36.5430480Z [1200/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-09-07T06:26:36.5698102Z [1201/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-09-07T06:26:36.5770129Z [1202/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-09-07T06:26:36.6050095Z [1203/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-09-07T06:26:36.6358018Z [1204/7565] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-09-07T06:26:36.8008262Z [1205/7565] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-09-07T06:26:36.8291815Z [1206/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-09-07T06:26:36.8346793Z [1207/7565] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-09-07T06:26:36.8704182Z [1208/7565] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-09-07T06:26:36.8764109Z [1209/7565] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-09-07T06:26:36.9354015Z [1210/7565] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-09-07T06:26:37.0205314Z [1211/7565] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-09-07T06:26:37.0526440Z [1212/7565] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-09-07T06:26:37.0940825Z [1213/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-09-07T06:26:37.1040023Z [1214/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-09-07T06:26:37.1148615Z [1215/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-09-07T06:26:37.1627999Z [1216/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-09-07T06:26:37.1772755Z [1217/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-09-07T06:26:37.1869449Z [1218/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-09-07T06:26:37.2756550Z [1219/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-09-07T06:26:37.3142363Z [1220/7565] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-09-07T06:26:37.3399477Z [1221/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-09-07T06:26:37.3482311Z [1222/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-09-07T06:26:37.4031517Z [1223/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-09-07T06:26:37.4254264Z [1224/7565] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-09-07T06:26:37.4341775Z [1225/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-09-07T06:26:37.4360445Z [1226/7565] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-09-07T06:26:37.4992125Z [1227/7565] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-09-07T06:26:37.5053286Z [1228/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-09-07T06:26:37.6256962Z [1229/7565] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-09-07T06:26:37.6323069Z [1230/7565] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-09-07T06:26:37.6601689Z [1231/7565] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-09-07T06:26:37.6950195Z [1232/7565] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-09-07T06:26:37.6963097Z [1233/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-09-07T06:26:37.7022761Z [1234/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-09-07T06:26:37.7167338Z [1235/7565] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-09-07T06:26:37.8122982Z [1236/7565] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-09-07T06:26:37.8136214Z [1237/7565] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-09-07T06:26:37.8230056Z [1238/7565] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-09-07T06:26:37.9086645Z [1239/7565] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-09-07T06:26:37.9605365Z [1240/7565] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-09-07T06:26:37.9837352Z [1241/7565] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-09-07T06:26:38.1070916Z [1242/7565] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-09-07T06:26:38.1088493Z [1243/7565] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-09-07T06:26:38.1103678Z [1244/7565] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-09-07T06:26:38.1243554Z [1245/7565] Generating include/renameavx512fnofma.h 2025-09-07T06:26:38.1315890Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-09-07T06:26:38.1316576Z 2025-09-07T06:26:38.1317304Z [1246/7565] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-09-07T06:26:38.1406716Z [1247/7565] Generating include/renameavx512f.h 2025-09-07T06:26:38.1459894Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-09-07T06:26:38.1460365Z 2025-09-07T06:26:38.1460577Z [1248/7565] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-09-07T06:26:38.1471466Z [1249/7565] Generating include/renameavx2.h 2025-09-07T06:26:38.1563314Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-09-07T06:26:38.1563695Z 2025-09-07T06:26:38.1563923Z [1250/7565] Generating include/renameavx2128.h 2025-09-07T06:26:38.1601863Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-09-07T06:26:38.1602259Z 2025-09-07T06:26:38.1602380Z [1251/7565] Generating include/renamefma4.h 2025-09-07T06:26:38.1613411Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-09-07T06:26:38.1614198Z 2025-09-07T06:26:38.1614429Z [1252/7565] Generating include/renameavx.h 2025-09-07T06:26:38.1706490Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-09-07T06:26:38.1707119Z 2025-09-07T06:26:38.1707317Z [1253/7565] Generating include/renamesse4.h 2025-09-07T06:26:38.1749533Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-09-07T06:26:38.1750082Z 2025-09-07T06:26:38.1750283Z [1254/7565] Generating include/renamesse2.h 2025-09-07T06:26:38.1761348Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-09-07T06:26:38.1761651Z 2025-09-07T06:26:38.1761799Z [1255/7565] Generating include/renamepurec_scalar.h 2025-09-07T06:26:38.1859043Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-09-07T06:26:38.1859645Z 2025-09-07T06:26:38.1859893Z [1256/7565] Generating include/renamepurecfma_scalar.h 2025-09-07T06:26:38.1894394Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-09-07T06:26:38.1895082Z 2025-09-07T06:26:38.1895301Z [1257/7565] Generating include/renamecuda.h 2025-09-07T06:26:38.2051891Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-09-07T06:26:38.2052418Z 2025-09-07T06:26:38.2052656Z [1258/7565] Generating ../../../include/sleef.h 2025-09-07T06:26:38.2107805Z [1259/7565] Generating include/alias_avx512f.h 2025-09-07T06:26:38.2136552Z [1260/7565] Generating dispscalar.c 2025-09-07T06:26:38.2180143Z [1261/7565] Generating include/renamedspscalar.h 2025-09-07T06:26:38.2269445Z [1262/7565] Generating include/renamedsp128.h 2025-09-07T06:26:38.2341906Z [1263/7565] Generating dispsse.c 2025-09-07T06:26:38.2422563Z [1264/7565] Generating include/renamedsp256.h 2025-09-07T06:26:38.2433915Z [1265/7565] Generating dispavx.c 2025-09-07T06:26:38.2589042Z [1266/7565] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-09-07T06:26:38.3157713Z [1267/7565] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-09-07T06:26:38.3237447Z [1268/7565] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-09-07T06:26:38.5243268Z [1269/7565] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-09-07T06:26:38.5905119Z [1270/7565] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-09-07T06:26:38.6074415Z [1271/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-09-07T06:26:38.6319183Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:38.6320204Z [1272/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-09-07T06:26:38.6419283Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:38.6420123Z [1273/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-09-07T06:26:38.6543929Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:38.6545019Z [1274/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-09-07T06:26:38.6568136Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:38.6569745Z [1275/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-09-07T06:26:38.6903172Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:38.6904278Z [1276/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-09-07T06:26:38.7294399Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:38.7295555Z [1277/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-09-07T06:26:38.9343369Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:38.9345114Z [1278/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-09-07T06:26:39.0247097Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.0247826Z [1279/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-09-07T06:26:39.0358306Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.0359096Z [1280/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-09-07T06:26:39.0379402Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.0380122Z [1281/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-09-07T06:26:39.0475657Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.0476745Z [1282/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-09-07T06:26:39.0508588Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.0509952Z [1283/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-09-07T06:26:39.0927714Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.0928420Z [1284/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-09-07T06:26:39.1109171Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.1110341Z [1285/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-09-07T06:26:39.3286531Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.3287810Z [1286/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-09-07T06:26:39.4586969Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.4587627Z [1287/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-09-07T06:26:39.4611262Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.4611912Z [1288/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-09-07T06:26:39.4626619Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.4627521Z [1289/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-09-07T06:26:39.4642121Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.4643175Z [1290/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-09-07T06:26:39.4662196Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.4663261Z [1291/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-09-07T06:26:39.4736335Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.4737128Z [1292/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-09-07T06:26:39.4809400Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.4810339Z [1293/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-09-07T06:26:39.5417102Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.5418122Z [1294/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-09-07T06:26:39.5468000Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.5469022Z [1295/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-09-07T06:26:39.6959539Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.6960961Z [1296/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-09-07T06:26:39.8040781Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.8041670Z [1297/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-09-07T06:26:39.8319893Z [1298/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-09-07T06:26:39.8434925Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.8435603Z [1299/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-09-07T06:26:39.8511716Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.8512900Z [1300/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-09-07T06:26:39.8685808Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.8686549Z [1301/7565] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-09-07T06:26:39.9370021Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-09-07T06:26:39.9371060Z [1302/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-09-07T06:26:39.9998544Z [1303/7565] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-09-07T06:26:40.0550360Z [1304/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-09-07T06:26:40.0849420Z [1305/7565] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-09-07T06:26:40.0925022Z [1306/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-09-07T06:26:40.0988052Z [1307/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-09-07T06:26:40.1262948Z [1308/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-09-07T06:26:40.1317238Z [1309/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-09-07T06:26:40.1960181Z [1310/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-09-07T06:26:40.2647527Z [1311/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-09-07T06:26:40.3148949Z [1312/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-09-07T06:26:40.3362839Z [1313/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-09-07T06:26:40.3566611Z [1314/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-09-07T06:26:40.3748503Z [1315/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-09-07T06:26:40.3803176Z [1316/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-09-07T06:26:40.4098436Z [1317/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-09-07T06:26:40.4591282Z [1318/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-09-07T06:26:40.4679575Z [1319/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-09-07T06:26:40.5394381Z [1320/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-09-07T06:26:40.5932950Z [1321/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-09-07T06:26:40.6090870Z [1322/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-09-07T06:26:40.6295927Z [1323/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-09-07T06:26:40.6308669Z [1324/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-09-07T06:26:40.6374844Z [1325/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-09-07T06:26:40.6842463Z [1326/7565] Linking CXX static library lib\onnx_proto.lib 2025-09-07T06:26:40.7466922Z [1327/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-09-07T06:26:40.8459098Z [1328/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-09-07T06:26:40.8476115Z [1329/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-09-07T06:26:40.8490194Z [1330/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-09-07T06:26:40.8550625Z [1331/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-09-07T06:26:40.8563011Z [1332/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-09-07T06:26:40.8962447Z [1333/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-09-07T06:26:40.9614465Z [1334/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-09-07T06:26:41.1232459Z [1335/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-09-07T06:26:41.2492475Z [1336/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-09-07T06:26:41.2626419Z [1337/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-09-07T06:26:41.2844665Z [1338/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-09-07T06:26:41.3144330Z [1339/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-09-07T06:26:41.3916756Z [1340/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-09-07T06:26:41.5346209Z [1341/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-09-07T06:26:41.5473638Z [1342/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-09-07T06:26:41.5781240Z [1343/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-09-07T06:26:41.6545705Z [1344/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-09-07T06:26:41.6922101Z [1345/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-09-07T06:26:41.7339422Z [1346/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-09-07T06:26:41.7471735Z [1347/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-09-07T06:26:41.8019339Z [1348/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-09-07T06:26:41.9603173Z [1349/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-09-07T06:26:41.9684731Z [1350/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-09-07T06:26:41.9895777Z [1351/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-09-07T06:26:42.0999715Z [1352/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-09-07T06:26:42.1340288Z [1353/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-09-07T06:26:42.1514024Z [1354/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-09-07T06:26:42.1925395Z [1355/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-09-07T06:26:42.2388678Z [1356/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-09-07T06:26:42.3844983Z [1357/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-09-07T06:26:42.3968020Z [1358/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-09-07T06:26:42.4472777Z [1359/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-09-07T06:26:42.5346699Z [1360/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-09-07T06:26:42.5432462Z [1361/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-09-07T06:26:42.5523028Z [1362/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-09-07T06:26:42.6040010Z [1363/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-09-07T06:26:42.6662856Z [1364/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-09-07T06:26:42.8094150Z [1365/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-09-07T06:26:42.8199804Z [1366/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-09-07T06:26:42.9033900Z [1367/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-09-07T06:26:42.9751175Z [1368/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-09-07T06:26:42.9955791Z [1369/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-09-07T06:26:43.0070169Z [1370/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-09-07T06:26:43.0284978Z [1371/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-09-07T06:26:43.1140435Z [1372/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-09-07T06:26:43.2534758Z [1373/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-09-07T06:26:43.2880759Z [1374/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-09-07T06:26:43.3358838Z [1375/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-09-07T06:26:43.4115608Z [1376/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-09-07T06:26:43.4292034Z [1377/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-09-07T06:26:43.4362547Z [1378/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-09-07T06:26:43.4520386Z [1379/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-09-07T06:26:43.4651673Z [1380/7565] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-09-07T06:26:43.5463880Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-09-07T06:26:43.5464218Z 2025-09-07T06:26:43.5464233Z 2025-09-07T06:26:43.5464433Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-09-07T06:26:43.5464780Z 2025-09-07T06:26:43.5464784Z 2025-09-07T06:26:43.5464788Z 2025-09-07T06:26:43.5464791Z 2025-09-07T06:26:43.5465109Z [1381/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-09-07T06:26:43.6475586Z [1382/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-09-07T06:26:43.6704239Z [1383/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-09-07T06:26:43.7797284Z [1384/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-09-07T06:26:43.8424684Z [1385/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-09-07T06:26:43.8657829Z [1386/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-09-07T06:26:44.0421275Z [1387/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-09-07T06:26:44.1173769Z [1388/7565] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-09-07T06:26:44.1420079Z [1389/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-09-07T06:26:44.1913380Z [1390/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-09-07T06:26:44.2274333Z [1391/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-09-07T06:26:44.2543143Z [1392/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-09-07T06:26:44.2591913Z [1393/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-09-07T06:26:44.3910269Z [1394/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-09-07T06:26:44.3982078Z [1395/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-09-07T06:26:44.4147354Z [1396/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-09-07T06:26:44.4922354Z [1397/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-09-07T06:26:44.6234864Z [1398/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-09-07T06:26:44.6354437Z [1399/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-09-07T06:26:44.6516480Z [1400/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-09-07T06:26:44.6591834Z [1401/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-09-07T06:26:44.6896812Z [1402/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-09-07T06:26:44.7887061Z [1403/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-09-07T06:26:44.9080098Z [1404/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-09-07T06:26:44.9176513Z [1405/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-09-07T06:26:45.1163456Z [1406/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-09-07T06:26:45.1990314Z [1407/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-09-07T06:26:45.2065385Z [1408/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-09-07T06:26:45.2156172Z [1409/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-09-07T06:26:45.2743018Z [1410/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-09-07T06:26:45.3787948Z [1411/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-09-07T06:26:45.4630665Z [1412/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-09-07T06:26:45.4808168Z [1413/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-09-07T06:26:45.6179421Z [1414/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-09-07T06:26:45.7282919Z [1415/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-09-07T06:26:45.7386824Z [1416/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-09-07T06:26:45.7505075Z [1417/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-09-07T06:26:45.8471547Z [1418/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-09-07T06:26:46.0303601Z [1419/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-09-07T06:26:46.0460088Z [1420/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-09-07T06:26:46.0478237Z [1421/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-09-07T06:26:46.2311731Z [1422/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-09-07T06:26:46.2841420Z [1423/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-09-07T06:26:46.3018729Z [1424/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-09-07T06:26:46.3291668Z [1425/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-09-07T06:26:46.4865335Z [1426/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-09-07T06:26:46.5719495Z [1427/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-09-07T06:26:46.5979747Z [1428/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-09-07T06:26:46.6823138Z [1429/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-09-07T06:26:46.8278382Z [1430/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-09-07T06:26:46.8642186Z [1431/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-09-07T06:26:46.8855134Z [1432/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-09-07T06:26:46.8955197Z [1433/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-09-07T06:26:46.9794259Z [1434/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-09-07T06:26:47.1330027Z [1435/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-09-07T06:26:47.1520027Z [1436/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-09-07T06:26:47.2083952Z [1437/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-09-07T06:26:47.4141966Z [1438/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-09-07T06:26:47.4238378Z [1439/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-09-07T06:26:47.4262016Z [1440/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-09-07T06:26:47.4326283Z [1441/7565] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-09-07T06:26:47.4592187Z Microsoft (R) Macro Assembler (x64) Version 14.42.34444.0 2025-09-07T06:26:47.4592712Z 2025-09-07T06:26:47.4593013Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-09-07T06:26:47.4593517Z 2025-09-07T06:26:47.4593523Z 2025-09-07T06:26:47.4593528Z 2025-09-07T06:26:47.4594195Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-09-07T06:26:47.4595106Z 2025-09-07T06:26:47.4595801Z [1442/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-09-07T06:26:47.5195366Z [1443/7565] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-09-07T06:26:47.5575125Z [1444/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-09-07T06:26:47.6496238Z [1445/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-09-07T06:26:47.7165593Z [1446/7565] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-09-07T06:26:47.8102012Z [1447/7565] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-09-07T06:26:48.0348147Z [1448/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-09-07T06:26:48.0901649Z [1449/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-09-07T06:26:48.1019388Z [1450/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-09-07T06:26:48.1480109Z [1451/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-09-07T06:26:48.2575762Z [1452/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-09-07T06:26:48.2690101Z [1453/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-09-07T06:26:48.5803967Z [1454/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-09-07T06:26:48.5887364Z [1455/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-09-07T06:26:48.6605619Z [1456/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-09-07T06:26:48.7050411Z [1457/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-09-07T06:26:48.7344893Z [1458/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-09-07T06:26:48.9146914Z [1459/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-09-07T06:26:48.9334305Z [1460/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-09-07T06:26:48.9477227Z [1461/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-09-07T06:26:49.2592412Z [1462/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-09-07T06:26:49.2830170Z [1463/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-09-07T06:26:49.3612568Z [1464/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-09-07T06:26:49.4144631Z [1465/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-09-07T06:26:49.4856750Z [1466/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-09-07T06:26:49.5958413Z [1467/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-09-07T06:26:49.6064941Z [1468/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-09-07T06:26:49.6621082Z [1469/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-09-07T06:26:49.8855512Z [1470/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-09-07T06:26:49.9509251Z [1471/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-09-07T06:26:50.0405680Z [1472/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-09-07T06:26:50.0676952Z [1473/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-09-07T06:26:50.1634326Z [1474/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-09-07T06:26:50.2346643Z [1475/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-09-07T06:26:50.3487569Z [1476/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-09-07T06:26:50.3614002Z [1477/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-09-07T06:26:50.5770032Z [1478/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-09-07T06:26:50.6104284Z [1479/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-09-07T06:26:50.6791073Z [1480/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-09-07T06:26:50.7371666Z [1481/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-09-07T06:26:50.7802112Z [1482/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-09-07T06:26:50.8780254Z [1483/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-09-07T06:26:50.9504300Z [1484/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-09-07T06:26:50.9770104Z [1485/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-09-07T06:26:51.1833685Z [1486/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-09-07T06:26:51.2392433Z [1487/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-09-07T06:26:51.3107801Z [1488/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-09-07T06:26:51.3896369Z [1489/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-09-07T06:26:51.4281319Z [1490/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-09-07T06:26:51.5284353Z [1491/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-09-07T06:26:51.5786540Z [1492/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-09-07T06:26:51.6371500Z [1493/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-09-07T06:26:51.8032601Z [1494/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-09-07T06:26:51.8278387Z [1495/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-09-07T06:26:51.9385442Z [1496/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-09-07T06:26:52.0209440Z [1497/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-09-07T06:26:52.0450706Z [1498/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-09-07T06:26:52.1487461Z [1499/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-09-07T06:26:52.2038505Z [1500/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-09-07T06:26:52.2517828Z [1501/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-09-07T06:26:52.3761364Z [1502/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-09-07T06:26:52.4291222Z [1503/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-09-07T06:26:52.5082557Z [1504/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-09-07T06:26:52.5634843Z [1505/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-09-07T06:26:52.6338844Z [1506/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-09-07T06:26:52.6516670Z [1507/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-09-07T06:26:52.6948062Z [1508/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-09-07T06:26:52.7172094Z [1509/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-09-07T06:26:52.7562246Z [1510/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-09-07T06:26:52.7953489Z [1511/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-09-07T06:26:53.1438067Z [1512/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-09-07T06:26:53.1656307Z [1513/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-09-07T06:26:53.1879498Z [1514/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-09-07T06:26:53.2416765Z [1515/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-09-07T06:26:53.3930467Z [1516/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-09-07T06:26:53.4208963Z [1517/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-09-07T06:26:53.4782342Z [1518/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-09-07T06:26:53.5237625Z [1519/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-09-07T06:26:53.7699963Z [1520/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-09-07T06:26:53.7888946Z [1521/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-09-07T06:26:53.8109979Z [1522/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-09-07T06:26:53.9396308Z [1523/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-09-07T06:26:54.1059168Z [1524/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-09-07T06:26:54.1491634Z [1525/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-09-07T06:26:54.2303944Z [1526/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-09-07T06:26:54.2540889Z [1527/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-09-07T06:26:54.5035216Z [1528/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-09-07T06:26:54.5582727Z [1529/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-09-07T06:26:54.5786835Z [1530/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-09-07T06:26:54.7426552Z [1531/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-09-07T06:26:54.8314897Z [1532/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-09-07T06:26:54.8606614Z [1533/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-09-07T06:26:54.9664044Z [1534/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-09-07T06:26:54.9973528Z [1535/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-09-07T06:26:55.2531640Z [1536/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-09-07T06:26:55.3038845Z [1537/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-09-07T06:26:55.3256138Z [1538/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-09-07T06:26:55.4567702Z [1539/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-09-07T06:26:55.5576008Z [1540/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-09-07T06:26:55.5807630Z [1541/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-09-07T06:26:55.6785634Z [1542/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-09-07T06:26:55.7247240Z [1543/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-09-07T06:26:55.9751092Z [1544/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-09-07T06:26:56.0369293Z [1545/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-09-07T06:26:56.0568985Z [1546/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-09-07T06:26:56.1898449Z [1547/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-09-07T06:26:56.2459676Z [1548/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-09-07T06:26:56.2597581Z [1549/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-09-07T06:26:56.2979951Z [1550/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-09-07T06:26:56.3825524Z [1551/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-09-07T06:26:56.4197794Z [1552/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-09-07T06:26:56.5713191Z [1553/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-09-07T06:26:56.7795840Z [1554/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-09-07T06:26:56.7822857Z [1555/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-09-07T06:26:56.8780728Z [1556/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-09-07T06:26:56.8992267Z [1557/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-09-07T06:26:56.9548314Z [1558/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-09-07T06:26:57.0280576Z [1559/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-09-07T06:26:57.0815166Z [1560/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-09-07T06:26:57.2008751Z [1561/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-09-07T06:26:57.4242433Z [1562/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-09-07T06:26:58.2252786Z [1563/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-09-07T06:26:58.2358766Z [1564/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-09-07T06:26:58.2620004Z [1565/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-09-07T06:26:58.3180758Z [1566/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-09-07T06:26:58.3434812Z [1567/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\amx\jit_avx512_core_amx_copy_kern.cpp.obj 2025-09-07T06:26:58.3648628Z [1568/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\amx\jit_avx512_core_amx_gemm_kern.cpp.obj 2025-09-07T06:26:58.3817568Z [1569/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_gemm_bf16bf16f32_kern.cpp.obj 2025-09-07T06:26:58.4121025Z [1570/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_gemv_bf16bf16f32_kern.cpp.obj 2025-09-07T06:26:58.8356089Z [1571/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:26:58.8454997Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:58.8456492Z [1572/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_an_kern_autogen.cpp.obj 2025-09-07T06:26:58.8762519Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:58.8764107Z [1573/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_at_kern_autogen.cpp.obj 2025-09-07T06:26:58.9431699Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:58.9433407Z [1574/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_24x8_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:26:58.9554125Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:58.9833134Z [1575/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_an_kern_autogen.cpp.obj 2025-09-07T06:26:58.9834309Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:58.9835480Z [1576/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_at_kern_autogen.cpp.obj 2025-09-07T06:26:59.0111728Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.0112592Z [1577/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:26:59.0346473Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.0347406Z [1578/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\bf16\jit_avx512_core_s16_48x8_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:26:59.4733036Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.4733792Z [1579/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_an_kern_autogen.cpp.obj 2025-09-07T06:26:59.4864315Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.4865769Z [1580/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_at_kern_autogen.cpp.obj 2025-09-07T06:26:59.5014619Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.5016025Z [1581/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:26:59.5780962Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.5781860Z [1582/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_f32_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:26:59.5934622Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.5935680Z [1583/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx2_kernel_sgemm_kern.cpp.obj 2025-09-07T06:26:59.6194203Z [1584/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_common_gemm_f32.cpp.obj 2025-09-07T06:26:59.6556211Z [1585/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_an_kern_autogen.cpp.obj 2025-09-07T06:26:59.6653425Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:26:59.6654255Z [1586/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_at_kern_part1_autogen.cpp.obj 2025-09-07T06:27:00.1061993Z [1587/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_at_kern_part2_autogen.cpp.obj 2025-09-07T06:27:00.1183788Z [1588/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:00.1507957Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:00.1509480Z [1589/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_f32_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:00.1926816Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:00.1928425Z [1590/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx512_core_gemm_smalln_tn_f32_kern.cpp.obj 2025-09-07T06:27:00.2302800Z [1591/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_an_kern_autogen.cpp.obj 2025-09-07T06:27:00.2320077Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:00.2321183Z [1592/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_at_kern_autogen.cpp.obj 2025-09-07T06:27:00.2664964Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:00.2665784Z [1593/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:00.2734533Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:00.2735902Z [1594/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_f32_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:00.7991297Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:00.7992052Z [1595/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_gemv_t_f32_kern.cpp.obj 2025-09-07T06:27:00.8160211Z [1596/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_b0_sgemm_kern_part1_autogen.cpp.obj 2025-09-07T06:27:00.8351143Z [1597/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_gemm_f32.cpp.obj 2025-09-07T06:27:00.8427046Z [1598/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_sgemm_kern_part1_autogen.cpp.obj 2025-09-07T06:27:00.8480947Z [1599/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_b0_sgemm_kern_part2_autogen.cpp.obj 2025-09-07T06:27:00.8670001Z [1600/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_at_kern_autogen.cpp.obj 2025-09-07T06:27:00.8767663Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:00.8768894Z [1601/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_avx_kernel_sgemm_kern_part2_autogen.cpp.obj 2025-09-07T06:27:00.8940319Z [1602/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_an_kern_autogen.cpp.obj 2025-09-07T06:27:01.4427412Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:01.4428820Z [1603/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:01.4525330Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:01.4526104Z [1604/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_gemv_n_f32_kern.cpp.obj 2025-09-07T06:27:01.4592682Z [1605/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_f32_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:01.4763488Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:01.4764854Z [1606/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_gemv_t_f32_kern.cpp.obj 2025-09-07T06:27:01.4860313Z [1607/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_kernel_sgemm_kern_autogen.cpp.obj 2025-09-07T06:27:01.4964063Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:01.4965200Z [1608/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-09-07T06:27:01.5065543Z [1609/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\f32\jit_sse41_kernel_b0_sgemm_kern_autogen.cpp.obj 2025-09-07T06:27:01.5091347Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:01.5092394Z [1610/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-09-07T06:27:02.0791240Z [1611/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-09-07T06:27:02.0912337Z [1612/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_an_kern_autogen.cpp.obj 2025-09-07T06:27:02.1125546Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.1126206Z [1613/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-09-07T06:27:02.1142745Z [1614/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_gemm_s8u8s32_kern.cpp.obj 2025-09-07T06:27:02.1165909Z [1615/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:02.1224250Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.1225542Z [1616/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_at_kern_autogen.cpp.obj 2025-09-07T06:27:02.1317296Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.1318656Z [1617/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_an_kern_autogen.cpp.obj 2025-09-07T06:27:02.1334785Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.1336056Z [1618/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:02.7519492Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.7520281Z [1619/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-09-07T06:27:02.7630235Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.7631081Z [1620/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_at_kern_autogen.cpp.obj 2025-09-07T06:27:02.7652354Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.7653134Z [1621/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_at_kern_autogen.cpp.obj 2025-09-07T06:27:02.7738013Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.7739054Z [1622/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_an_kern_autogen.cpp.obj 2025-09-07T06:27:02.7827025Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.7827806Z [1623/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-09-07T06:27:02.7887401Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.7889163Z [1624/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:02.7955445Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.7956890Z [1625/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_an_kern_autogen.cpp.obj 2025-09-07T06:27:02.8144002Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:02.8145490Z [1626/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:03.3939973Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:03.3940783Z [1627/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-09-07T06:27:03.4029842Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:03.4030643Z [1628/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_at_kern_autogen.cpp.obj 2025-09-07T06:27:03.4119084Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:03.4119864Z [1629/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_gemm_s8u8s32_kern.cpp.obj 2025-09-07T06:27:03.4180045Z [1630/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_gemv_s8x8s32.cpp.obj 2025-09-07T06:27:03.4253870Z [1631/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_an_kern_autogen.cpp.obj 2025-09-07T06:27:03.4326533Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:03.4327351Z [1632/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx2_vnni_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-09-07T06:27:03.4573686Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:03.4575188Z [1633/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_kernel_gemv_s8x8s32_kern.cpp.obj 2025-09-07T06:27:03.4695189Z [1634/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_at_kern_autogen.cpp.obj 2025-09-07T06:27:04.0318729Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.0319534Z [1635/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:04.0337399Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.0338231Z [1636/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:04.0465016Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.0465839Z [1637/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-09-07T06:27:04.0619347Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.0620167Z [1638/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_at_kern_autogen.cpp.obj 2025-09-07T06:27:04.0642432Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.0644343Z [1639/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_an_kern_autogen.cpp.obj 2025-09-07T06:27:04.0744074Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.0745454Z [1640/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx512_core_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-09-07T06:27:04.0919857Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.0921372Z [1641/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.1030269Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.6804653Z [1642/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.6805462Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.6806349Z [1643/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.6822434Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.6823275Z [1644/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.6910241Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.6911489Z [1645/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.6926870Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.6928085Z [1646/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.7008754Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.7010132Z [1647/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.7122740Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.7124010Z [1648/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_at_kern_autogen.cpp.obj 2025-09-07T06:27:04.7229489Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.7230315Z [1649/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_kernel_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:04.7386293Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:04.7387701Z [1650/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_an_kern_autogen.cpp.obj 2025-09-07T06:27:05.3012295Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3013727Z [1651/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:05.3077492Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3078850Z [1652/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_at_kern_autogen.cpp.obj 2025-09-07T06:27:05.3194169Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3194955Z [1653/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:05.3372985Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3377104Z [1654/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_an_kern_autogen.cpp.obj 2025-09-07T06:27:05.3498309Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3499169Z [1655/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:05.3516518Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3517763Z [1656/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-09-07T06:27:05.3534224Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3535418Z [1657/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_avx_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-09-07T06:27:05.3711610Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.3713043Z [1658/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:05.9291885Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.9292902Z [1659/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:05.9529712Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.9530542Z [1660/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:05.9586467Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.9587316Z [1661/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_b_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:05.9676927Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.9678156Z [1662/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:05.9697203Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.9698704Z [1663/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_r_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:05.9917059Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.9918287Z [1664/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_an_kern_autogen.cpp.obj 2025-09-07T06:27:05.9998669Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:05.9999930Z [1665/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_at_kern_autogen.cpp.obj 2025-09-07T06:27:06.0123608Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.0124870Z [1666/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_kernel_c_gemm_s8u8s32_kern_autogen.cpp.obj 2025-09-07T06:27:06.5249998Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.5251464Z [1667/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_bn_kern_autogen.cpp.obj 2025-09-07T06:27:06.5606872Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.5607735Z [1668/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_an_kern_autogen.cpp.obj 2025-09-07T06:27:06.5889062Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.5890491Z [1669/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_bt_kern_autogen.cpp.obj 2025-09-07T06:27:06.5960217Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.5961022Z [1670/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_at_kern_autogen.cpp.obj 2025-09-07T06:27:06.6029034Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.6030612Z [1671/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_bt_kern_autogen.cpp.obj 2025-09-07T06:27:06.6403614Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.6405170Z [1672/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\s8x8s32\jit_sse41_u8_copy_sum_bn_kern_autogen.cpp.obj 2025-09-07T06:27:06.7197330Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-09-07T06:27:06.7198094Z [1673/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-09-07T06:27:06.7269650Z [1674/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-09-07T06:27:07.1446484Z [1675/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-09-07T06:27:07.2231840Z [1676/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-09-07T06:27:07.2328187Z [1677/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-09-07T06:27:07.2372384Z [1678/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-09-07T06:27:07.2515779Z [1679/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-09-07T06:27:07.3262480Z [1680/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_conv_kernel_f32.cpp.obj 2025-09-07T06:27:07.4216829Z [1681/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-09-07T06:27:07.4470445Z [1682/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-09-07T06:27:07.8505260Z [1683/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-09-07T06:27:07.8988714Z [1684/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_conv_kernel.cpp.obj 2025-09-07T06:27:07.9173566Z [1685/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-09-07T06:27:07.9451742Z [1686/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-09-07T06:27:07.9475585Z [1687/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-09-07T06:27:07.9567622Z [1688/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_1x1_conv_kernel.cpp.obj 2025-09-07T06:27:08.1090191Z [1689/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_conv_kernel.cpp.obj 2025-09-07T06:27:08.1480750Z [1690/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_1x1_convolution.cpp.obj 2025-09-07T06:27:08.5717714Z [1691/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_1x1_conv_kernel.cpp.obj 2025-09-07T06:27:08.5830624Z [1692/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-09-07T06:27:08.5851443Z [1693/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-09-07T06:27:08.6322819Z [1694/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_1x1_convolution.cpp.obj 2025-09-07T06:27:08.6447883Z [1695/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_conv_kernel.cpp.obj 2025-09-07T06:27:08.6577945Z [1696/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-09-07T06:27:08.7611059Z [1697/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-09-07T06:27:08.7712007Z [1698/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_dw_conv_kernel.cpp.obj 2025-09-07T06:27:09.1905682Z [1699/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-09-07T06:27:09.2080150Z [1700/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-09-07T06:27:09.2604655Z [1701/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-09-07T06:27:09.3067980Z [1702/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_1x1_conv_kernel.cpp.obj 2025-09-07T06:27:09.3154026Z [1703/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_conv_kernel.cpp.obj 2025-09-07T06:27:09.3505858Z [1704/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_1x1_convolution.cpp.obj 2025-09-07T06:27:09.4518794Z [1705/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-09-07T06:27:09.4891163Z [1706/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-09-07T06:27:09.8509301Z [1707/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-09-07T06:27:09.9494688Z [1708/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-09-07T06:27:09.9615111Z [1709/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-09-07T06:27:10.0236269Z [1710/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-09-07T06:27:10.0448585Z [1711/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-09-07T06:27:10.0547300Z [1712/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_copy_kernel.cpp.obj 2025-09-07T06:27:10.1270613Z [1713/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_trans_kernel.cpp.obj 2025-09-07T06:27:10.1698347Z [1714/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-09-07T06:27:10.5544090Z [1715/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-09-07T06:27:10.6085367Z [1716/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_comp_pad_kernel.cpp.obj 2025-09-07T06:27:10.6637894Z [1717/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-09-07T06:27:10.7005293Z [1718/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-09-07T06:27:10.7322786Z [1719/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-09-07T06:27:10.7444659Z [1720/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-09-07T06:27:10.8294372Z [1721/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-09-07T06:27:10.8578131Z [1722/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-09-07T06:27:11.2197958Z [1723/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-09-07T06:27:11.2516597Z [1724/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-09-07T06:27:11.3116674Z [1725/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-09-07T06:27:11.3831811Z [1726/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-09-07T06:27:11.4177040Z [1727/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-09-07T06:27:11.4419141Z [1728/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-09-07T06:27:11.4444632Z [1729/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-09-07T06:27:11.5077756Z [1730/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_conv_kernel_f32.cpp.obj 2025-09-07T06:27:11.8905623Z [1731/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-09-07T06:27:11.9136211Z [1732/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-09-07T06:27:12.0266490Z [1733/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-09-07T06:27:12.0400331Z [1734/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-09-07T06:27:12.1101759Z [1735/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-09-07T06:27:12.1259074Z [1736/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-09-07T06:27:12.1362674Z [1737/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-09-07T06:27:12.1798486Z [1738/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-09-07T06:27:12.5341559Z [1739/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-09-07T06:27:12.5628424Z [1740/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_deconv_zp_pad_str_kernel.cpp.obj 2025-09-07T06:27:12.6788729Z [1741/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_conv_kernel_f32.cpp.obj 2025-09-07T06:27:12.7341763Z [1742/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_conv_kernel_utils.cpp.obj 2025-09-07T06:27:12.7932528Z [1743/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-09-07T06:27:12.7956778Z [1744/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-09-07T06:27:12.8201158Z [1745/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-09-07T06:27:12.8396119Z [1746/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-09-07T06:27:13.2445048Z [1747/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-09-07T06:27:13.2557638Z [1748/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-09-07T06:27:13.4011440Z [1749/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-09-07T06:27:13.4113379Z [1750/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-09-07T06:27:13.4884842Z [1751/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-09-07T06:27:13.4952441Z [1752/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-09-07T06:27:13.5159984Z [1753/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-09-07T06:27:13.5305503Z [1754/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-09-07T06:27:13.9029223Z [1755/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-09-07T06:27:13.9245646Z [1756/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-09-07T06:27:14.0346293Z [1757/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-09-07T06:27:14.1096523Z [1758/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-09-07T06:27:14.1714294Z [1759/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-09-07T06:27:14.1899448Z [1760/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-09-07T06:27:14.2009918Z [1761/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-09-07T06:27:14.2161958Z [1762/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_conv_kernel.cpp.obj 2025-09-07T06:27:14.5854125Z [1763/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-09-07T06:27:14.6060286Z [1764/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-09-07T06:27:14.7153597Z [1765/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-09-07T06:27:14.8141955Z [1766/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_base.cpp.obj 2025-09-07T06:27:14.8302869Z [1767/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-09-07T06:27:14.8374417Z [1768/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-09-07T06:27:14.8578381Z [1769/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_blocked.cpp.obj 2025-09-07T06:27:14.9000813Z [1770/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-09-07T06:27:15.2156851Z [1771/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_bwd_nhwc.cpp.obj 2025-09-07T06:27:15.2474237Z [1772/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_base.cpp.obj 2025-09-07T06:27:15.4384438Z [1773/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_nhwc.cpp.obj 2025-09-07T06:27:15.4873823Z [1774/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-09-07T06:27:15.4993808Z [1775/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn_fwd_blocked.cpp.obj 2025-09-07T06:27:15.5109639Z [1776/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-09-07T06:27:15.5566113Z [1777/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-09-07T06:27:15.5658938Z [1778/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-09-07T06:27:15.8621982Z [1779/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-09-07T06:27:15.8734119Z [1780/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-09-07T06:27:16.0916579Z [1781/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-09-07T06:27:16.1539001Z [1782/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-09-07T06:27:16.1623261Z [1783/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-09-07T06:27:16.1831165Z [1784/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-09-07T06:27:16.1967856Z [1785/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-09-07T06:27:16.2021828Z [1786/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-09-07T06:27:16.5279076Z [1787/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_uni_prelu_backward_kernel.cpp.obj 2025-09-07T06:27:16.5398590Z [1788/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_uni_prelu_forward_kernel.cpp.obj 2025-09-07T06:27:16.7052100Z [1789/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-09-07T06:27:16.7978199Z [1790/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-09-07T06:27:16.8197095Z [1791/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-09-07T06:27:16.8391073Z [1792/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-09-07T06:27:16.8536712Z [1793/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_brgemm_transpose_single_row.cpp.obj 2025-09-07T06:27:16.8597645Z [1794/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-09-07T06:27:17.1772748Z [1795/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-09-07T06:27:17.2354463Z [1796/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-09-07T06:27:17.4020627Z [1797/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-09-07T06:27:17.4203541Z [1798/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-09-07T06:27:17.4461926Z [1799/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-09-07T06:27:17.4481096Z [1800/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-09-07T06:27:17.4832505Z [1801/7565] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-09-07T06:27:17.5004945Z [1802/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-09-07T06:27:17.8501879Z [1803/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-09-07T06:27:17.9219075Z [1804/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-09-07T06:27:17.9716394Z [1805/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-09-07T06:27:17.9735019Z [1806/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-09-07T06:27:18.0246084Z [1807/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-09-07T06:27:18.0978867Z [1808/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-09-07T06:27:18.1107751Z [1809/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-09-07T06:27:18.1215668Z [1810/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-09-07T06:27:18.4995805Z [1811/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-09-07T06:27:18.5071483Z [1812/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-09-07T06:27:18.5356750Z [1813/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-09-07T06:27:18.5429529Z [1814/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-09-07T06:27:18.6976140Z [1815/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-09-07T06:27:18.7596533Z [1816/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-09-07T06:27:18.8515889Z [1817/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-09-07T06:27:18.8792215Z [1818/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-09-07T06:27:19.1275753Z [1819/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-09-07T06:27:19.1563248Z [1820/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-09-07T06:27:19.1823195Z [1821/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-09-07T06:27:19.2240573Z [1822/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-09-07T06:27:19.3744415Z [1823/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-09-07T06:27:19.3830167Z [1824/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-09-07T06:27:19.5562010Z [1825/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-09-07T06:27:19.7400927Z [1826/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-09-07T06:27:19.7907994Z [1827/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-09-07T06:27:19.8246904Z [1828/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-09-07T06:27:19.8474062Z [1829/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-09-07T06:27:19.9131405Z [1830/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-09-07T06:27:20.0383590Z [1831/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-09-07T06:27:20.0491949Z [1832/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-09-07T06:27:20.2182982Z [1833/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-09-07T06:27:20.4274552Z [1834/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-09-07T06:27:20.4759975Z [1835/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-09-07T06:27:20.5205727Z [1836/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-09-07T06:27:20.5308496Z [1837/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-09-07T06:27:20.6202877Z [1838/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-09-07T06:27:20.7301349Z [1839/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-09-07T06:27:20.7399258Z [1840/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-09-07T06:27:20.9243076Z [1841/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-09-07T06:27:21.1000443Z [1842/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp_config.cpp.obj 2025-09-07T06:27:21.1666694Z [1843/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-09-07T06:27:21.2055768Z [1844/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-09-07T06:27:21.2367749Z [1845/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-09-07T06:27:21.3426263Z [1846/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-09-07T06:27:21.4346692Z [1847/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-09-07T06:27:21.4376365Z [1848/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-09-07T06:27:21.5924216Z [1849/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-09-07T06:27:21.7688651Z [1850/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp_config.cpp.obj 2025-09-07T06:27:21.8689612Z [1851/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-09-07T06:27:21.8971436Z [1852/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive_config.cpp.obj 2025-09-07T06:27:21.9361588Z [1853/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-09-07T06:27:22.0479095Z [1854/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-09-07T06:27:22.1365316Z [1855/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-09-07T06:27:22.1722471Z [1856/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-09-07T06:27:22.2697926Z [1857/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-09-07T06:27:22.4577267Z [1858/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-09-07T06:27:22.5332397Z [1859/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-09-07T06:27:22.5765680Z [1860/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-09-07T06:27:22.6048944Z [1861/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-09-07T06:27:22.7156903Z [1862/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-09-07T06:27:22.8533549Z [1863/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-09-07T06:27:22.8681858Z [1864/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-09-07T06:27:22.9713116Z [1865/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-09-07T06:27:23.1473265Z [1866/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-09-07T06:27:23.2400373Z [1867/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-09-07T06:27:23.2540245Z [1868/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\conv_block_fusion.cpp.obj 2025-09-07T06:27:23.2889304Z [1869/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\conv_post_ops.cpp.obj 2025-09-07T06:27:23.3916687Z [1870/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-09-07T06:27:23.6115757Z [1871/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-09-07T06:27:23.6732960Z [1872/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-09-07T06:27:23.7144938Z [1873/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-09-07T06:27:23.8681427Z [1874/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-09-07T06:27:23.9562541Z [1875/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\matmul_post_ops.cpp.obj 2025-09-07T06:27:23.9774650Z [1876/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\pool_post_ops.cpp.obj 2025-09-07T06:27:24.0062678Z [1877/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-09-07T06:27:24.0581147Z [1878/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-09-07T06:27:24.2846740Z [1879/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-09-07T06:27:24.3668314Z [1880/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-09-07T06:27:24.3776712Z [1881/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-09-07T06:27:24.4367628Z [1882/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-09-07T06:27:24.4475675Z [1883/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-09-07T06:27:24.4706414Z [1884/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-09-07T06:27:24.4933962Z [1885/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-09-07T06:27:24.5496836Z [1886/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-09-07T06:27:24.6724442Z [1887/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\single_op_pattern.cpp.obj 2025-09-07T06:27:24.6952559Z [1888/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\softmax_post_ops.cpp.obj 2025-09-07T06:27:24.7270138Z [1889/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-09-07T06:27:25.0911588Z [1890/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-09-07T06:27:25.1277786Z [1891/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-09-07T06:27:25.1585602Z [1892/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-09-07T06:27:25.1769987Z [1893/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-09-07T06:27:25.2179738Z [1894/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-09-07T06:27:25.2358775Z [1895/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-09-07T06:27:25.2517020Z [1896/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-09-07T06:27:25.2518502Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-09-07T06:27:25.2519781Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-09-07T06:27:25.2888737Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-09-07T06:27:25.2890571Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): note: 'NOGDI' previously declared on the command line 2025-09-07T06:27:25.2892738Z [1897/7565] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-09-07T06:27:25.5832766Z [1898/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerConfig.cpp.obj 2025-09-07T06:27:25.6300834Z [1899/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiNvPerfMetric.cpp.obj 2025-09-07T06:27:25.7450556Z [1900/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfiler.cpp.obj 2025-09-07T06:27:25.7556381Z [1901/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-09-07T06:27:25.8873160Z [1902/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-09-07T06:27:25.9746302Z [1903/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiCallbackApi.cpp.obj 2025-09-07T06:27:25.9960260Z [1904/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\KernelRegistry.cpp.obj 2025-09-07T06:27:26.0188389Z [1905/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerApi.cpp.obj 2025-09-07T06:27:26.0470448Z [1906/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiMetricApi.cpp.obj 2025-09-07T06:27:26.0731648Z [1907/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiEventApi.cpp.obj 2025-09-07T06:27:26.0839718Z [1908/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\WeakSymbols.cpp.obj 2025-09-07T06:27:26.1965039Z [1909/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfiler.cpp.obj 2025-09-07T06:27:26.1967934Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\numeric(33): warning C4244: '=': conversion from '_Ty' to '_Ty', possible loss of data 2025-09-07T06:27:26.1969963Z with 2025-09-07T06:27:26.1970258Z [ 2025-09-07T06:27:26.1970528Z _Ty=int64_t 2025-09-07T06:27:26.1970837Z ] 2025-09-07T06:27:26.1971099Z and 2025-09-07T06:27:26.1971417Z [ 2025-09-07T06:27:26.1971722Z _Ty=unsigned long 2025-09-07T06:27:26.1972531Z ] 2025-09-07T06:27:26.1973363Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\numeric(33): note: the template instantiation context (the oldest one first) is 2025-09-07T06:27:26.2551527Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\EventProfiler.cpp(67): note: see reference to function template instantiation '_Ty std::accumulate>,std::vector>>>>>,unsigned long,libkineto::Event::sumInstance::>(const _InIt,const _InIt,_Ty,_Fn)' being compiled 2025-09-07T06:27:26.2555411Z with 2025-09-07T06:27:26.2555720Z [ 2025-09-07T06:27:26.2556020Z _Ty=unsigned long, 2025-09-07T06:27:26.2556736Z _InIt=std::_List_const_iterator>>, 2025-09-07T06:27:26.2558242Z _Fn=libkineto::Event::sumInstance:: 2025-09-07T06:27:26.2558949Z ] 2025-09-07T06:27:26.2559541Z [1910/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfilerController.cpp.obj 2025-09-07T06:27:26.2720824Z [1911/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\cupti_strings.cpp.obj 2025-09-07T06:27:26.3229843Z [1912/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-09-07T06:27:26.3398627Z [1913/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ApproximateClock.cpp.obj 2025-09-07T06:27:26.3948747Z [1914/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-09-07T06:27:26.4955638Z [1915/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-09-07T06:27:26.5803265Z [1916/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-09-07T06:27:26.6244198Z [1917/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-09-07T06:27:26.6920056Z [1918/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-09-07T06:27:29.0145936Z [1919/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-09-07T06:27:29.0163488Z [1920/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-09-07T06:27:29.0259344Z [1921/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-09-07T06:27:29.0325985Z [1922/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-09-07T06:27:29.0511291Z [1923/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-09-07T06:27:29.0616648Z [1924/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-09-07T06:27:29.0727220Z [1925/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-09-07T06:27:29.0819616Z [1926/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-09-07T06:27:29.1986676Z [1927/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.2067155Z [1928/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.2480455Z [1929/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-09-07T06:27:29.3083363Z [1930/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.3357493Z [1931/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.3662596Z [1932/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.3980672Z [1933/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-09-07T06:27:29.4053113Z [1934/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-09-07T06:27:29.4303525Z [1935/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.4460782Z [1936/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.4718229Z [1937/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.5202690Z [1938/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.5405426Z [1939/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.5494129Z [1940/7565] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-09-07T06:27:29.5699974Z [1941/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.5857150Z [1942/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.5965471Z [1943/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.6278593Z [1944/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.6398367Z [1945/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.6639812Z [1946/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.7046712Z [1947/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.7099539Z [1948/7565] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.7372064Z [1949/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.7468203Z [1950/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.7480281Z [1951/7565] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.7840705Z [1952/7565] Linking CXX shared library bin\c10.dll 2025-09-07T06:27:29.7855060Z [1953/7565] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.8047407Z [1954/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.8234386Z [1955/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.8510324Z [1956/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.8576086Z [1957/7565] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.8646042Z [1958/7565] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.8916461Z [1959/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.9059301Z [1960/7565] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.9254631Z [1961/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.9371034Z [1962/7565] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.9625369Z [1963/7565] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.9688153Z [1964/7565] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.9704614Z [1965/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-09-07T06:27:29.9863155Z [1966/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-09-07T06:27:29.9965377Z [1967/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-09-07T06:27:30.0216009Z [1968/7565] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-09-07T06:27:30.0413955Z [1969/7565] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-09-07T06:27:30.0475009Z [1970/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-09-07T06:27:30.0489039Z [1971/7565] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-09-07T06:27:30.0545956Z [1972/7565] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-09-07T06:27:30.1185289Z [1973/7565] Linking CXX static library lib\XNNPACK.lib 2025-09-07T06:27:30.1379041Z [1974/7565] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-09-07T06:27:30.1508528Z [1975/7565] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-09-07T06:27:30.1524160Z [1976/7565] Linking C static library lib\libittnotify.lib 2025-09-07T06:27:30.1577889Z [1977/7565] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-09-07T06:27:30.1674533Z [1978/7565] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-09-07T06:27:30.2029729Z [1979/7565] Linking CXX static library lib\gloo.lib 2025-09-07T06:27:30.2867854Z [1980/7565] Building CXX object caffe2\perfkernels\CMakeFiles\Caffe2_perfkernels_avx2.dir\common_avx2.cc.obj 2025-09-07T06:27:30.3056022Z [1981/7565] Building CXX object caffe2\perfkernels\CMakeFiles\Caffe2_perfkernels_avx2.dir\embedding_lookup_idx_avx2.cc.obj 2025-09-07T06:27:30.5625894Z [1982/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_local.cc.obj 2025-09-07T06:27:30.6087700Z [1983/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring.cc.obj 2025-09-07T06:27:30.6237747Z [1984/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_bcube.cc.obj 2025-09-07T06:27:30.6239810Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-09-07T06:27:30.6242062Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-09-07T06:27:30.6244126Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(508): note: see reference to class template instantiation 'gloo::CudaAllreduceBcube>' being compiled 2025-09-07T06:27:30.6245924Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(296): note: while compiling class template member function 'void gloo::CudaAllreduceBcube>::createNodes(void)' 2025-09-07T06:27:30.6248727Z C:\actions-runner\_work\pytorch\pytorch\third_party\gloo\gloo\cuda_allreduce_bcube.cc(298): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(int &,const size_t &)' being compiled 2025-09-07T06:27:30.6250334Z with 2025-09-07T06:27:30.6250641Z [ 2025-09-07T06:27:30.6250939Z _Ty=gloo::cuda::bcube::Node 2025-09-07T06:27:30.6251273Z ] 2025-09-07T06:27:30.6252579Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(int &,const size_t &)' being compiled 2025-09-07T06:27:30.6254487Z with 2025-09-07T06:27:30.6254771Z [ 2025-09-07T06:27:30.6254970Z _Ty=gloo::cuda::bcube::Node 2025-09-07T06:27:30.6255293Z ] 2025-09-07T06:27:30.6257647Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(int &,const size_t &)' being compiled 2025-09-07T06:27:30.6260062Z with 2025-09-07T06:27:30.6260386Z [ 2025-09-07T06:27:30.6260752Z _Ty=gloo::cuda::bcube::Node 2025-09-07T06:27:30.6261228Z ] 2025-09-07T06:27:30.6325175Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(794): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,int&,const size_t&>(_Alloc &,_Objty *const ,int &,const size_t &)' being compiled 2025-09-07T06:27:30.6327517Z with 2025-09-07T06:27:30.6327819Z [ 2025-09-07T06:27:30.6328081Z _Alloc=std::allocator, 2025-09-07T06:27:30.6328803Z _Ty=gloo::cuda::bcube::Node, 2025-09-07T06:27:30.6329090Z _Objty=gloo::cuda::bcube::Node 2025-09-07T06:27:30.6329755Z ] 2025-09-07T06:27:30.6888276Z [1985/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_halving_doubling.cc.obj 2025-09-07T06:27:30.6889135Z [1986/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring_chunked.cc.obj 2025-09-07T06:27:30.7074330Z [1987/7565] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_broadcast_one_to_all.cc.obj 2025-09-07T06:27:30.9494894Z [1988/7565] Linking CXX static library lib\kineto.lib 2025-09-07T06:27:31.1316940Z [1989/7565] Linking CXX static library lib\onnx.lib 2025-09-07T06:27:31.1447389Z [1990/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAAllocatorConfig.cpp.obj 2025-09-07T06:27:31.2223700Z [1991/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDACachingAllocator.cpp.obj 2025-09-07T06:27:31.4053422Z [1992/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDADeviceAssertionHost.cpp.obj 2025-09-07T06:27:31.5077470Z [1993/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAException.cpp.obj 2025-09-07T06:27:31.6120005Z [1994/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAFunctions.cpp.obj 2025-09-07T06:27:31.6895418Z [1995/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMiscFunctions.cpp.obj 2025-09-07T06:27:31.7169423Z [1996/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMallocAsyncAllocator.cpp.obj 2025-09-07T06:27:31.7972154Z [1997/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\driver_api.cpp.obj 2025-09-07T06:27:31.7995172Z [1998/7565] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda.cu.obj 2025-09-07T06:27:31.8448675Z cuda.cu 2025-09-07T06:27:31.8449133Z tmpxft_0000148c_00000000-7_cuda.cudafe1.cpp 2025-09-07T06:27:31.8450009Z [1999/7565] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_private.cu.obj 2025-09-07T06:27:31.8495440Z cuda_private.cu 2025-09-07T06:27:31.8495894Z tmpxft_00000f8c_00000000-7_cuda_private.cudafe1.cpp 2025-09-07T06:27:31.8496617Z [2000/7565] Linking CXX static library lib\Caffe2_perfkernels_avx2.lib 2025-09-07T06:27:31.8836570Z [2001/7565] Linking C static library sleef\lib\sleef.lib 2025-09-07T06:27:31.9949923Z [2002/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAStream.cpp.obj 2025-09-07T06:27:32.0350942Z [2003/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDAGuardImpl.cpp.obj 2025-09-07T06:27:32.0670578Z [2004/7565] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDATest.cpp.obj 2025-09-07T06:27:32.1075232Z [2005/7565] Linking CXX static library lib\gloo_cuda.lib 2025-09-07T06:27:32.2221872Z [2006/7565] Generating C:/actions-runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-09-07T06:27:32.2928347Z [2007/7565] Linking CXX shared library bin\c10_cuda.dll 2025-09-07T06:27:32.3567989Z [2008/7565] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-09-07T06:27:32.4191517Z [2009/7565] Linking CXX static library lib\gtest.lib 2025-09-07T06:27:32.5371732Z [2010/7565] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-09-07T06:27:32.5727420Z [2011/7565] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-09-07T06:27:32.7022108Z [2012/7565] Regenerating version file... 2025-09-07T06:27:32.8201680Z [2013/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-09-07T06:27:33.0458943Z [2014/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-09-07T06:27:33.8786024Z [2015/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\check.cc.obj 2025-09-07T06:27:33.8804982Z [2016/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-09-07T06:27:33.8860998Z [2017/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-09-07T06:27:33.8877868Z [2018/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-09-07T06:27:34.3169784Z [2019/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-09-07T06:27:34.3822649Z [2020/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-09-07T06:27:34.3874445Z [2021/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-09-07T06:27:34.4068315Z [2022/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-09-07T06:27:34.5430934Z [2023/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-09-07T06:27:34.8419999Z [2024/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-09-07T06:27:34.8741671Z [2025/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-09-07T06:27:34.9520303Z [2026/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-09-07T06:27:35.0409412Z [2027/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-09-07T06:27:35.3458882Z [2028/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-09-07T06:27:35.5889791Z [2029/7565] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-09-07T06:27:35.6052209Z [2030/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-09-07T06:27:35.7929133Z [2031/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-09-07T06:27:35.9519351Z [2032/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-09-07T06:27:35.9592084Z [2033/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-09-07T06:27:36.0196004Z [2034/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-09-07T06:27:36.1380091Z [2035/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-09-07T06:27:36.2687531Z [2036/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-09-07T06:27:36.2791594Z [2037/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-09-07T06:27:36.3254447Z [2038/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-09-07T06:27:36.3340413Z [2039/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-09-07T06:27:36.3911010Z [2040/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-09-07T06:27:36.5026365Z [2041/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-09-07T06:27:36.7702180Z [2042/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-09-07T06:27:37.0446977Z [2043/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-09-07T06:27:37.1345201Z [2044/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-09-07T06:27:37.1366956Z [2045/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-09-07T06:27:37.1388866Z [2046/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-09-07T06:27:37.1453109Z [2047/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-09-07T06:27:37.2003488Z [2048/7565] Linking CXX static library lib\dnnl.lib 2025-09-07T06:27:37.3066969Z [2049/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-09-07T06:27:37.4059769Z [2050/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-09-07T06:27:37.4129180Z [2051/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-09-07T06:27:37.4143973Z [2052/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-09-07T06:27:37.4555172Z [2053/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-09-07T06:27:37.5504646Z [2054/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-09-07T06:27:37.5521310Z [2055/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-09-07T06:27:37.5621946Z [2056/7565] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-09-07T06:27:37.6578815Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-09-07T06:27:37.6579286Z 2025-09-07T06:27:37.6579292Z 2025-09-07T06:27:37.6579548Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-09-07T06:27:37.6579844Z 2025-09-07T06:27:37.6579851Z 2025-09-07T06:27:37.6579858Z 2025-09-07T06:27:37.6579864Z 2025-09-07T06:27:37.6580359Z [2057/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-09-07T06:27:37.6654445Z [2058/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-09-07T06:27:37.7182968Z [2059/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-09-07T06:27:37.7454566Z [2060/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-09-07T06:27:37.8343557Z [2061/7565] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-09-07T06:27:37.8552158Z [2062/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-09-07T06:27:37.8889006Z [2063/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-09-07T06:27:37.9025853Z [2064/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-09-07T06:27:37.9236842Z [2065/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-09-07T06:27:37.9566436Z [2066/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-09-07T06:27:37.9973285Z [2067/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-09-07T06:27:38.0057583Z [2068/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-09-07T06:27:38.0164236Z [2069/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-09-07T06:27:38.0180025Z [2070/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-09-07T06:27:38.0524194Z [2071/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-09-07T06:27:38.0536632Z [2072/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-09-07T06:27:38.0749317Z [2073/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-09-07T06:27:38.0902928Z [2074/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-09-07T06:27:38.1138429Z [2075/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-09-07T06:27:38.1665867Z [2076/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-09-07T06:27:38.1727485Z [2077/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-09-07T06:27:38.1913855Z [2078/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-09-07T06:27:38.2094270Z [2079/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-09-07T06:27:38.2238665Z [2080/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-09-07T06:27:38.2816803Z [2081/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-09-07T06:27:38.2879879Z [2082/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-09-07T06:27:38.3009303Z [2083/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-09-07T06:27:38.3168200Z [2084/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-09-07T06:27:38.3373337Z [2085/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-09-07T06:27:38.3485020Z [2086/7565] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-09-07T06:27:38.3956435Z [2087/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-09-07T06:27:38.4037124Z [2088/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-09-07T06:27:38.4163969Z [2089/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-09-07T06:27:38.4288323Z [2090/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-09-07T06:27:38.4514866Z [2091/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-09-07T06:27:38.4647070Z [2092/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-09-07T06:27:38.5087030Z [2093/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-09-07T06:27:38.5215418Z [2094/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-09-07T06:27:38.5284215Z [2095/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-09-07T06:27:38.5416596Z [2096/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-09-07T06:27:38.5618389Z [2097/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-09-07T06:27:38.5819295Z [2098/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-09-07T06:27:38.6280993Z [2099/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-09-07T06:27:38.6331166Z [2100/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-09-07T06:27:38.6406665Z [2101/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-09-07T06:27:38.6469991Z [2102/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-09-07T06:27:38.6935996Z [2103/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-09-07T06:27:38.7087909Z [2104/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-09-07T06:27:38.7604679Z [2105/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-09-07T06:27:38.7665117Z [2106/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-09-07T06:27:38.7782832Z [2107/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-09-07T06:27:38.7841273Z [2108/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-09-07T06:27:38.8191003Z [2109/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-09-07T06:27:38.8362018Z [2110/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-09-07T06:27:38.8921752Z [2111/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-09-07T06:27:38.8978096Z [2112/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-09-07T06:27:38.9064364Z [2113/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-09-07T06:27:38.9141313Z [2114/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-09-07T06:27:38.9434395Z [2115/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-09-07T06:27:38.9835165Z [2116/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-09-07T06:27:39.0143388Z [2117/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-09-07T06:27:39.0263267Z [2118/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-09-07T06:27:39.0320588Z [2119/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-09-07T06:27:39.0387648Z [2120/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-09-07T06:27:39.0787716Z [2121/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-09-07T06:27:39.1108884Z [2122/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-09-07T06:27:39.1346521Z [2123/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-09-07T06:27:39.1551613Z [2124/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-09-07T06:27:39.1608385Z [2125/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-09-07T06:27:39.1757757Z [2126/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-09-07T06:27:39.2062207Z [2127/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-09-07T06:27:39.2407140Z [2128/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-09-07T06:27:39.2577310Z [2129/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-09-07T06:27:39.2810416Z [2130/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-09-07T06:27:39.2823594Z [2131/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-09-07T06:27:39.3024854Z [2132/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-09-07T06:27:39.3337068Z [2133/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-09-07T06:27:39.3719494Z [2134/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-09-07T06:27:39.3955249Z [2135/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-09-07T06:27:39.4127439Z [2136/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-09-07T06:27:39.4185973Z [2137/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-09-07T06:27:39.4401384Z [2138/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-09-07T06:27:39.4685837Z [2139/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-09-07T06:27:39.5017506Z [2140/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-09-07T06:27:39.5266084Z [2141/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-09-07T06:27:39.5461900Z [2142/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-09-07T06:27:39.5520241Z [2143/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-09-07T06:27:39.5689060Z [2144/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-09-07T06:27:39.5980276Z [2145/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-09-07T06:27:39.6302020Z [2146/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-09-07T06:27:39.6485791Z [2147/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-09-07T06:27:39.6775656Z [2148/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-09-07T06:27:39.6887321Z [2149/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.obj 2025-09-07T06:27:39.6956263Z [2150/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.obj 2025-09-07T06:27:39.7294924Z [2151/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.obj 2025-09-07T06:27:39.7655555Z [2152/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.obj 2025-09-07T06:27:39.7836690Z [2153/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.obj 2025-09-07T06:27:39.8069097Z [2154/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.obj 2025-09-07T06:27:39.8141147Z [2155/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.obj 2025-09-07T06:27:39.8229908Z [2156/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.obj 2025-09-07T06:27:39.8532562Z [2157/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.obj 2025-09-07T06:27:39.8919493Z [2158/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.obj 2025-09-07T06:27:39.8998580Z [2159/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.obj 2025-09-07T06:27:39.9360012Z [2160/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.obj 2025-09-07T06:27:39.9415353Z [2161/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.obj 2025-09-07T06:27:39.9480573Z [2162/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.obj 2025-09-07T06:27:39.9781389Z [2163/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.obj 2025-09-07T06:27:40.0209665Z [2164/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.obj 2025-09-07T06:27:40.0296990Z [2165/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.obj 2025-09-07T06:27:40.0586391Z [2166/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.obj 2025-09-07T06:27:40.0737793Z [2167/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.obj 2025-09-07T06:27:40.0797342Z [2168/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.obj 2025-09-07T06:27:40.1068959Z [2169/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.obj 2025-09-07T06:27:40.1641270Z [2170/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.obj 2025-09-07T06:27:40.1697152Z [2171/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.obj 2025-09-07T06:27:40.1879982Z [2172/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.obj 2025-09-07T06:27:40.2105109Z [2173/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.obj 2025-09-07T06:27:40.2119204Z [2174/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.obj 2025-09-07T06:27:40.2344500Z [2175/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.obj 2025-09-07T06:27:40.2875300Z [2176/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.obj 2025-09-07T06:27:40.2980003Z [2177/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.obj 2025-09-07T06:27:40.3140699Z [2178/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.obj 2025-09-07T06:27:40.3247389Z [2179/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-09-07T06:27:40.3304791Z [2180/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-09-07T06:27:40.3553216Z [2181/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-09-07T06:27:40.4103195Z [2182/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-09-07T06:27:40.4159345Z [2183/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-09-07T06:27:40.4348028Z [2184/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-09-07T06:27:40.4663715Z [2185/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-09-07T06:27:40.4734429Z [2186/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-09-07T06:27:40.4944695Z [2187/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-09-07T06:27:40.5160069Z [2188/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-09-07T06:27:40.5388195Z [2189/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-09-07T06:27:40.5575171Z [2190/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-09-07T06:27:40.5712605Z [2191/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-09-07T06:27:40.5765266Z [2192/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-09-07T06:27:40.6160836Z [2193/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-09-07T06:27:40.6217813Z [2194/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:40.6511109Z [2195/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-09-07T06:27:40.6655446Z [2196/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-09-07T06:27:40.6751796Z [2197/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-09-07T06:27:40.7126256Z [2198/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:40.7533566Z [2199/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-09-07T06:27:40.7625817Z [2200/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-09-07T06:27:40.7870237Z [2201/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-09-07T06:27:40.8050167Z [2202/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:40.8113548Z [2203/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-09-07T06:27:40.8610903Z [2204/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-09-07T06:27:40.8990953Z [2205/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-09-07T06:27:40.9084156Z [2206/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-09-07T06:27:40.9288092Z [2207/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-09-07T06:27:40.9471451Z [2208/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-09-07T06:27:40.9522877Z [2209/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-09-07T06:27:40.9707782Z [2210/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-09-07T06:27:41.0101184Z [2211/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-09-07T06:27:41.0278389Z [2212/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-09-07T06:27:41.0395294Z [2213/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-09-07T06:27:41.0523858Z [2214/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-09-07T06:27:41.0677228Z [2215/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-09-07T06:27:41.0840900Z [2216/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-09-07T06:27:41.1254707Z [2217/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-09-07T06:27:41.1390770Z [2218/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-09-07T06:27:41.1465576Z [2219/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-09-07T06:27:41.1676861Z [2220/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-09-07T06:27:41.1870045Z [2221/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-09-07T06:27:41.2027584Z [2222/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-09-07T06:27:41.2407223Z [2223/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-09-07T06:27:41.2610481Z [2224/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-09-07T06:27:41.2626888Z [2225/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-09-07T06:27:41.2784566Z [2226/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-09-07T06:27:41.2972992Z [2227/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-09-07T06:27:41.3112264Z [2228/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-09-07T06:27:41.3548722Z [2229/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-09-07T06:27:41.3748497Z [2230/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-09-07T06:27:41.3834475Z [2231/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-09-07T06:27:41.4034822Z [2232/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-09-07T06:27:41.4046698Z [2233/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-09-07T06:27:41.4204931Z [2234/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-09-07T06:27:41.4645505Z [2235/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2-acc2.c.obj 2025-09-07T06:27:41.4827284Z [2236/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc2.c.obj 2025-09-07T06:27:41.4919838Z [2237/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc4.c.obj 2025-09-07T06:27:41.5322153Z [2238/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-09-07T06:27:41.5339236Z [2239/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-09-07T06:27:41.5474426Z [2240/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-09-07T06:27:41.5842963Z [2241/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-09-07T06:27:41.5936880Z [2242/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-09-07T06:27:41.6030948Z [2243/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-09-07T06:27:41.6390841Z [2244/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-09-07T06:27:41.6440750Z [2245/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-09-07T06:27:41.6557848Z [2246/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-09-07T06:27:41.6950511Z [2247/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-09-07T06:27:41.7098305Z [2248/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-09-07T06:27:41.7163723Z [2249/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-09-07T06:27:41.7510351Z [2250/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-09-07T06:27:41.7620358Z [2251/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-09-07T06:27:41.7636108Z [2252/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-09-07T06:27:41.8033575Z [2253/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-09-07T06:27:41.8277400Z [2254/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-09-07T06:27:41.8295217Z [2255/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-09-07T06:27:41.8625555Z [2256/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-09-07T06:27:41.8868529Z [2257/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-09-07T06:27:41.8966067Z [2258/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-09-07T06:27:41.9136191Z [2259/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-09-07T06:27:41.9308670Z [2260/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-09-07T06:27:41.9362509Z [2261/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-09-07T06:27:41.9712346Z [2262/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-09-07T06:27:42.0000115Z [2263/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-09-07T06:27:42.0013164Z [2264/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-09-07T06:27:42.0383421Z [2265/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-09-07T06:27:42.0441732Z [2266/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-09-07T06:27:42.0587105Z [2267/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-09-07T06:27:42.0942279Z [2268/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-09-07T06:27:42.1251959Z [2269/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-09-07T06:27:42.1315612Z [2270/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-09-07T06:27:42.1617331Z [2271/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-09-07T06:27:42.1698360Z [2272/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-09-07T06:27:42.1839296Z [2273/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-09-07T06:27:42.2217394Z [2274/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-09-07T06:27:42.2451131Z [2275/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-09-07T06:27:42.2520795Z [2276/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-09-07T06:27:42.2887888Z [2277/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-09-07T06:27:42.2901157Z [2278/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-09-07T06:27:42.3078330Z [2279/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-09-07T06:27:42.3373803Z [2280/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-09-07T06:27:42.3650866Z [2281/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-09-07T06:27:42.3762761Z [2282/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-09-07T06:27:42.4033032Z [2283/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-09-07T06:27:42.4097147Z [2284/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-09-07T06:27:42.4341081Z [2285/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-09-07T06:27:42.4617059Z [2286/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-09-07T06:27:42.4887309Z [2287/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-09-07T06:27:42.5010351Z [2288/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-09-07T06:27:42.5209708Z [2289/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-09-07T06:27:42.5330579Z [2290/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-09-07T06:27:42.5538304Z [2291/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-09-07T06:27:42.5811793Z [2292/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-09-07T06:27:42.6067019Z [2293/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-09-07T06:27:42.6237277Z [2294/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-09-07T06:27:42.6385662Z [2295/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-09-07T06:27:42.6615033Z [2296/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-09-07T06:27:42.6726199Z [2297/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-09-07T06:27:42.7004877Z [2298/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-09-07T06:27:42.7286009Z [2299/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-09-07T06:27:42.7457323Z [2300/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-09-07T06:27:42.7624681Z [2301/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-09-07T06:27:42.7819297Z [2302/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-09-07T06:27:42.7925710Z [2303/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-09-07T06:27:42.8208818Z [2304/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-09-07T06:27:42.8465119Z [2305/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-09-07T06:27:42.8645195Z [2306/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-09-07T06:27:42.8876169Z [2307/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-09-07T06:27:42.8971687Z [2308/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-09-07T06:27:42.9193326Z [2309/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-09-07T06:27:42.9370738Z [2310/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-09-07T06:27:42.9696261Z [2311/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-09-07T06:27:42.9961967Z [2312/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-09-07T06:27:43.0113967Z [2313/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-09-07T06:27:43.0176145Z [2314/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-09-07T06:27:43.0416386Z [2315/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-09-07T06:27:43.0613425Z [2316/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-09-07T06:27:43.0962753Z [2317/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-09-07T06:27:43.1153708Z [2318/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-09-07T06:27:43.1326760Z [2319/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-09-07T06:27:43.1395307Z [2320/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-09-07T06:27:43.1626599Z [2321/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-09-07T06:27:43.1803730Z [2322/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-09-07T06:27:43.2186983Z [2323/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-09-07T06:27:43.2342308Z [2324/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-09-07T06:27:43.2472038Z [2325/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-09-07T06:27:43.2587352Z [2326/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-09-07T06:27:43.2894707Z [2327/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-09-07T06:27:43.3051820Z [2328/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-09-07T06:27:43.3443314Z [2329/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-09-07T06:27:43.3559359Z [2330/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-09-07T06:27:43.3798105Z [2331/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-09-07T06:27:43.3816261Z [2332/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-09-07T06:27:43.4227677Z [2333/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-09-07T06:27:43.4392331Z [2334/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-09-07T06:27:43.4703053Z [2335/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-09-07T06:27:43.4859636Z [2336/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-09-07T06:27:43.4997759Z [2337/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-09-07T06:27:43.5086993Z [2338/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-09-07T06:27:43.5225855Z [2339/7565] Generating C:/actions-runner/_work/pytorch/pytorch/torch/_C/__init__.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/_C/_VariableFunctions.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/nn/functional.pyi 2025-09-07T06:27:43.5469018Z [2340/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-09-07T06:27:43.5887755Z [2341/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-09-07T06:27:43.6092099Z [2342/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-09-07T06:27:43.6156858Z [2343/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-09-07T06:27:43.6326492Z [2344/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-09-07T06:27:43.6403077Z [2345/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-09-07T06:27:43.6609788Z [2346/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-09-07T06:27:43.6681743Z [2347/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-09-07T06:27:43.7085961Z [2348/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-09-07T06:27:43.7365184Z [2349/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-09-07T06:27:43.7379555Z [2350/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-09-07T06:27:43.7519108Z [2351/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-09-07T06:27:43.7649433Z [2352/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-09-07T06:27:43.7986032Z [2353/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u1.c.obj 2025-09-07T06:27:43.8003536Z [2354/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-09-07T06:27:43.8304295Z [2355/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut64-p2-div-u4.c.obj 2025-09-07T06:27:43.8611711Z [2356/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u1.c.obj 2025-09-07T06:27:43.8712842Z [2357/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u2.c.obj 2025-09-07T06:27:43.8776874Z [2358/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-lut2048-p1-div-u4.c.obj 2025-09-07T06:27:43.8947572Z [2359/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-09-07T06:27:43.9247473Z [2360/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-09-07T06:27:43.9309261Z [2361/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-09-07T06:27:43.9526703Z [2362/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-09-07T06:27:43.9963169Z [2363/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-09-07T06:27:44.0079647Z [2364/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x2-minmax-scalar.c.obj 2025-09-07T06:27:44.0232663Z [2365/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x4-minmax-scalar.c.obj 2025-09-07T06:27:44.0456719Z [2366/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-1x8-minmax-scalar.c.obj 2025-09-07T06:27:44.0640617Z [2367/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x2-minmax-scalar.c.obj 2025-09-07T06:27:44.0769936Z [2368/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:44.0943541Z [2369/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x8-minmax-scalar.c.obj 2025-09-07T06:27:44.1352600Z [2370/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-4x4-minmax-scalar.c.obj 2025-09-07T06:27:44.1460837Z [2371/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x2-minmax-scalar.c.obj 2025-09-07T06:27:44.1735656Z [2372/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x8-minmax-scalar.c.obj 2025-09-07T06:27:44.1867576Z [2373/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x2-minmax-scalar.c.obj 2025-09-07T06:27:44.2097624Z [2374/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:44.2223977Z [2375/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x8-minmax-scalar.c.obj 2025-09-07T06:27:44.2312875Z [2376/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x1-minmax-scalar.c.obj 2025-09-07T06:27:44.2758749Z [2377/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x2-minmax-scalar.c.obj 2025-09-07T06:27:44.2953963Z [2378/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8-minmax-scalar.c.obj 2025-09-07T06:27:44.3214593Z [2379/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x2-minmax-scalar.c.obj 2025-09-07T06:27:44.3307701Z [2380/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:44.3661873Z [2381/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8-minmax-scalar.c.obj 2025-09-07T06:27:44.3719799Z [2382/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8-minmax-scalar.c.obj 2025-09-07T06:27:44.3829570Z [2383/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:44.4236130Z [2384/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x8-minmax-scalar.c.obj 2025-09-07T06:27:44.4417895Z [2385/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8-minmax-scalar.c.obj 2025-09-07T06:27:44.4707477Z [2386/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x8-minmax-scalar.c.obj 2025-09-07T06:27:44.4764954Z [2387/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4-minmax-scalar.c.obj 2025-09-07T06:27:44.4961413Z [2388/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.5099887Z [2389/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.5156537Z [2390/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.5469384Z [2391/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.5663875Z [2392/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.6096030Z [2393/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.6149060Z [2394/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.6238565Z [2395/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.6409906Z [2396/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.6455121Z [2397/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.6712182Z [2398/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.6939512Z [2399/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.7433823Z [2400/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.7526224Z [2401/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.7569140Z [2402/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.7720176Z [2403/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.7734718Z [2404/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.8128943Z [2405/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.8274365Z [2406/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.8785140Z [2407/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.8855977Z [2408/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.8906465Z [2409/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.8998291Z [2410/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:44.9047040Z [2411/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:44.9350816Z [2412/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:44.9558823Z [2413/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.0129496Z [2414/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.0186095Z [2415/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.0236542Z [2416/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.0358452Z [2417/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.0560209Z [2418/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-09-07T06:27:45.0647761Z [2419/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-09-07T06:27:45.0770813Z [2420/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.1443360Z [2421/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.1520393Z [2422/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.1567833Z [2423/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-09-07T06:27:45.1652664Z [2424/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.1865377Z [2425/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.1919108Z [2426/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.2101074Z [2427/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.2744822Z [2428/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-09-07T06:27:45.2757850Z [2429/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.2817124Z [2430/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-09-07T06:27:45.2867779Z [2431/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.2963450Z [2432/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-09-07T06:27:45.3095812Z [2433/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-09-07T06:27:45.3188840Z [2434/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-09-07T06:27:45.3881618Z [2435/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-09-07T06:27:45.3898369Z [2436/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-09-07T06:27:45.4048308Z [2437/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-09-07T06:27:45.4134441Z [2438/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-09-07T06:27:45.4193901Z [2439/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-09-07T06:27:45.4380773Z [2440/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-09-07T06:27:45.4396670Z [2441/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-09-07T06:27:45.4999819Z [2442/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x16c8-gemm-goi-scalar.c.obj 2025-09-07T06:27:45.5060323Z [2443/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-scalar.c.obj 2025-09-07T06:27:45.5163968Z [2444/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x32c8-gemm-goi-scalar.c.obj 2025-09-07T06:27:45.5367503Z [2445/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-4p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.5610336Z [2446/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.5669628Z [2447/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.5781884Z [2448/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.6317428Z [2449/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.6391991Z [2450/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.6498732Z [2451/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.6913238Z [2452/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.6985297Z [2453/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.6999931Z [2454/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.7057125Z [2455/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.7574816Z [2456/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.7749778Z [2457/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.7832862Z [2458/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.8213168Z [2459/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.8229338Z [2460/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.8347974Z [2461/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.8410332Z [2462/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.8864165Z [2463/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.8977377Z [2464/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.9201726Z [2465/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.9532590Z [2466/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:45.9587068Z [2467/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:45.9671545Z [2468/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:45.9728857Z [2469/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.0178279Z [2470/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.0320831Z [2471/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.0579217Z [2472/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.0817598Z [2473/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.0895692Z [2474/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.0996964Z [2475/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.1068772Z [2476/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.1428517Z [2477/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.1631609Z [2478/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.1887697Z [2479/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.2086863Z [2480/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.2228496Z [2481/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.2313902Z [2482/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.2459317Z [2483/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.2883247Z [2484/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.3128465Z [2485/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.3348949Z [2486/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.3452973Z [2487/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.3673893Z [2488/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.3730937Z [2489/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.3957229Z [2490/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.4294524Z [2491/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.4632401Z [2492/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.4867691Z [2493/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.5067102Z [2494/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.5083318Z [2495/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.5186443Z [2496/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.5360139Z [2497/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.5717225Z [2498/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.6058107Z [2499/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.6306290Z [2500/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.6527585Z [2501/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.6589281Z [2502/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.6646471Z [2503/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.6719948Z [2504/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.7182378Z [2505/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.7534317Z [2506/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.7840021Z [2507/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.7984422Z [2508/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.7995881Z [2509/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.8210539Z [2510/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.8227869Z [2511/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.8577195Z [2512/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.8928757Z [2513/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.9258155Z [2514/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:46.9410737Z [2515/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.9477251Z [2516/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:46.9586807Z [2517/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:46.9642899Z [2518/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.0052511Z [2519/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.0258230Z [2520/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.0689934Z [2521/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.0853330Z [2522/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.0868900Z [2523/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-gio-scalar.c.obj 2025-09-07T06:27:47.0945514Z [2524/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.1099946Z [2525/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.1239059Z [2526/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-scalar.c.obj 2025-09-07T06:27:47.1349323Z [2527/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-gio-scalar.c.obj 2025-09-07T06:27:47.1799416Z [2528/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-09-07T06:27:47.1999831Z [2529/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-09-07T06:27:47.2199350Z [2530/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-09-07T06:27:47.2254502Z [2531/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-09-07T06:27:47.2268849Z [2532/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-09-07T06:27:47.2466184Z [2533/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-09-07T06:27:47.2615941Z [2534/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-09-07T06:27:47.3044350Z [2535/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-09-07T06:27:47.3224104Z [2536/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-09-07T06:27:47.3446415Z [2537/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-09-07T06:27:47.3497487Z [2538/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-09-07T06:27:47.3563123Z [2539/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-09-07T06:27:47.3717532Z [2540/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-09-07T06:27:47.3920727Z [2541/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.4343141Z [2542/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.4527436Z [2543/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.4701378Z [2544/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.4825660Z [2545/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.4890177Z [2546/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.5026714Z [2547/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.5224761Z [2548/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.5752883Z [2549/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.5828874Z [2550/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.5926183Z [2551/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.6139380Z [2552/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.6193007Z [2553/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.6301915Z [2554/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.6709227Z [2555/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.7036706Z [2556/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.7098482Z [2557/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.7201364Z [2558/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.7437263Z [2559/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.7454577Z [2560/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.7672423Z [2561/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.7910515Z [2562/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.8349360Z [2563/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.8445066Z [2564/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.8588107Z [2565/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.8705605Z [2566/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.8718434Z [2567/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.8927948Z [2568/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:47.9168828Z [2569/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:47.9670073Z [2570/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-09-07T06:27:47.9785442Z [2571/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:47.9892317Z [2572/7565] Generating C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, C:/actions-runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-09-07T06:27:47.9938565Z [2573/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-09-07T06:27:48.0012398Z [2574/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:48.0030064Z [2575/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:27:48.0296031Z [2576/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:48.0448015Z [2577/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-09-07T06:27:48.0894842Z [2578/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:27:48.1168636Z [2579/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:27:48.1752620Z [2580/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DTensorState.cpp.obj 2025-09-07T06:27:48.3795586Z [2581/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-09-07T06:27:48.5743594Z [2582/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-09-07T06:27:48.6023623Z [2583/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-09-07T06:27:48.6586783Z [2584/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-09-07T06:27:48.8217604Z [2585/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-09-07T06:27:48.8471027Z [2586/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-09-07T06:27:49.0779545Z [2587/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-09-07T06:27:49.0992546Z [2588/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-09-07T06:27:49.4255997Z [2589/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-09-07T06:27:49.5723357Z [2590/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-09-07T06:27:49.7928990Z [2591/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-09-07T06:27:50.1058841Z [2592/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-09-07T06:27:50.1201386Z [2593/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-09-07T06:27:50.4511510Z [2594/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-09-07T06:27:50.4879100Z [2595/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-09-07T06:27:50.9857868Z [2596/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-09-07T06:27:51.0756766Z [2597/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-09-07T06:27:51.5427593Z [2598/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-09-07T06:27:51.6362223Z [2599/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-09-07T06:27:51.7072387Z [2600/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-09-07T06:27:51.9041119Z [2601/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-09-07T06:27:52.3519548Z [2602/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-09-07T06:27:52.6205597Z [2603/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-09-07T06:27:52.8398497Z [2604/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-09-07T06:27:52.8583746Z [2605/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-09-07T06:27:52.9365406Z [2606/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-09-07T06:27:52.9964900Z [2607/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-09-07T06:27:53.0051100Z [2608/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-09-07T06:27:53.1301184Z [2609/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-09-07T06:27:53.4370988Z [2610/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-09-07T06:27:53.6241936Z [2611/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-09-07T06:27:53.6410716Z [2612/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-09-07T06:27:53.8163158Z [2613/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-09-07T06:27:54.1000822Z [2614/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-09-07T06:27:54.4253427Z [2615/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-09-07T06:27:54.5552078Z [2616/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-09-07T06:27:54.6120943Z [2617/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-09-07T06:27:54.7862215Z [2618/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-09-07T06:27:54.8919379Z [2619/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-09-07T06:27:55.3117716Z [2620/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-09-07T06:27:55.8586211Z [2621/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-09-07T06:27:55.9141923Z [2622/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-09-07T06:27:56.0377901Z [2623/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-09-07T06:27:56.1218666Z [2624/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-09-07T06:27:56.4719934Z [2625/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-09-07T06:27:56.4964361Z [2626/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-09-07T06:27:56.5054821Z [2627/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-09-07T06:27:56.9823802Z [2628/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-09-07T06:27:56.9912360Z [2629/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-09-07T06:27:57.0013194Z [2630/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-09-07T06:27:57.0037699Z [2631/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-09-07T06:27:57.4615403Z [2632/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-09-07T06:27:57.5150092Z [2633/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-09-07T06:27:57.5238526Z [2634/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-09-07T06:27:57.5408157Z [2635/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-09-07T06:27:57.5980026Z [2636/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-09-07T06:27:57.8018462Z [2637/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-09-07T06:27:58.0417886Z [2638/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-09-07T06:27:58.0606300Z [2639/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-09-07T06:27:58.1575478Z [2640/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-09-07T06:27:58.6410644Z [2641/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-09-07T06:27:58.8596746Z [2642/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-09-07T06:27:59.4417814Z [2643/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-09-07T06:28:01.4153300Z [2644/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-09-07T06:28:01.4744968Z [2645/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-09-07T06:28:01.8427182Z [2646/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-09-07T06:28:01.8740489Z [2647/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-09-07T06:28:01.9402806Z [2648/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-09-07T06:28:02.4642556Z [2649/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-09-07T06:28:02.6148419Z [2650/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-09-07T06:28:03.3942513Z [2651/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-09-07T06:28:05.1504055Z [2652/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-09-07T06:28:05.2128497Z [2653/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-09-07T06:28:05.6447072Z [2654/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-09-07T06:28:05.6628431Z [2655/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-09-07T06:28:05.7956100Z [2656/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-09-07T06:28:06.3977303Z [2657/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-09-07T06:28:06.4627078Z [2658/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-09-07T06:28:06.5941739Z [2659/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-09-07T06:28:07.2084154Z [2660/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-09-07T06:28:07.4924939Z [2661/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-09-07T06:28:07.5765935Z [2662/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-09-07T06:28:08.5678868Z [2663/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-09-07T06:28:08.9244109Z [2664/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-09-07T06:28:09.0133571Z [2665/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-09-07T06:28:09.3373424Z [2666/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-09-07T06:28:09.6024049Z [2667/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-09-07T06:28:09.6582358Z [2668/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-09-07T06:28:09.7016380Z [2669/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-09-07T06:28:10.0043207Z [2670/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-09-07T06:28:10.0742997Z [2671/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-09-07T06:28:10.3244800Z [2672/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-09-07T06:28:10.3879165Z [2673/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-09-07T06:28:10.5732389Z [2674/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-09-07T06:28:10.6428132Z [2675/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-09-07T06:28:10.7211462Z [2676/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-09-07T06:28:10.8009326Z [2677/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-09-07T06:28:10.9130156Z [2678/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-09-07T06:28:11.2066867Z [2679/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-09-07T06:28:11.2371603Z [2680/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-09-07T06:28:11.2785855Z [2681/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-09-07T06:28:11.4767422Z [2682/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-09-07T06:28:11.4898105Z [2683/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-09-07T06:28:11.6411908Z [2684/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-09-07T06:28:11.7015004Z [2685/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-09-07T06:28:11.7506599Z [2686/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-09-07T06:28:11.8864667Z [2687/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-09-07T06:28:11.9202889Z [2688/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-09-07T06:28:12.1620632Z [2689/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-09-07T06:28:12.4491345Z [2690/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-09-07T06:28:12.4672651Z [2691/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-09-07T06:28:12.4990798Z [2692/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-09-07T06:28:12.6067869Z [2693/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-09-07T06:28:12.6999277Z [2694/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-09-07T06:28:12.7190029Z [2695/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-09-07T06:28:12.7224920Z [2696/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-09-07T06:28:12.8256397Z [2697/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-09-07T06:28:12.8899018Z [2698/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-09-07T06:28:13.1515960Z [2699/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-09-07T06:28:13.3585509Z [2700/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-09-07T06:28:13.4660358Z [2701/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-09-07T06:28:13.5596912Z [2702/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-09-07T06:28:13.6170978Z [2703/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-09-07T06:28:13.6443870Z [2704/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-09-07T06:28:13.7042868Z [2705/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-09-07T06:28:13.8710990Z [2706/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-09-07T06:28:13.8791938Z [2707/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-09-07T06:28:14.0478916Z [2708/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-09-07T06:28:14.1796008Z [2709/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-09-07T06:28:14.2735050Z [2710/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-09-07T06:28:14.3369537Z [2711/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-09-07T06:28:14.4560744Z [2712/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-09-07T06:28:14.5992456Z [2713/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-09-07T06:28:14.6289624Z [2714/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-09-07T06:28:14.6940374Z [2715/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-09-07T06:28:14.8301702Z [2716/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-09-07T06:28:14.8960075Z [2717/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-09-07T06:28:14.9888864Z [2718/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-09-07T06:28:15.1048641Z [2719/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-09-07T06:28:15.1155298Z [2720/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-09-07T06:28:15.1972447Z [2721/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-09-07T06:28:15.2128571Z [2722/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-09-07T06:28:15.5410447Z [2723/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-09-07T06:28:15.6563708Z [2724/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-09-07T06:28:15.8392046Z [2725/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-09-07T06:28:16.0144056Z [2726/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-09-07T06:28:16.0454470Z [2727/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-09-07T06:28:16.0617786Z [2728/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-09-07T06:28:16.0754375Z [2729/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-09-07T06:28:16.2768016Z [2730/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-09-07T06:28:16.5117330Z [2731/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-09-07T06:28:16.5937297Z [2732/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-09-07T06:28:16.7683748Z [2733/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-09-07T06:28:16.9755191Z [2734/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-09-07T06:28:17.0240382Z [2735/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-09-07T06:28:17.0882652Z [2736/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-09-07T06:28:17.1177132Z [2737/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-09-07T06:28:17.1360292Z [2738/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-09-07T06:28:17.3420435Z [2739/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-09-07T06:28:17.5525467Z [2740/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-09-07T06:28:17.7481389Z [2741/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-09-07T06:28:17.9643182Z [2742/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-09-07T06:28:18.0111958Z [2743/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-09-07T06:28:18.0948348Z [2744/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-09-07T06:28:18.1093126Z [2745/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-09-07T06:28:18.2845204Z [2746/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-09-07T06:28:18.5637156Z [2747/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-09-07T06:28:18.6687867Z [2748/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-09-07T06:28:18.8025619Z [2749/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-09-07T06:28:18.9481345Z [2750/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-09-07T06:28:18.9648536Z [2751/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-09-07T06:28:19.0135205Z [2752/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-09-07T06:28:19.1577618Z [2753/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-09-07T06:28:19.1793214Z [2754/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-09-07T06:28:19.2550427Z [2755/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-09-07T06:28:19.4936300Z [2756/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-09-07T06:28:19.6286185Z [2757/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-09-07T06:28:19.9070368Z [2758/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-09-07T06:28:19.9519291Z [2759/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-09-07T06:28:20.0781096Z [2760/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-09-07T06:28:20.1188493Z [2761/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-09-07T06:28:20.1633038Z [2762/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-09-07T06:28:20.1799635Z [2763/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-09-07T06:28:20.4647812Z [2764/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-09-07T06:28:20.4769343Z [2765/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-09-07T06:28:20.8570579Z [2766/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-09-07T06:28:20.8798275Z [2767/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-09-07T06:28:21.0044287Z [2768/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-09-07T06:28:21.1157698Z [2769/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-09-07T06:28:21.1243681Z [2770/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-09-07T06:28:21.1647296Z [2771/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-09-07T06:28:21.4065229Z [2772/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-09-07T06:28:21.5100465Z [2773/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-09-07T06:28:21.8305622Z [2774/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-09-07T06:28:21.8739244Z [2775/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-09-07T06:28:21.9846287Z [2776/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-09-07T06:28:22.0029045Z [2777/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-09-07T06:28:22.0491956Z [2778/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-09-07T06:28:22.0905251Z [2779/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-09-07T06:28:22.4125350Z [2780/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-09-07T06:28:22.7914643Z [2781/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-09-07T06:28:22.9045705Z [2782/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-09-07T06:28:22.9164133Z [2783/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-09-07T06:28:22.9860001Z [2784/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-09-07T06:28:23.0033202Z [2785/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-09-07T06:28:23.0574605Z [2786/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-09-07T06:28:23.0767253Z [2787/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-09-07T06:28:23.3853821Z [2788/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-09-07T06:28:23.7022367Z [2789/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-09-07T06:28:23.7137839Z [2790/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-09-07T06:28:23.8829254Z [2791/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-09-07T06:28:23.9332509Z [2792/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-09-07T06:28:23.9972206Z [2793/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-09-07T06:28:24.0289628Z [2794/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-09-07T06:28:24.0509433Z [2795/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-09-07T06:28:24.3628131Z [2796/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-09-07T06:28:24.7636011Z [2797/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-09-07T06:28:24.7781249Z [2798/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-09-07T06:28:24.8118235Z [2799/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-09-07T06:28:24.8471836Z [2800/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-09-07T06:28:24.8731363Z [2801/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-09-07T06:28:24.9344034Z [2802/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-09-07T06:28:24.9672380Z [2803/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-09-07T06:28:25.4208317Z [2804/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-09-07T06:28:25.7289508Z [2805/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-09-07T06:28:25.7399932Z [2806/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-09-07T06:28:25.8466025Z [2807/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-09-07T06:28:25.8584213Z [2808/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-09-07T06:28:25.9630756Z [2809/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-09-07T06:28:26.0008076Z [2810/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-09-07T06:28:26.0232500Z [2811/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-09-07T06:28:26.3048364Z [2812/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-09-07T06:28:26.6243677Z [2813/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-09-07T06:28:26.6933822Z [2814/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-09-07T06:28:26.7795016Z [2815/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-09-07T06:28:26.8210539Z [2816/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-09-07T06:28:26.9031628Z [2817/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-09-07T06:28:26.9276506Z [2818/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-09-07T06:28:27.2286555Z [2819/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-09-07T06:28:27.3175893Z [2820/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-09-07T06:28:27.6016073Z [2821/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-09-07T06:28:27.7515073Z [2822/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-09-07T06:28:27.7946370Z [2823/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-09-07T06:28:27.9648219Z [2824/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-09-07T06:28:28.3686222Z [2825/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-09-07T06:28:28.5207498Z [2826/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-09-07T06:28:28.7059893Z [2827/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-09-07T06:28:28.9094538Z [2828/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-09-07T06:28:28.9842090Z [2829/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-09-07T06:28:29.3188685Z [2830/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-09-07T06:28:29.3616335Z [2831/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-09-07T06:28:29.5177511Z [2832/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-09-07T06:28:29.6312788Z [2833/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-09-07T06:28:30.0096761Z [2834/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-09-07T06:28:30.1365582Z [2835/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-09-07T06:28:30.2948120Z [2836/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-09-07T06:28:30.4038871Z [2837/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-09-07T06:28:30.4663009Z [2838/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-09-07T06:28:30.5074108Z [2839/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-09-07T06:28:30.6734459Z [2840/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-09-07T06:28:30.7078824Z [2841/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-09-07T06:28:31.0518808Z [2842/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-09-07T06:28:31.1554233Z [2843/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-09-07T06:28:31.3038376Z [2844/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-09-07T06:28:31.4470066Z [2845/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-09-07T06:28:31.4876175Z [2846/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-09-07T06:28:31.5285221Z [2847/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-09-07T06:28:31.6102853Z [2848/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-09-07T06:28:31.6388225Z [2849/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-09-07T06:28:32.0366243Z [2850/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-09-07T06:28:32.1578864Z [2851/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-09-07T06:28:32.2672208Z [2852/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-09-07T06:28:32.2797390Z [2853/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-09-07T06:28:32.5148134Z [2854/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-09-07T06:28:32.5374719Z [2855/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-09-07T06:28:32.5847905Z [2856/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-09-07T06:28:32.9036566Z [2857/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-09-07T06:28:33.1659298Z [2858/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-09-07T06:28:33.2438576Z [2859/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-09-07T06:28:33.5228100Z [2860/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-09-07T06:28:33.5385383Z [2861/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-09-07T06:28:33.5908007Z [2862/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-09-07T06:28:33.8581839Z [2863/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-09-07T06:28:34.2306652Z [2864/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-09-07T06:28:34.2564433Z [2865/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-09-07T06:28:34.5049248Z [2866/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-09-07T06:28:34.5557861Z [2867/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-09-07T06:28:34.6696280Z [2868/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-09-07T06:28:34.8689176Z [2869/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-09-07T06:28:35.1891463Z [2870/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-09-07T06:28:35.2425784Z [2871/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-09-07T06:28:35.4724727Z [2872/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-09-07T06:28:35.5481120Z [2873/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-09-07T06:28:35.5714185Z [2874/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-09-07T06:28:35.7280776Z [2875/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-09-07T06:28:35.7416217Z [2876/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-09-07T06:28:38.4177477Z [2877/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-09-07T06:28:38.7290593Z [2878/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-09-07T06:28:38.7924734Z [2879/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-09-07T06:28:38.9615966Z [2880/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-09-07T06:28:39.0331471Z [2881/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-09-07T06:28:39.1061744Z [2882/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-09-07T06:28:39.1719838Z [2883/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-09-07T06:28:39.1802947Z [2884/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-09-07T06:28:39.2856599Z [2885/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-09-07T06:28:39.3949818Z [2886/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-09-07T06:28:39.5607892Z [2887/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-09-07T06:28:39.6346869Z [2888/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-09-07T06:28:40.8272580Z [2889/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-09-07T06:28:41.8051947Z [2890/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-09-07T06:28:42.4424411Z [2891/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-09-07T06:28:42.5380887Z [2892/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-09-07T06:28:42.5628618Z [2893/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-09-07T06:28:42.6358858Z [2894/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-09-07T06:28:42.6504603Z [2895/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-09-07T06:28:42.7234946Z [2896/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-09-07T06:28:42.8527997Z [2897/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-09-07T06:28:42.9258273Z [2898/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-09-07T06:28:43.4550440Z [2899/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-09-07T06:28:43.4944940Z [2900/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-09-07T06:28:43.5248205Z [2901/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-09-07T06:28:43.5501231Z [2902/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-09-07T06:28:43.6594687Z [2903/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-09-07T06:28:43.7834623Z [2904/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-09-07T06:28:43.8352419Z [2905/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-09-07T06:28:43.8999165Z [2906/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-09-07T06:28:43.9334537Z [2907/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-09-07T06:28:44.4447195Z [2908/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-09-07T06:28:44.5011233Z [2909/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-09-07T06:28:44.5672845Z [2910/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-09-07T06:28:44.6004630Z [2911/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-09-07T06:28:44.6280939Z [2912/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-09-07T06:28:44.7822680Z [2913/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-09-07T06:28:44.8287038Z [2914/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-09-07T06:28:45.1232017Z [2915/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-09-07T06:28:45.4013839Z [2916/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-09-07T06:28:45.7081331Z [2917/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-09-07T06:28:45.8275398Z [2918/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-09-07T06:28:45.8420494Z [2919/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-09-07T06:28:45.9921007Z [2920/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-09-07T06:28:46.3933375Z [2921/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-09-07T06:28:46.7008219Z [2922/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-09-07T06:28:46.8356467Z [2923/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-09-07T06:28:46.8583407Z [2924/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-09-07T06:28:46.9231867Z [2925/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-09-07T06:28:47.3502470Z [2926/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-09-07T06:28:47.3809164Z [2927/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-09-07T06:28:47.6892663Z [2928/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-09-07T06:28:48.0505938Z [2929/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-09-07T06:28:48.0722827Z [2930/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-09-07T06:28:48.1726528Z [2931/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-09-07T06:28:48.6195821Z [2932/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-09-07T06:28:48.6368770Z [2933/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-09-07T06:28:48.6629007Z [2934/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-09-07T06:28:48.6834114Z [2935/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-09-07T06:28:49.0751235Z [2936/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-09-07T06:28:49.1231665Z [2937/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-09-07T06:28:49.6021881Z [2938/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-09-07T06:28:49.6188714Z [2939/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-09-07T06:28:49.6652598Z [2940/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-09-07T06:28:49.6709990Z [2941/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-09-07T06:28:49.8704340Z [2942/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-09-07T06:28:50.0575578Z [2943/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-09-07T06:28:50.6140745Z [2944/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-09-07T06:28:50.6615003Z [2945/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-09-07T06:28:50.8807079Z [2946/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-09-07T06:28:51.0166468Z [2947/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-09-07T06:28:51.1241512Z [2948/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-09-07T06:28:51.2846294Z [2949/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-09-07T06:28:51.7061206Z [2950/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-09-07T06:28:51.7244719Z [2951/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-09-07T06:28:51.8579234Z [2952/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-09-07T06:28:52.0148733Z [2953/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-09-07T06:28:52.5314834Z [2954/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-09-07T06:28:52.5970730Z [2955/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-09-07T06:28:52.7355887Z [2956/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-09-07T06:28:52.9027254Z [2957/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-09-07T06:28:52.9289798Z [2958/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-09-07T06:28:53.1419453Z [2959/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-09-07T06:28:53.2582683Z [2960/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-09-07T06:28:53.7769115Z [2961/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-09-07T06:28:54.2736111Z [2962/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-09-07T06:28:54.2916022Z [2963/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-09-07T06:28:54.3129321Z [2964/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-09-07T06:28:54.7948010Z [2965/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-09-07T06:28:55.3445542Z [2966/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-09-07T06:28:55.3632794Z [2967/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-09-07T06:28:55.4150714Z [2968/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-09-07T06:28:55.8070057Z [2969/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-09-07T06:28:56.1389403Z [2970/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-09-07T06:28:56.2707925Z [2971/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-09-07T06:28:56.3020178Z [2972/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-09-07T06:28:56.3278640Z [2973/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-09-07T06:28:56.5293025Z [2974/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-09-07T06:28:56.6284904Z [2975/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-09-07T06:28:56.6550305Z [2976/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-09-07T06:28:56.6647273Z [2977/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-09-07T06:28:56.6892057Z [2978/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-09-07T06:28:56.7594905Z [2979/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-09-07T06:28:56.9636814Z [2980/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-09-07T06:28:57.0891187Z [2981/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-09-07T06:28:57.3528959Z [2982/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-09-07T06:28:57.4494477Z [2983/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-09-07T06:28:57.4682691Z [2984/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-09-07T06:28:57.5965769Z [2985/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-09-07T06:28:57.6373620Z [2986/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-09-07T06:28:58.4389516Z [2987/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-09-07T06:28:58.6327893Z [2988/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-09-07T06:28:58.7161435Z [2989/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-09-07T06:28:58.7445053Z [2990/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-09-07T06:28:58.8250874Z [2991/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-09-07T06:28:58.8534627Z [2992/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-09-07T06:28:58.9568025Z [2993/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-09-07T06:28:59.2759385Z [2994/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-09-07T06:28:59.8003606Z [2995/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-09-07T06:29:00.1046120Z [2996/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-09-07T06:29:00.2969720Z [2997/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-09-07T06:29:00.6418350Z [2998/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-09-07T06:29:00.6511151Z [2999/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-09-07T06:29:00.6589648Z [3000/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-09-07T06:29:00.6979717Z [3001/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-09-07T06:29:00.9006112Z [3002/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-09-07T06:29:01.2428096Z [3003/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-09-07T06:29:01.6043789Z [3004/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-09-07T06:29:01.7313207Z [3005/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-09-07T06:29:01.7830296Z [3006/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-09-07T06:29:01.8059484Z [3007/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-09-07T06:29:02.0014502Z [3008/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-09-07T06:29:02.1622703Z [3009/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-09-07T06:29:02.2516172Z [3010/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-09-07T06:29:02.2726527Z [3011/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-09-07T06:29:02.5999160Z [3012/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-09-07T06:29:03.0037393Z [3013/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-09-07T06:29:03.0072860Z [3014/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-09-07T06:29:03.0390270Z [3015/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-09-07T06:29:03.1014345Z [3016/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-09-07T06:29:03.4925139Z [3017/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-09-07T06:29:03.5162286Z [3018/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-09-07T06:29:03.5248859Z [3019/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-09-07T06:29:03.5522380Z [3020/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-09-07T06:29:03.5614172Z [3021/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-09-07T06:29:03.6462367Z [3022/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-09-07T06:29:03.9255219Z [3023/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-09-07T06:29:03.9371664Z [3024/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-09-07T06:29:03.9914885Z [3025/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-09-07T06:29:04.2985983Z [3026/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-09-07T06:29:04.3556010Z [3027/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-09-07T06:29:04.3589633Z [3028/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-09-07T06:29:04.5306689Z [3029/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:04.8688930Z [3030/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:05.0483459Z [3031/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:05.2239122Z [3032/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:05.2266706Z [3033/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:05.4740930Z [3034/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:05.6560756Z [3035/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.0497765Z [3036/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.2283392Z [3037/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.2370704Z [3038/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.2449312Z [3039/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.2812653Z [3040/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.8147232Z [3041/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.9216996Z [3042/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-09-07T06:29:06.9402758Z [3043/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:06.9707478Z [3044/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-09-07T06:29:07.1187532Z [3045/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-09-07T06:29:07.2337384Z [3046/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:07.2817608Z [3047/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:07.5033773Z [3048/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:07.5140466Z [3049/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:07.6769919Z [3050/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:07.8234675Z [3051/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:07.8472032Z [3052/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:07.9033903Z [3053/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.0181461Z [3054/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.1864912Z [3055/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.2773234Z [3056/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.3612938Z [3057/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.5062217Z [3058/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.5475733Z [3059/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.6337904Z [3060/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.8113275Z [3061/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.8469138Z [3062/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.9007539Z [3063/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.9190310Z [3064/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:08.9640899Z [3065/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.4112707Z [3066/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.4147913Z [3067/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.5153941Z [3068/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.6286847Z [3069/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.6894300Z [3070/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.7020582Z [3071/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.8120572Z [3072/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:09.9145165Z [3073/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.0791323Z [3074/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.1414690Z [3075/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.3117252Z [3076/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.4199677Z [3077/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.5208531Z [3078/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.5378820Z [3079/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.5606117Z [3080/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.6747660Z [3081/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:10.9626435Z [3082/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.1595408Z [3083/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.1597569Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-09-07T06:29:11.1599678Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-09-07T06:29:11.1602755Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-09-07T06:29:11.1607319Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-09-07T06:29:11.1611384Z with 2025-09-07T06:29:11.1611729Z [ 2025-09-07T06:29:11.1612319Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-09-07T06:29:11.1613011Z ] 2025-09-07T06:29:11.1615278Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-09-07T06:29:11.1620801Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-09-07T06:29:11.1624590Z with 2025-09-07T06:29:11.1624913Z [ 2025-09-07T06:29:11.1625525Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-09-07T06:29:11.1626258Z ] 2025-09-07T06:29:11.1629676Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-09-07T06:29:11.1632422Z with 2025-09-07T06:29:11.1632745Z [ 2025-09-07T06:29:11.1633530Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t, 2025-09-07T06:29:11.1634774Z data_t=at::vec::DEFAULT::Vectorized, 2025-09-07T06:29:11.1635858Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-09-07T06:29:11.1637546Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-09-07T06:29:11.1639197Z ] 2025-09-07T06:29:11.1641290Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::DEFAULT::Vectorized &)' being compiled 2025-09-07T06:29:11.1643281Z with 2025-09-07T06:29:11.1643595Z [ 2025-09-07T06:29:11.1643916Z scalar_t=float, 2025-09-07T06:29:11.1644968Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-09-07T06:29:11.1860174Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-09-07T06:29:11.1861278Z ] 2025-09-07T06:29:11.1862736Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-09-07T06:29:11.1864206Z with 2025-09-07T06:29:11.1864482Z [ 2025-09-07T06:29:11.1865433Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-09-07T06:29:11.1866513Z ] 2025-09-07T06:29:11.1867503Z [3084/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.2327967Z [3085/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.3217072Z [3086/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.3501556Z [3087/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.4185043Z [3088/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.6318933Z [3089/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.6416514Z [3090/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.9328320Z [3091/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:11.9330707Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-09-07T06:29:11.9332626Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): warning C4333: '>>': right shift by too large amount, data loss 2025-09-07T06:29:11.9333758Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): note: the template instantiation context (the oldest one first) is 2025-09-07T06:29:11.9749215Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): note: see reference to function template instantiation 'at::vec::DEFAULT::Vectorized at::vec::DEFAULT::operator >>(const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &)' being compiled 2025-09-07T06:29:11.9752215Z [3092/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:12.0707920Z [3093/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:12.0784897Z [3094/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-09-07T06:29:12.2564622Z [3095/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:12.3075570Z [3096/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:12.3242375Z [3097/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:12.3854635Z [3098/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-09-07T06:29:12.4326889Z [3099/7565] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-09-07T06:29:12.5561177Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-09-07T06:29:12.5562373Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-09-07T06:29:12.5563332Z [3100/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-09-07T06:29:12.7018679Z [3101/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-09-07T06:29:12.7186377Z [3102/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-09-07T06:29:12.7244716Z [3103/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-09-07T06:29:12.7261394Z [3104/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-09-07T06:29:12.7317657Z [3105/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-09-07T06:29:12.7437227Z [3106/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-09-07T06:29:12.8080074Z [3107/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-09-07T06:29:12.9525982Z [3108/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-09-07T06:29:13.0690811Z [3109/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-09-07T06:29:13.1506523Z [3110/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-09-07T06:29:13.1529725Z [3111/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\perfkernels\embedding_lookup_idx.cc.obj 2025-09-07T06:29:13.2414618Z [3112/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-09-07T06:29:13.8073272Z [3113/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-09-07T06:29:14.3927196Z [3114/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-09-07T06:29:15.0963283Z [3115/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-09-07T06:29:15.7030180Z [3116/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-09-07T06:29:16.3697540Z [3117/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-09-07T06:29:16.4587097Z [3118/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-09-07T06:29:16.7189492Z [3119/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-09-07T06:29:16.9056517Z [3120/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-09-07T06:29:16.9765847Z [3121/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-09-07T06:29:17.0532278Z [3122/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-09-07T06:29:17.0676102Z [3123/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-09-07T06:29:17.1385363Z [3124/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-09-07T06:29:17.6999983Z [3125/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-09-07T06:29:17.8587320Z [3126/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-09-07T06:29:17.8782676Z [3127/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-09-07T06:29:17.9280534Z [3128/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.cpp.obj 2025-09-07T06:29:17.9871337Z [3129/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-09-07T06:29:18.0373888Z [3130/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-09-07T06:29:18.1832048Z [3131/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-09-07T06:29:18.7488601Z [3132/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-09-07T06:29:18.8382947Z [3133/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-09-07T06:29:18.8544722Z [3134/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-09-07T06:29:18.9344014Z [3135/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-09-07T06:29:18.9799533Z [3136/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-09-07T06:29:19.1981848Z [3137/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-09-07T06:29:19.5477169Z [3138/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-09-07T06:29:20.1361782Z [3139/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-09-07T06:29:20.9761338Z [3140/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-09-07T06:29:21.0836597Z [3141/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-09-07T06:29:21.5968106Z [3142/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-09-07T06:29:21.9308480Z [3143/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-09-07T06:29:22.1089840Z [3144/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-09-07T06:29:22.3275273Z [3145/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-09-07T06:29:22.4298326Z [3146/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-09-07T06:29:22.5080864Z [3147/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-09-07T06:29:22.5421027Z [3148/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-09-07T06:29:22.6515210Z [3149/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-09-07T06:29:22.6592151Z [3150/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-09-07T06:29:22.8623241Z [3151/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-09-07T06:29:23.0398270Z [3152/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-09-07T06:29:23.0839612Z [3153/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-09-07T06:29:23.4953183Z [3154/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-09-07T06:29:23.5907279Z [3155/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-09-07T06:29:23.7666379Z [3156/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-09-07T06:29:23.8045921Z [3157/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-09-07T06:29:23.8957370Z [3158/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-09-07T06:29:24.0746371Z [3159/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-09-07T06:29:24.2858818Z [3160/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-09-07T06:29:24.6541432Z [3161/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-09-07T06:29:24.7466984Z [3162/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-09-07T06:29:25.3427758Z [3163/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-09-07T06:29:25.3565201Z [3164/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-09-07T06:29:25.6978635Z [3165/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-09-07T06:29:25.7918926Z [3166/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-09-07T06:29:26.0593693Z [3167/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-09-07T06:29:26.3337899Z [3168/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-09-07T06:29:26.4082303Z [3169/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-09-07T06:29:26.7703709Z [3170/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-09-07T06:29:27.4471232Z [3171/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-09-07T06:29:27.5444168Z [3172/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-09-07T06:29:27.5965268Z [3173/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-09-07T06:29:28.6113953Z [3174/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-09-07T06:29:28.6288820Z [3175/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-09-07T06:29:28.8176821Z [3176/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-09-07T06:29:29.3556304Z [3177/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-09-07T06:29:29.6572893Z [3178/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-09-07T06:29:29.7000167Z [3179/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-09-07T06:29:29.8302695Z [3180/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-09-07T06:29:30.0402432Z [3181/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-09-07T06:29:30.0847338Z [3182/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-09-07T06:29:30.2080597Z [3183/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-09-07T06:29:30.2237504Z [3184/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-09-07T06:29:30.3455748Z [3185/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-09-07T06:29:30.4692667Z [3186/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-09-07T06:29:30.8497512Z [3187/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-09-07T06:29:30.9242931Z [3188/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-09-07T06:29:31.0524694Z [3189/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-09-07T06:29:31.1601582Z [3190/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-09-07T06:29:31.2620253Z [3191/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-09-07T06:29:31.3316259Z [3192/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-09-07T06:29:31.4461977Z [3193/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-09-07T06:29:31.5172911Z [3194/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-09-07T06:29:31.8629234Z [3195/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-09-07T06:29:32.0882323Z [3196/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-09-07T06:29:32.2484699Z [3197/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-09-07T06:29:32.2635051Z [3198/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-09-07T06:29:32.3376961Z [3199/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-09-07T06:29:32.3908122Z [3200/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-09-07T06:29:32.5472508Z [3201/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-09-07T06:29:32.8457797Z [3202/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-09-07T06:29:33.1579105Z [3203/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-09-07T06:29:33.2777882Z [3204/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-09-07T06:29:33.2948859Z [3205/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-09-07T06:29:33.3606780Z [3206/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-09-07T06:29:33.5845919Z [3207/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-09-07T06:29:33.9332384Z [3208/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-09-07T06:29:34.3042698Z [3209/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-09-07T06:29:34.3158295Z [3210/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-09-07T06:29:34.3301989Z [3211/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-09-07T06:29:34.5464655Z [3212/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-09-07T06:29:34.5948039Z [3213/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-09-07T06:29:35.1559670Z [3214/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-09-07T06:29:35.2588590Z [3215/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-09-07T06:29:35.2747287Z [3216/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-09-07T06:29:35.5011530Z [3217/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-09-07T06:29:35.8666441Z [3218/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-09-07T06:29:36.0890003Z [3219/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-09-07T06:29:36.2078884Z [3220/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-09-07T06:29:36.2601872Z [3221/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-09-07T06:29:36.4777173Z [3222/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-09-07T06:29:36.5528078Z [3223/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-09-07T06:29:36.5829437Z [3224/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-09-07T06:29:36.5934868Z [3225/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-09-07T06:29:36.9019251Z [3226/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-09-07T06:29:36.9596951Z [3227/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-09-07T06:29:37.1395529Z [3228/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-09-07T06:29:37.2004407Z [3229/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-09-07T06:29:37.5051562Z [3230/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-09-07T06:29:37.6488980Z [3231/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-09-07T06:29:37.9212795Z [3232/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-09-07T06:29:37.9818860Z [3233/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-09-07T06:29:38.2246943Z [3234/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-09-07T06:29:38.7011838Z [3235/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-09-07T06:29:38.9832418Z [3236/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-09-07T06:29:39.0600361Z [3237/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-09-07T06:29:39.2314714Z [3238/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-09-07T06:29:39.7917579Z [3239/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-09-07T06:29:40.0359158Z [3240/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-09-07T06:29:40.1538748Z [3241/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-09-07T06:29:40.2070141Z [3242/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-09-07T06:29:40.2230900Z [3243/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-09-07T06:29:40.2648806Z [3244/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-09-07T06:29:40.7906031Z [3245/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-09-07T06:29:40.8226447Z [3246/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-09-07T06:29:41.0617485Z [3247/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-09-07T06:29:41.0802380Z [3248/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-09-07T06:29:41.2287502Z [3249/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-09-07T06:29:41.2375655Z [3250/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-09-07T06:29:41.2745753Z [3251/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-09-07T06:29:41.3193083Z [3252/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-09-07T06:29:41.8648453Z [3253/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-09-07T06:29:41.9362964Z [3254/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-09-07T06:29:42.1273329Z [3255/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-09-07T06:29:42.2663397Z [3256/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-09-07T06:29:42.2926122Z [3257/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-09-07T06:29:42.3468479Z [3258/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-09-07T06:29:42.4283094Z [3259/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-09-07T06:29:42.9158759Z [3260/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-09-07T06:29:43.2008722Z [3261/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-09-07T06:29:43.3338921Z [3262/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-09-07T06:29:43.4147435Z [3263/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-09-07T06:29:43.9953049Z [3264/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-09-07T06:29:44.2112606Z [3265/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-09-07T06:29:44.3588146Z [3266/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-09-07T06:29:44.4589851Z [3267/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-09-07T06:29:44.7274222Z [3268/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-09-07T06:29:45.0465923Z [3269/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-09-07T06:29:45.2673622Z [3270/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-09-07T06:29:45.4832128Z [3271/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-09-07T06:29:45.8567961Z [3272/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-09-07T06:29:45.9224480Z [3273/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-09-07T06:29:45.9594559Z [3274/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-09-07T06:29:46.0521871Z [3275/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-09-07T06:29:46.2483994Z [3276/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-09-07T06:29:46.4955927Z [3277/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-09-07T06:29:46.8879250Z [3278/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-09-07T06:29:47.1284350Z [3279/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-09-07T06:29:47.3247480Z [3280/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-09-07T06:29:47.5551874Z [3281/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-09-07T06:29:47.8559692Z [3282/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-09-07T06:29:47.9293825Z [3283/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-09-07T06:29:48.1992531Z [3284/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-09-07T06:29:48.3662602Z [3285/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-09-07T06:29:48.5612420Z [3286/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-09-07T06:29:48.6184151Z [3287/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-09-07T06:29:48.8916496Z [3288/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-09-07T06:29:48.9823621Z [3289/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-09-07T06:29:49.2514338Z [3290/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-09-07T06:29:49.4435193Z [3291/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-09-07T06:29:49.6190082Z [3292/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-09-07T06:29:49.6379177Z [3293/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-09-07T06:29:49.7213355Z [3294/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-09-07T06:29:49.8690667Z [3295/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-09-07T06:29:49.9558037Z [3296/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-09-07T06:29:50.4569013Z [3297/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-09-07T06:29:50.6934792Z [3298/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-09-07T06:29:50.7117240Z [3299/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-09-07T06:29:50.7522200Z [3300/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-09-07T06:29:50.9248705Z [3301/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-09-07T06:29:51.0227703Z [3302/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-09-07T06:29:51.4879271Z [3303/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-09-07T06:29:51.7171849Z [3304/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-09-07T06:29:51.7389110Z [3305/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-09-07T06:29:51.8085304Z [3306/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-09-07T06:29:51.8840814Z [3307/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-09-07T06:29:52.0991146Z [3308/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-09-07T06:29:52.5456057Z [3309/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-09-07T06:29:52.7204057Z [3310/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-09-07T06:29:52.8736889Z [3311/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-09-07T06:29:52.9395566Z [3312/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-09-07T06:29:53.1465582Z [3313/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-09-07T06:29:53.5836374Z [3314/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-09-07T06:29:53.7538990Z [3315/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-09-07T06:29:53.9176584Z [3316/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-09-07T06:29:53.9973708Z [3317/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-09-07T06:29:54.0708354Z [3318/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-09-07T06:29:54.1534700Z [3319/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-09-07T06:29:54.1779102Z [3320/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-09-07T06:29:54.5694990Z [3321/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-09-07T06:29:55.1135296Z [3322/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-09-07T06:29:55.2355587Z [3323/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-09-07T06:29:55.2887842Z [3324/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-09-07T06:29:55.4312325Z [3325/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-09-07T06:29:55.4486648Z [3326/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-09-07T06:29:55.5360999Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(485): warning C4805: '&=': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-09-07T06:29:55.5379660Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(485): warning C4805: '&': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-09-07T06:29:55.5382085Z [3327/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-09-07T06:29:55.5703332Z [3328/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-09-07T06:29:55.7608215Z [3329/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-09-07T06:29:56.0438182Z [3330/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-09-07T06:29:56.4721678Z [3331/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-09-07T06:29:56.7283390Z [3332/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-09-07T06:29:57.2399929Z [3333/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-09-07T06:29:57.4268526Z [3334/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-09-07T06:29:58.8348660Z [3335/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-09-07T06:29:58.8722951Z [3336/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-09-07T06:29:59.0094943Z [3337/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-09-07T06:29:59.1588596Z [3338/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-09-07T06:29:59.4592343Z [3339/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-09-07T06:29:59.6147360Z [3340/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-09-07T06:29:59.8530280Z [3341/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-09-07T06:29:59.8973789Z [3342/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-09-07T06:30:00.3277727Z [3343/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-09-07T06:30:00.5298897Z [3344/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-09-07T06:30:00.8567620Z [3345/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-09-07T06:30:00.9501823Z [3346/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-09-07T06:30:00.9735281Z [3347/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-09-07T06:30:01.1225436Z [3348/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-09-07T06:30:01.9682391Z [3349/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-09-07T06:30:02.0387065Z [3350/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-09-07T06:30:02.1677290Z [3351/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-09-07T06:30:02.6959609Z [3352/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-09-07T06:30:03.0442967Z [3353/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-09-07T06:30:03.2884625Z [3354/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-09-07T06:30:03.4825890Z [3355/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-09-07T06:30:03.9999116Z [3356/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-09-07T06:30:04.2266492Z [3357/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-09-07T06:30:04.2998906Z [3358/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-09-07T06:30:04.3877778Z [3359/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-09-07T06:30:04.5585279Z [3360/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-09-07T06:30:04.6043119Z [3361/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-09-07T06:30:04.9184481Z [3362/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-09-07T06:30:05.0754460Z [3363/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-09-07T06:30:05.4988492Z [3364/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-09-07T06:30:05.5882063Z [3365/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-09-07T06:30:05.6299460Z [3366/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-09-07T06:30:06.4402397Z [3367/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-09-07T06:30:07.9301075Z [3368/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-09-07T06:30:08.0752242Z [3369/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler_helper.cpp.obj 2025-09-07T06:30:08.4905229Z [3370/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-09-07T06:30:08.6248137Z [3371/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-09-07T06:30:08.9379532Z [3372/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-09-07T06:30:09.0389982Z [3373/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-09-07T06:30:09.0772210Z [3374/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-09-07T06:30:09.2736019Z [3375/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-09-07T06:30:09.9626891Z [3376/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-09-07T06:30:10.0270251Z [3377/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-09-07T06:30:10.9948760Z [3378/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-09-07T06:30:11.4205773Z [3379/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-09-07T06:30:11.5775259Z [3380/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-09-07T06:30:12.0286282Z [3381/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-09-07T06:30:12.3852893Z [3382/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-09-07T06:30:12.4161229Z [3383/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-09-07T06:30:12.6899146Z [3384/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-09-07T06:30:12.8092300Z [3385/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-09-07T06:30:12.8828372Z [3386/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-09-07T06:30:12.9753851Z [3387/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-09-07T06:30:14.5321736Z [3388/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-09-07T06:30:14.8763513Z [3389/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-09-07T06:30:15.0392374Z [3390/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-09-07T06:30:15.4956457Z [3391/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-09-07T06:30:15.4958712Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-09-07T06:30:15.4960313Z with 2025-09-07T06:30:15.4960645Z [ 2025-09-07T06:30:15.4960978Z T=int 2025-09-07T06:30:15.4961329Z ] 2025-09-07T06:30:15.4962354Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-09-07T06:30:15.8528402Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\ir_simplifier.cpp(318): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-09-07T06:30:15.8530580Z with 2025-09-07T06:30:15.8530916Z [ 2025-09-07T06:30:15.8531243Z T=int 2025-09-07T06:30:15.8531601Z ] 2025-09-07T06:30:15.8532432Z [3392/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-09-07T06:30:15.9333583Z [3393/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-09-07T06:30:16.5177086Z [3394/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-09-07T06:30:16.6029240Z [3395/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-09-07T06:30:17.9850887Z [3396/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-09-07T06:30:18.5520294Z [3397/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-09-07T06:30:18.5522525Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-09-07T06:30:18.5523665Z with 2025-09-07T06:30:18.5523852Z [ 2025-09-07T06:30:18.5524060Z T=int 2025-09-07T06:30:18.5524329Z ] 2025-09-07T06:30:18.5524964Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-09-07T06:30:18.6923402Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp(627): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-09-07T06:30:18.6925526Z with 2025-09-07T06:30:18.6925911Z [ 2025-09-07T06:30:18.6926224Z T=int 2025-09-07T06:30:18.6928258Z ] 2025-09-07T06:30:18.6929099Z [3398/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-09-07T06:30:19.1465742Z [3399/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-09-07T06:30:19.6110591Z [3400/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-09-07T06:30:19.6828924Z [3401/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-09-07T06:30:20.1199543Z [3402/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-09-07T06:30:20.2428511Z [3403/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-09-07T06:30:20.2769231Z [3404/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-09-07T06:30:20.5210679Z [3405/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-09-07T06:30:20.6064878Z [3406/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-09-07T06:30:21.2376611Z [3407/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-09-07T06:30:21.3323287Z [3408/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-09-07T06:30:21.5581632Z [3409/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-09-07T06:30:21.5752290Z [3410/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-09-07T06:30:21.6408049Z [3411/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-09-07T06:30:21.8361301Z [3412/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-09-07T06:30:22.1552553Z [3413/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-09-07T06:30:22.3026627Z [3414/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-09-07T06:30:22.3271334Z [3415/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-09-07T06:30:22.3493878Z [3416/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-09-07T06:30:22.5212839Z [3417/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-09-07T06:30:22.5925327Z [3418/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-09-07T06:30:22.8491918Z [3419/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-09-07T06:30:23.1461254Z [3420/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-09-07T06:30:23.1463735Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-09-07T06:30:23.1465344Z with 2025-09-07T06:30:23.1465674Z [ 2025-09-07T06:30:23.1465995Z T=int 2025-09-07T06:30:23.1466323Z ] 2025-09-07T06:30:23.1467447Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-09-07T06:30:23.1875307Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\registerizer.cpp(92): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-09-07T06:30:23.1877178Z with 2025-09-07T06:30:23.1877489Z [ 2025-09-07T06:30:23.1877751Z T=int 2025-09-07T06:30:23.1878035Z ] 2025-09-07T06:30:23.1878737Z [3421/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-09-07T06:30:23.1955989Z [3422/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-09-07T06:30:23.3161106Z [3423/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-09-07T06:30:23.3480309Z [3424/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-09-07T06:30:23.3738862Z [3425/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-09-07T06:30:23.5374747Z [3426/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-09-07T06:30:23.5772331Z [3427/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-09-07T06:30:23.6828044Z [3428/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-09-07T06:30:24.0714049Z [3429/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-09-07T06:30:24.1756174Z [3430/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-09-07T06:30:24.2124704Z [3431/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-09-07T06:30:24.3862779Z [3432/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-09-07T06:30:24.4150805Z [3433/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-09-07T06:30:24.5180140Z [3434/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-09-07T06:30:24.5593052Z [3435/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-09-07T06:30:24.5896894Z [3436/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-09-07T06:30:24.6285743Z [3437/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-09-07T06:30:25.1397633Z [3438/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-09-07T06:30:25.4619855Z [3439/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-09-07T06:30:25.4788314Z [3440/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-09-07T06:30:25.4956752Z [3441/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\mtia\profiler\MTIAMemoryProfiler.cpp.obj 2025-09-07T06:30:25.5483622Z [3442/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-09-07T06:30:25.6178486Z [3443/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-09-07T06:30:25.6880920Z [3444/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-09-07T06:30:25.8407179Z [3445/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-09-07T06:30:26.0061456Z [3446/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-09-07T06:30:26.3391750Z [3447/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-09-07T06:30:26.3902483Z [3448/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-09-07T06:30:26.4158010Z [3449/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-09-07T06:30:26.4583130Z [3450/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-09-07T06:30:26.5803378Z [3451/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-09-07T06:30:26.6353900Z [3452/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-09-07T06:30:26.6413458Z [3453/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-09-07T06:30:26.7265825Z [3454/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-09-07T06:30:26.7465904Z [3455/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-09-07T06:30:26.7836495Z [3456/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-09-07T06:30:27.2103565Z [3457/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-09-07T06:30:27.4847995Z [3458/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-09-07T06:30:27.5403928Z [3459/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-09-07T06:30:27.5556349Z [3460/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-09-07T06:30:27.8530242Z [3461/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-09-07T06:30:28.2813835Z [3462/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-09-07T06:30:28.4838524Z [3463/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-09-07T06:30:28.5498867Z [3464/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-09-07T06:30:29.7683490Z [3465/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Graph.cpp.obj 2025-09-07T06:30:29.8052163Z [3466/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\ModelRunner.cpp.obj 2025-09-07T06:30:30.0869326Z [3467/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-09-07T06:30:30.4221643Z [3468/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-09-07T06:30:30.4460676Z [3469/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-09-07T06:30:30.4482189Z [3470/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-09-07T06:30:30.9603268Z [3471/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphPasses.cpp.obj 2025-09-07T06:30:31.0497102Z [3472/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-09-07T06:30:31.2187465Z [3473/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Serialization.cpp.obj 2025-09-07T06:30:31.3240625Z [3474/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-09-07T06:30:31.4551204Z [3475/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-09-07T06:30:31.4635005Z [3476/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Placement.cpp.obj 2025-09-07T06:30:31.4775350Z [3477/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphUtils.cpp.obj 2025-09-07T06:30:31.5631147Z [3478/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\DelegateExecutor.cpp.obj 2025-09-07T06:30:31.8848267Z [3479/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-09-07T06:30:32.0166166Z [3480/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-09-07T06:30:32.1419654Z [3481/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-09-07T06:30:32.3379195Z [3482/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-09-07T06:30:32.4584200Z [3483/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Executor.cpp.obj 2025-09-07T06:30:32.5960758Z [3484/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-09-07T06:30:32.5996479Z [3485/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-09-07T06:30:32.7075724Z [3486/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\OpKernel.cpp.obj 2025-09-07T06:30:32.7657146Z [3487/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\common\FileUtil.cpp.obj 2025-09-07T06:30:32.9989093Z [3488/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-09-07T06:30:33.0457433Z [3489/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-09-07T06:30:33.1929538Z [3490/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-09-07T06:30:33.2084028Z [3491/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-09-07T06:30:33.2173649Z [3492/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Weights.cpp.obj 2025-09-07T06:30:33.5733542Z [3493/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\detail\ITree.cpp.obj 2025-09-07T06:30:33.7415721Z [3494/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-09-07T06:30:34.0042903Z [3495/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-09-07T06:30:34.0491723Z [3496/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-09-07T06:30:34.0589430Z [3497/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-09-07T06:30:34.1740452Z [3498/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-09-07T06:30:34.3026618Z [3499/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-09-07T06:30:34.7569844Z [3500/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-09-07T06:30:35.0758132Z [3501/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-09-07T06:30:35.1219960Z [3502/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-09-07T06:30:36.1383345Z [3503/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\passes\SubgraphRewriter.cpp.obj 2025-09-07T06:30:36.1795794Z [3504/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\passes\pass_manager\GraphPasses.cpp.obj 2025-09-07T06:30:37.0445623Z [3505/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-09-07T06:30:37.2191263Z [3506/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\passes\pass_manager\PassManager.cpp.obj 2025-09-07T06:30:37.2493801Z [3507/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\PrimKernelRegistry.cpp.obj 2025-09-07T06:30:37.5674825Z [3508/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\triton\CpuTritonKernelManager.cpp.obj 2025-09-07T06:30:37.8658483Z [3509/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\NativeKernels.cpp.obj 2025-09-07T06:30:38.1779280Z [3510/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-09-07T06:30:38.2233931Z [3511/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\TritonKernel.cpp.obj 2025-09-07T06:30:38.2885903Z [3512/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedStaticDispatchKernels.cpp.obj 2025-09-07T06:30:38.3890471Z [3513/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelRegistry.cpp.obj 2025-09-07T06:30:38.3985280Z [3514/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-09-07T06:30:38.6115193Z [3515/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-09-07T06:30:38.6555710Z [3516/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedNativeStaticDispatchKernels.cpp.obj 2025-09-07T06:30:39.2800911Z [3517/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-09-07T06:30:39.3242734Z [3518/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-09-07T06:30:39.3702744Z [3519/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-09-07T06:30:39.7134571Z [3520/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-09-07T06:30:39.8935022Z [3521/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelHandlerRegistry.cpp.obj 2025-09-07T06:30:40.0329082Z [3522/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-09-07T06:30:40.3975687Z [3523/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-09-07T06:30:40.9273010Z [3524/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-09-07T06:30:40.9481061Z [3525/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-09-07T06:30:41.0417295Z [3526/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-09-07T06:30:41.9331593Z [3527/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-09-07T06:30:42.2344463Z [3528/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-09-07T06:30:42.7454221Z [3529/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-09-07T06:30:43.0954901Z [3530/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-09-07T06:30:43.2821274Z [3531/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-09-07T06:30:43.4294215Z [3532/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-09-07T06:30:43.5320550Z [3533/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-09-07T06:30:43.6930346Z [3534/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-09-07T06:30:43.9000879Z [3535/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-09-07T06:30:44.4260321Z [3536/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-09-07T06:30:44.4660700Z [3537/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-09-07T06:30:44.4693417Z [3538/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-09-07T06:30:44.5368088Z [3539/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-09-07T06:30:44.6142096Z [3540/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-09-07T06:30:44.7573172Z [3541/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-09-07T06:30:45.1039065Z [3542/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-09-07T06:30:45.1404652Z [3543/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-09-07T06:30:45.4037016Z [3544/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-09-07T06:30:45.6354588Z [3545/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-09-07T06:30:45.6694208Z [3546/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-09-07T06:30:46.4274595Z [3547/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-09-07T06:30:46.5870277Z [3548/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-09-07T06:30:48.1110982Z [3549/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-09-07T06:30:48.2497236Z [3550/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-09-07T06:30:48.5428472Z [3551/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-09-07T06:30:49.0216961Z [3552/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-09-07T06:30:49.1375875Z [3553/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-09-07T06:30:49.5271362Z [3554/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-09-07T06:30:49.6022194Z [3555/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-09-07T06:30:49.6093756Z [3556/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-09-07T06:30:49.7039921Z [3557/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FlightRecorder.cpp.obj 2025-09-07T06:30:50.2525002Z [3558/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-09-07T06:30:50.5262331Z [3559/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-09-07T06:30:50.5658166Z [3560/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-09-07T06:30:51.5044107Z [3561/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Types.cpp.obj 2025-09-07T06:30:51.8461328Z [3562/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-09-07T06:30:52.0450153Z [3563/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-09-07T06:30:53.0255790Z [3564/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-09-07T06:30:53.1414173Z [3565/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-09-07T06:30:53.4902482Z [3566/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-09-07T06:30:53.5416042Z [3567/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-09-07T06:30:53.6125247Z [3568/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-09-07T06:30:53.9005622Z [3569/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\cuda\StreamBlock.cpp.obj 2025-09-07T06:30:54.0179089Z [3570/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-09-07T06:30:54.0474212Z [3571/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-09-07T06:30:54.1192448Z [3572/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-09-07T06:30:54.3448975Z [3573/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-09-07T06:30:54.4987409Z [3574/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-09-07T06:30:55.3357205Z [3575/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-09-07T06:30:55.4201164Z [3576/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-09-07T06:30:55.7837211Z [3577/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-09-07T06:30:55.9773399Z [3578/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-09-07T06:30:56.0642226Z [3579/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-09-07T06:30:56.5336214Z [3580/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-09-07T06:30:57.5713199Z [3581/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-09-07T06:30:57.8711610Z [3582/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-09-07T06:30:58.0275646Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\distributed\c10d\logger.cpp(294): warning C4805: '!=': unsafe mix of type '__int64' and type 'bool' in operation 2025-09-07T06:30:58.0276762Z [3583/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-09-07T06:30:58.1738954Z [3584/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-09-07T06:30:58.4726403Z [3585/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-09-07T06:30:58.9134345Z [3586/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.cpp.obj 2025-09-07T06:30:59.3444951Z [3587/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.cpp.obj 2025-09-07T06:30:59.3860593Z [3588/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-09-07T06:30:59.5662351Z [3589/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-09-07T06:30:59.8789795Z [3590/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-09-07T06:31:00.1316935Z [3591/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-09-07T06:31:01.2962395Z [3592/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-09-07T06:31:01.4937815Z [3593/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-09-07T06:31:01.5720609Z [3594/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-09-07T06:31:02.6203595Z [3595/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-09-07T06:31:02.8972733Z [3596/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-09-07T06:31:03.2201285Z [3597/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-09-07T06:31:03.5015347Z [3598/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-09-07T06:31:03.7572199Z [3599/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-09-07T06:31:05.0401165Z [3600/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-09-07T06:31:05.1425439Z [3601/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-09-07T06:31:05.2466895Z [3602/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-09-07T06:31:06.3089151Z [3603/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-09-07T06:31:06.5234054Z [3604/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-09-07T06:31:06.8893296Z [3605/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-09-07T06:31:07.2409890Z [3606/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-09-07T06:31:07.5281631Z [3607/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-09-07T06:31:08.6554104Z [3608/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-09-07T06:31:08.8014226Z [3609/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-09-07T06:31:08.8847031Z [3610/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-09-07T06:31:09.9834472Z [3611/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-09-07T06:31:10.1621260Z [3612/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-09-07T06:31:10.5613725Z [3613/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-09-07T06:31:10.9183208Z [3614/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-09-07T06:31:11.1950120Z [3615/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-09-07T06:31:12.2457917Z [3616/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-09-07T06:31:12.3799523Z [3617/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-09-07T06:31:12.6106399Z [3618/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-09-07T06:31:13.4540699Z [3619/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-09-07T06:31:13.6728589Z [3620/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-09-07T06:31:14.1315754Z [3621/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-09-07T06:31:14.3820297Z [3622/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-09-07T06:31:14.6793393Z [3623/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-09-07T06:31:15.7587844Z [3624/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-09-07T06:31:15.8286068Z [3625/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-09-07T06:31:16.1269981Z [3626/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-09-07T06:31:16.9327951Z [3627/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-09-07T06:31:17.2232166Z [3628/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-09-07T06:31:17.6652293Z [3629/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-09-07T06:31:17.9048310Z [3630/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-09-07T06:31:18.3928126Z [3631/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-09-07T06:31:19.3649944Z [3632/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-09-07T06:31:19.4638427Z [3633/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-09-07T06:31:19.7983858Z [3634/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-09-07T06:31:20.2099518Z [3635/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-09-07T06:31:20.3059257Z [3636/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-09-07T06:31:20.6348355Z [3637/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-09-07T06:31:20.6579562Z [3638/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-09-07T06:31:20.7308672Z [3639/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-09-07T06:31:21.1602994Z [3640/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-09-07T06:31:21.2415759Z [3641/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-09-07T06:31:21.2416948Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.2418250Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.3116263Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.3118983Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.3120891Z [3642/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-09-07T06:31:21.5624298Z [3643/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-09-07T06:31:21.7490717Z [3644/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-09-07T06:31:21.7492362Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.7494507Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8086526Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8087874Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8089239Z [3645/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-09-07T06:31:21.8090598Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8092211Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8316782Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8318201Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8320160Z [3646/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-09-07T06:31:21.8321337Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.8322916Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.9100541Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.9102845Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.9105397Z [3647/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-09-07T06:31:21.9107394Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:21.9109695Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.0034056Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.0036555Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.0038313Z [3648/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-09-07T06:31:22.5916985Z [3649/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:22.5919244Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.5921781Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.5985952Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.5987449Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.5988587Z [3650/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-09-07T06:31:22.5989717Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.5991220Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.6215101Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.6217548Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.6219797Z [3651/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:22.6221634Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.6223843Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8145033Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8147671Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8149900Z [3652/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:22.8152139Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8154548Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8735559Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8738280Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8740170Z [3653/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:22.8742152Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.8744172Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.9401855Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.9404657Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.9406715Z [3654/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:22.9408737Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:22.9411103Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.1551524Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.1553004Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.1554623Z [3655/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:23.1555957Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4425251Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4426790Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4428241Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4429330Z [3656/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-09-07T06:31:23.4430343Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4432851Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4940008Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4942578Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4944724Z [3657/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:23.4946943Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.4949345Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.6769432Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.6771996Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.6775241Z [3658/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:23.6777310Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.6779656Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.8159136Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.8160677Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.8162055Z [3659/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:23.8163161Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.8164773Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.9484767Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.9487250Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:23.9488771Z [3660/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-09-07T06:31:24.0245540Z [3661/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-09-07T06:31:24.0375957Z [3662/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.0377702Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.0390862Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2068070Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2069570Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2070743Z [3663/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.2072161Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2074320Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2338498Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2340062Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2341718Z [3664/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.2342866Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.2344127Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3892373Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3893737Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3894983Z [3665/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.3896095Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3897781Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3934859Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3936775Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3938117Z [3666/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.3939219Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.3940678Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.5981973Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.5983497Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.5985366Z [3667/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.5987281Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.5989614Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.7345864Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.7347435Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.7348730Z [3668/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.7350169Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.7351704Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.8171982Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.8174408Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.8176434Z [3669/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.8178343Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.8180646Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9093274Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9095560Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9097682Z [3670/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.9099693Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9102005Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9965512Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9966999Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9968238Z [3671/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:24.9969730Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:24.9971081Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.0848126Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.0850603Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.0853093Z [3672/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.0854924Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.2233848Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.2236331Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.2238835Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.2240945Z [3673/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.2242966Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.2245356Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.3414163Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.3416821Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.3418848Z [3674/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.3420758Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.3422973Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4310640Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4313197Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4314440Z [3675/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.4315650Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4316968Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4511999Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4513383Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4514645Z [3676/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.4515823Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.4517927Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5245441Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5246903Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5248318Z [3677/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.5249378Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5250769Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5817487Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5819051Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5820368Z [3678/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.5821567Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.5823211Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.6286472Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.6288122Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.6289233Z [3679/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.6290889Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.6293345Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.9835271Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.9837517Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.9839923Z [3680/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:25.9841840Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:25.9844147Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.1138969Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.1141221Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.1142661Z [3681/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.1143881Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.1145262Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2253223Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2255426Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2257723Z [3682/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.2259725Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2262347Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2835363Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2837648Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2839970Z [3683/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.2841469Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.2844578Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3111669Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3114002Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3116017Z [3684/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.3117861Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3120121Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3294550Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3296047Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3297502Z [3685/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.3298729Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.3300223Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.4954704Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.4957193Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.4959313Z [3686/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.4961237Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.4963547Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.5929150Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.5931734Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.5933775Z [3687/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.5935805Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.5937978Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.6656570Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.6659421Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.6661474Z [3688/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.6663624Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.6665998Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.8793550Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.8796069Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.8798538Z [3689/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:26.8800573Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:26.8802701Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.0154466Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.0156004Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.0157151Z [3690/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.1094730Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1096197Z [3691/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.1715072Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1717452Z [3692/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.1719402Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1722025Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1884658Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1886207Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1887319Z [3693/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.1888460Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1889736Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1982619Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1984020Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1985203Z [3694/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.1986334Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.1988228Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.2358189Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.2360946Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.2362916Z [3695/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.2364772Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.2367028Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.6381766Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.6383182Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.6384465Z [3696/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.6385823Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.6387183Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.7870615Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.7872529Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.7874402Z [3697/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.7875954Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.7878217Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9243623Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9245000Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9246473Z [3698/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.9247711Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9248977Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9418516Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9419807Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9421314Z [3699/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:27.9422428Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9423726Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9425158Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9426539Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:27.9427939Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-09-07T06:31:27.9429059Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-09-07T06:31:27.9431188Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-09-07T06:31:27.9435506Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-09-07T06:31:27.9437883Z with 2025-09-07T06:31:27.9438210Z [ 2025-09-07T06:31:27.9439064Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-09-07T06:31:27.9439616Z ] 2025-09-07T06:31:27.9441169Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-09-07T06:31:27.9445536Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-09-07T06:31:27.9449618Z with 2025-09-07T06:31:27.9449971Z [ 2025-09-07T06:31:27.9450605Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-09-07T06:31:27.9451418Z ] 2025-09-07T06:31:27.9454870Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-09-07T06:31:27.9458469Z with 2025-09-07T06:31:27.9459026Z [ 2025-09-07T06:31:27.9459652Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t, 2025-09-07T06:31:27.9460554Z data_t=at::vec::AVX2::Vectorized, 2025-09-07T06:31:27.9462009Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-09-07T06:31:27.9463977Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-09-07T06:31:27.9464939Z ] 2025-09-07T06:31:27.9466072Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX2::Vectorized &)' being compiled 2025-09-07T06:31:27.9467439Z with 2025-09-07T06:31:27.9467681Z [ 2025-09-07T06:31:27.9467874Z scalar_t=float, 2025-09-07T06:31:27.9468477Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-09-07T06:31:27.9469509Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-09-07T06:31:27.9470244Z ] 2025-09-07T06:31:27.9471876Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-09-07T06:31:27.9473304Z with 2025-09-07T06:31:27.9473615Z [ 2025-09-07T06:31:28.0350397Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-09-07T06:31:28.0351144Z ] 2025-09-07T06:31:28.0351769Z [3700/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.0353165Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.0354826Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.0505619Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.0507206Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.0509250Z [3701/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.0737316Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.0739293Z [3702/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.2655253Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.2656996Z [3703/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.2697097Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.2699344Z [3704/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.2701984Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.2703313Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6185929Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6188455Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6190630Z [3705/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.6192643Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6195242Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6450717Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6452303Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6453703Z [3706/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.6455245Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.6456496Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.7621828Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.7623316Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.7624813Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-09-07T06:31:28.7625991Z [3707/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.7627118Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.7628373Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.8674686Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.8676206Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.8677392Z [3708/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-09-07T06:31:28.9615938Z [3709/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.9617883Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.9954714Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.9957181Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.9959649Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.9961737Z [3710/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:28.9963843Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:28.9966172Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0182798Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0184717Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0186357Z [3711/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-09-07T06:31:29.0187632Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0188869Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0683283Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0685873Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0687781Z [3712/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-09-07T06:31:29.0689685Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.0691741Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.2424552Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.2427097Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:31:29.2429272Z [3713/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-09-07T06:31:29.3232529Z [3714/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-09-07T06:31:29.4672476Z [3715/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-09-07T06:31:29.6750124Z [3716/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-09-07T06:31:29.8729149Z [3717/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:29.9119765Z [3718/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-09-07T06:31:29.9963029Z [3719/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.0378673Z [3720/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.0447374Z [3721/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.1106154Z [3722/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.2702693Z [3723/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.5540136Z [3724/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.6121778Z [3725/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.7329063Z [3726/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:30.9570781Z [3727/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.0040974Z [3728/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.0701083Z [3729/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.1526798Z [3730/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.1698443Z [3731/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.3107299Z [3732/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.3867647Z [3733/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.5779792Z [3734/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.7208086Z [3735/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.7423461Z [3736/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:31.8460658Z [3737/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.0548921Z [3738/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.1404758Z [3739/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.1805173Z [3740/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.3031556Z [3741/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.3332509Z [3742/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.4149883Z [3743/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.4400425Z [3744/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.4512827Z [3745/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:32.9615781Z [3746/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.0808168Z [3747/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.0925608Z [3748/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.1550029Z [3749/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.2098233Z [3750/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.2380946Z [3751/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.3269986Z [3752/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.4242072Z [3753/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.6148427Z [3754/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.7488416Z [3755/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:33.8690758Z [3756/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.0801849Z [3757/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.1004339Z [3758/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.1326985Z [3759/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.1373161Z [3760/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.2295517Z [3761/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.4900635Z [3762/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.7639672Z [3763/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.7641683Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-09-07T06:31:34.7643766Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-09-07T06:31:34.7646146Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-09-07T06:31:34.7649098Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(190): note: while compiling class template member function 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' 2025-09-07T06:31:34.7651140Z with 2025-09-07T06:31:34.7651546Z [ 2025-09-07T06:31:34.7652008Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-09-07T06:31:34.7652502Z ] 2025-09-07T06:31:34.7653928Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-09-07T06:31:34.7658648Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(192): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::run_parallel_pdist::zdist_calc>>(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-09-07T06:31:34.7660984Z with 2025-09-07T06:31:34.7661453Z [ 2025-09-07T06:31:34.7662092Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t 2025-09-07T06:31:34.7662897Z ] 2025-09-07T06:31:34.7666326Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-09-07T06:31:34.7669826Z with 2025-09-07T06:31:34.7670246Z [ 2025-09-07T06:31:34.7670870Z scalar_t=at::native::`anonymous-namespace'::pdist_forward_kernel_impl::scalar_t, 2025-09-07T06:31:34.7671730Z data_t=at::vec::AVX512::Vectorized, 2025-09-07T06:31:34.7673025Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-09-07T06:31:34.7674969Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-09-07T06:31:34.7675879Z ] 2025-09-07T06:31:34.7677037Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX512::Vectorized &)' being compiled 2025-09-07T06:31:34.7679013Z with 2025-09-07T06:31:34.7679245Z [ 2025-09-07T06:31:34.7679452Z scalar_t=float, 2025-09-07T06:31:34.7680029Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-09-07T06:31:34.7872123Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-09-07T06:31:34.7873912Z ] 2025-09-07T06:31:34.7875619Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(177): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-09-07T06:31:34.7877167Z with 2025-09-07T06:31:34.7877489Z [ 2025-09-07T06:31:34.7878577Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-09-07T06:31:34.7879767Z ] 2025-09-07T06:31:34.7880827Z [3764/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.8178876Z [3765/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.9044441Z [3766/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:34.9240162Z [3767/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.1072348Z [3768/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.2007452Z [3769/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.2155982Z [3770/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.4432825Z [3771/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.5042524Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-09-07T06:31:35.5044182Z [3772/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.7151044Z [3773/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.7923345Z [3774/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.8363106Z [3775/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-09-07T06:31:35.8854049Z [3776/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-09-07T06:31:36.0062787Z [3777/7565] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-09-07T06:31:36.3574351Z [3778/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAContext.cpp.obj 2025-09-07T06:31:36.6171010Z [3779/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CuSparseHandlePool.cpp.obj 2025-09-07T06:31:36.6650002Z [3780/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\EmptyTensor.cpp.obj 2025-09-07T06:31:36.7879271Z [3781/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseDescriptors.cpp.obj 2025-09-07T06:31:36.8907789Z [3782/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CachingHostAllocator.cpp.obj 2025-09-07T06:31:37.0900739Z [3783/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_basic.cpp.obj 2025-09-07T06:31:37.1198310Z [3784/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Exceptions.cpp.obj 2025-09-07T06:31:37.2948860Z [3785/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_complex.cpp.obj 2025-09-07T06:31:37.3434844Z [3786/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\PeerToPeerAccess.cpp.obj 2025-09-07T06:31:37.6164578Z [3787/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\LazyNVRTC.cpp.obj 2025-09-07T06:31:37.7527685Z [3788/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGeneratorImpl.cpp.obj 2025-09-07T06:31:37.8068204Z [3789/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGraph.cpp.obj 2025-09-07T06:31:37.8769307Z [3790/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\CUDAHooks.cpp.obj 2025-09-07T06:31:38.1091213Z [3791/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cpp.obj 2025-09-07T06:31:38.2128943Z [3792/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Resize.cpp.obj 2025-09-07T06:31:38.4139003Z [3793/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cpp.obj 2025-09-07T06:31:38.5796247Z [3794/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvPlaceholders.cpp.obj 2025-09-07T06:31:38.6832502Z [3795/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\AffineGridGenerator.cpp.obj 2025-09-07T06:31:38.8258936Z [3796/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\BatchNorm.cpp.obj 2025-09-07T06:31:38.9702713Z [3797/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvShared.cpp.obj 2025-09-07T06:31:39.2741003Z [3798/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v7.cpp.obj 2025-09-07T06:31:39.4983492Z [3799/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\GridSampler.cpp.obj 2025-09-07T06:31:39.5582363Z [3800/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v8.cpp.obj 2025-09-07T06:31:39.7100403Z [3801/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\LossCTC.cpp.obj 2025-09-07T06:31:39.7874845Z [3802/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\BatchNorm_miopen.cpp.obj 2025-09-07T06:31:39.9773424Z [3803/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\RNN.cpp.obj 2025-09-07T06:31:40.1321633Z [3804/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\Conv_miopen.cpp.obj 2025-09-07T06:31:40.3490155Z [3805/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\RNN_miopen.cpp.obj 2025-09-07T06:31:41.0943694Z [3806/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\BinaryOps.cpp.obj 2025-09-07T06:31:42.3529051Z [3807/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\MHA.cpp.obj 2025-09-07T06:31:42.5920752Z [3808/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerUtils.cpp.obj 2025-09-07T06:31:42.6850759Z [3809/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cpp.obj 2025-09-07T06:31:43.6014358Z [3810/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvPrepack.cpp.obj 2025-09-07T06:31:43.8617887Z [3811/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Conv.cpp.obj 2025-09-07T06:31:43.8811645Z [3812/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvUnpackImpl.cpp.obj 2025-09-07T06:31:44.7100773Z [3813/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Linear.cpp.obj 2025-09-07T06:31:44.9681072Z [3814/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\sdp_utils.cpp.obj 2025-09-07T06:31:45.6515846Z [3815/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Handle.cpp.obj 2025-09-07T06:31:45.8546968Z [3816/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearPrepack.cpp.obj 2025-09-07T06:31:45.9699113Z [3817/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearUnpackImpl.cpp.obj 2025-09-07T06:31:46.0364562Z [3818/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Pooling.cpp.obj 2025-09-07T06:31:46.0511147Z [3819/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\cuSPARSELtOps.cpp.obj 2025-09-07T06:31:46.9800576Z [3820/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\distributed\c10d\reducer_cuda.cpp.obj 2025-09-07T06:31:47.0802835Z [3821/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.cpp.obj 2025-09-07T06:31:47.2318817Z [3822/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\AutocastRNN.cpp.obj 2025-09-07T06:31:47.5728871Z [3823/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Sleep.cu.obj 2025-09-07T06:31:47.9113285Z Sleep.cu 2025-09-07T06:31:47.9113664Z tmpxft_00000d80_00000000-7_Sleep.cudafe1.cpp 2025-09-07T06:31:47.9114531Z [3824/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Descriptors.cpp.obj 2025-09-07T06:31:48.5966443Z [3825/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Types.cpp.obj 2025-09-07T06:31:51.3110665Z [3826/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorFactories.cu.obj 2025-09-07T06:31:53.2552088Z TensorFactories.cu 2025-09-07T06:31:53.2552473Z tmpxft_000001f8_00000000-7_TensorFactories.cudafe1.cpp 2025-09-07T06:31:53.2553135Z [3827/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-f16-8.cu.obj 2025-09-07T06:31:53.3281041Z cub-RadixSortPairs-f16-8.cu 2025-09-07T06:31:53.3281759Z tmpxft_00001350_00000000-7_cub-RadixSortPairs-f16-8.cudafe1.cpp 2025-09-07T06:31:53.3282500Z [3828/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-4.cu.obj 2025-09-07T06:31:53.3677599Z cub-RadixSortPairs-int32-4.cu 2025-09-07T06:31:53.3678400Z tmpxft_00000e98_00000000-7_cub-RadixSortPairs-int32-4.cudafe1.cpp 2025-09-07T06:31:53.3679617Z [3829/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortKeys.cu.obj 2025-09-07T06:31:53.3795093Z cub-RadixSortKeys.cu 2025-09-07T06:31:53.3795734Z tmpxft_0000145c_00000000-7_cub-RadixSortKeys.cudafe1.cpp 2025-09-07T06:31:53.3796787Z [3830/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-1.cu.obj 2025-09-07T06:31:53.3829336Z cub-RadixSortPairs-int64-1.cu 2025-09-07T06:31:53.3830101Z tmpxft_00000f78_00000000-7_cub-RadixSortPairs-int64-1.cudafe1.cpp 2025-09-07T06:31:53.3831261Z [3831/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-1.cu.obj 2025-09-07T06:31:53.4063098Z cub-RadixSortPairs-int32-1.cu 2025-09-07T06:31:53.4063865Z tmpxft_0000177c_00000000-7_cub-RadixSortPairs-int32-1.cudafe1.cpp 2025-09-07T06:31:53.4065469Z [3832/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-2.cu.obj 2025-09-07T06:31:54.9956114Z cub-RadixSortPairs-int32-2.cu 2025-09-07T06:31:54.9959363Z tmpxft_00001158_00000000-7_cub-RadixSortPairs-int32-2.cudafe1.cpp 2025-09-07T06:31:54.9961143Z [3833/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-2.cu.obj 2025-09-07T06:31:56.8249420Z cub-RadixSortPairs-int64-2.cu 2025-09-07T06:31:56.8249882Z tmpxft_00001190_00000000-7_cub-RadixSortPairs-int64-2.cudafe1.cpp 2025-09-07T06:31:56.8250577Z [3834/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-4.cu.obj 2025-09-07T06:31:56.8519850Z cub-RadixSortPairs-int64-4.cu 2025-09-07T06:31:56.8520631Z tmpxft_0000042c_00000000-7_cub-RadixSortPairs-int64-4.cudafe1.cpp 2025-09-07T06:31:56.8522072Z [3835/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint64-8.cu.obj 2025-09-07T06:31:56.9527053Z cub-RadixSortPairs-uint64-8.cu 2025-09-07T06:31:56.9527518Z tmpxft_000014cc_00000000-7_cub-RadixSortPairs-uint64-8.cudafe1.cpp 2025-09-07T06:31:56.9528214Z [3836/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint32-8.cu.obj 2025-09-07T06:31:56.9806977Z cub-RadixSortPairs-uint32-8.cu 2025-09-07T06:31:56.9807741Z tmpxft_00000608_00000000-7_cub-RadixSortPairs-uint32-8.cudafe1.cpp 2025-09-07T06:31:56.9809307Z [3837/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\IndexUtils.cu.obj 2025-09-07T06:31:57.0067719Z IndexUtils.cu 2025-09-07T06:31:57.0068299Z tmpxft_000004e0_00000000-7_IndexUtils.cudafe1.cpp 2025-09-07T06:31:57.0069657Z [3838/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-scalars.cu.obj 2025-09-07T06:31:57.1543830Z cub-RadixSortPairs-scalars.cu 2025-09-07T06:31:57.1545069Z tmpxft_00001630_00000000-7_cub-RadixSortPairs-scalars.cudafe1.cpp 2025-09-07T06:31:57.1547266Z [3839/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint16-8.cu.obj 2025-09-07T06:31:57.1813867Z cub-RadixSortPairs-uint16-8.cu 2025-09-07T06:31:57.1814617Z tmpxft_000010a0_00000000-7_cub-RadixSortPairs-uint16-8.cudafe1.cpp 2025-09-07T06:31:57.1817275Z [3840/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub.cu.obj 2025-09-07T06:31:59.3472852Z cub.cu 2025-09-07T06:31:59.3473133Z tmpxft_0000109c_00000000-7_cub.cudafe1.cpp 2025-09-07T06:31:59.3473709Z [3841/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AbsKernel.cu.obj 2025-09-07T06:31:59.4745826Z AbsKernel.cu 2025-09-07T06:31:59.4746301Z tmpxft_0000176c_00000000-7_AbsKernel.cudafe1.cpp 2025-09-07T06:31:59.4747491Z [3842/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationEluKernel.cu.obj 2025-09-07T06:31:59.5507817Z ActivationEluKernel.cu 2025-09-07T06:31:59.5508461Z tmpxft_00000700_00000000-7_ActivationEluKernel.cudafe1.cpp 2025-09-07T06:31:59.5509734Z [3843/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGeluKernel.cu.obj 2025-09-07T06:31:59.6293481Z ActivationGeluKernel.cu 2025-09-07T06:31:59.6294237Z tmpxft_000012fc_00000000-7_ActivationGeluKernel.cudafe1.cpp 2025-09-07T06:31:59.6295441Z [3844/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGluKernel.cu.obj 2025-09-07T06:31:59.7042615Z ActivationGluKernel.cu 2025-09-07T06:31:59.7045272Z tmpxft_00000b80_00000000-7_ActivationGluKernel.cudafe1.cpp 2025-09-07T06:31:59.7046615Z [3845/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardshrinkKernel.cu.obj 2025-09-07T06:31:59.7609473Z ActivationHardshrinkKernel.cu 2025-09-07T06:31:59.7610281Z tmpxft_00000cf8_00000000-7_ActivationHardshrinkKernel.cudafe1.cpp 2025-09-07T06:31:59.7611650Z [3846/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardsigmoidKernel.cu.obj 2025-09-07T06:32:00.1194551Z ActivationHardsigmoidKernel.cu 2025-09-07T06:32:00.1195298Z tmpxft_00000954_00000000-7_ActivationHardsigmoidKernel.cudafe1.cpp 2025-09-07T06:32:00.1197133Z [3847/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\jiterator.cu.obj 2025-09-07T06:32:01.9011619Z jiterator.cu 2025-09-07T06:32:01.9012161Z tmpxft_00001590_00000000-7_jiterator.cudafe1.cpp 2025-09-07T06:32:01.9013355Z [3848/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardswishKernel.cu.obj 2025-09-07T06:32:02.0802068Z ActivationHardswishKernel.cu 2025-09-07T06:32:02.0802840Z tmpxft_0000069c_00000000-7_ActivationHardswishKernel.cudafe1.cpp 2025-09-07T06:32:02.0804161Z [3849/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLeakyReluKernel.cu.obj 2025-09-07T06:32:02.0900370Z ActivationLeakyReluKernel.cu 2025-09-07T06:32:02.0901142Z tmpxft_000003a0_00000000-7_ActivationLeakyReluKernel.cudafe1.cpp 2025-09-07T06:32:02.0902506Z [3850/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardtanhKernel.cu.obj 2025-09-07T06:32:02.1109365Z ActivationHardtanhKernel.cu 2025-09-07T06:32:02.1110513Z tmpxft_0000100c_00000000-7_ActivationHardtanhKernel.cudafe1.cpp 2025-09-07T06:32:02.1111793Z [3851/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLogSigmoidKernel.cu.obj 2025-09-07T06:32:02.3238877Z ActivationLogSigmoidKernel.cu 2025-09-07T06:32:02.3240386Z tmpxft_00000754_00000000-7_ActivationLogSigmoidKernel.cudafe1.cpp 2025-09-07T06:32:02.3242067Z [3852/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationPreluKernel.cu.obj 2025-09-07T06:32:02.3369008Z ActivationPreluKernel.cu 2025-09-07T06:32:02.3369778Z tmpxft_00001148_00000000-7_ActivationPreluKernel.cudafe1.cpp 2025-09-07T06:32:02.3373845Z [3853/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationMishKernel.cu.obj 2025-09-07T06:32:03.0193855Z ActivationMishKernel.cu 2025-09-07T06:32:03.0195784Z tmpxft_000012d4_00000000-7_ActivationMishKernel.cudafe1.cpp 2025-09-07T06:32:03.0198956Z [3854/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSiluKernel.cu.obj 2025-09-07T06:32:04.4660465Z ActivationSiluKernel.cu 2025-09-07T06:32:04.4661094Z tmpxft_0000108c_00000000-7_ActivationSiluKernel.cudafe1.cpp 2025-09-07T06:32:04.4662295Z [3855/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftplusKernel.cu.obj 2025-09-07T06:32:04.6159840Z ActivationSoftplusKernel.cu 2025-09-07T06:32:04.6160290Z tmpxft_00000f6c_00000000-7_ActivationSoftplusKernel.cudafe1.cpp 2025-09-07T06:32:04.6161040Z [3856/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftshrinkKernel.cu.obj 2025-09-07T06:32:04.7802324Z ActivationSoftshrinkKernel.cu 2025-09-07T06:32:04.7803077Z tmpxft_0000125c_00000000-7_ActivationSoftshrinkKernel.cudafe1.cpp 2025-09-07T06:32:04.7804808Z [3857/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationThresholdKernel.cu.obj 2025-09-07T06:32:05.4225126Z ActivationThresholdKernel.cu 2025-09-07T06:32:05.4225928Z tmpxft_000011a4_00000000-7_ActivationThresholdKernel.cudafe1.cpp 2025-09-07T06:32:05.4227304Z [3858/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling.cu.obj 2025-09-07T06:32:05.6231458Z AdaptiveAveragePooling.cu 2025-09-07T06:32:05.6232942Z tmpxft_000012dc_00000000-7_AdaptiveAveragePooling.cudafe1.cpp 2025-09-07T06:32:05.6234655Z [3859/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling3d.cu.obj 2025-09-07T06:32:05.7923108Z AdaptiveAveragePooling3d.cu 2025-09-07T06:32:05.7923792Z tmpxft_00001530_00000000-7_AdaptiveAveragePooling3d.cudafe1.cpp 2025-09-07T06:32:05.7924993Z [3860/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling2d.cu.obj 2025-09-07T06:32:06.5481000Z AdaptiveMaxPooling2d.cu 2025-09-07T06:32:06.5481658Z tmpxft_000006d0_00000000-7_AdaptiveMaxPooling2d.cudafe1.cpp 2025-09-07T06:32:06.5483426Z [3861/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling3d.cu.obj 2025-09-07T06:32:07.7044298Z AdaptiveMaxPooling3d.cu 2025-09-07T06:32:07.7045036Z tmpxft_00000670_00000000-7_AdaptiveMaxPooling3d.cudafe1.cpp 2025-09-07T06:32:07.7046200Z [3862/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AmpKernels.cu.obj 2025-09-07T06:32:07.7526037Z AmpKernels.cu 2025-09-07T06:32:07.7526689Z tmpxft_00000b5c_00000000-7_AmpKernels.cudafe1.cpp 2025-09-07T06:32:07.7527851Z [3863/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool2d.cu.obj 2025-09-07T06:32:08.0304888Z AveragePool2d.cu 2025-09-07T06:32:08.0305268Z tmpxft_000017c8_00000000-7_AveragePool2d.cudafe1.cpp 2025-09-07T06:32:08.0305953Z [3864/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool3d.cu.obj 2025-09-07T06:32:08.0836558Z AveragePool3d.cu 2025-09-07T06:32:08.0836983Z tmpxft_00000584_00000000-7_AveragePool3d.cudafe1.cpp 2025-09-07T06:32:08.0838013Z [3865/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryBitwiseOpsKernels.cu.obj 2025-09-07T06:32:08.1652636Z BinaryBitwiseOpsKernels.cu 2025-09-07T06:32:08.1653393Z tmpxft_000012e8_00000000-7_BinaryBitwiseOpsKernels.cudafe1.cpp 2025-09-07T06:32:08.1654959Z [3866/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivFloorKernel.cu.obj 2025-09-07T06:32:08.4622231Z BinaryDivFloorKernel.cu 2025-09-07T06:32:08.4631695Z tmpxft_00001bf4_00000000-7_BinaryDivFloorKernel.cudafe1.cpp 2025-09-07T06:32:08.4633386Z [3867/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTrueKernel.cu.obj 2025-09-07T06:32:09.0766508Z BinaryDivTrueKernel.cu 2025-09-07T06:32:09.0767247Z tmpxft_00001464_00000000-7_BinaryDivTrueKernel.cudafe1.cpp 2025-09-07T06:32:09.0768612Z [3868/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTruncKernel.cu.obj 2025-09-07T06:32:10.3384610Z BinaryDivTruncKernel.cu 2025-09-07T06:32:10.3385091Z tmpxft_00000798_00000000-7_BinaryDivTruncKernel.cudafe1.cpp 2025-09-07T06:32:10.3385808Z [3869/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryGeometricKernels.cu.obj 2025-09-07T06:32:10.5212007Z BinaryGeometricKernels.cu 2025-09-07T06:32:10.5212851Z tmpxft_00000448_00000000-7_BinaryGeometricKernels.cudafe1.cpp 2025-09-07T06:32:10.5214132Z [3870/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryLogicalOpsKernels.cu.obj 2025-09-07T06:32:10.5694825Z BinaryLogicalOpsKernels.cu 2025-09-07T06:32:10.5695573Z tmpxft_00000740_00000000-7_BinaryLogicalOpsKernels.cudafe1.cpp 2025-09-07T06:32:10.5696790Z [3871/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscBackwardOpsKernels.cu.obj 2025-09-07T06:32:10.6557772Z BinaryMiscBackwardOpsKernels.cu 2025-09-07T06:32:10.6558635Z tmpxft_00000f50_00000000-7_BinaryMiscBackwardOpsKernels.cudafe1.cpp 2025-09-07T06:32:10.6560307Z [3872/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscOpsKernels.cu.obj 2025-09-07T06:32:10.8107940Z BinaryMiscOpsKernels.cu 2025-09-07T06:32:10.8109345Z tmpxft_00000a88_00000000-7_BinaryMiscOpsKernels.cudafe1.cpp 2025-09-07T06:32:10.8110474Z [3873/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMulKernel.cu.obj 2025-09-07T06:32:11.0998321Z BinaryMulKernel.cu 2025-09-07T06:32:11.0999132Z tmpxft_00001abc_00000000-7_BinaryMulKernel.cudafe1.cpp 2025-09-07T06:32:11.1002174Z [3874/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryRemainderKernel.cu.obj 2025-09-07T06:32:11.6648083Z BinaryRemainderKernel.cu 2025-09-07T06:32:11.6649218Z tmpxft_00000bf4_00000000-7_BinaryRemainderKernel.cudafe1.cpp 2025-09-07T06:32:11.6744257Z [3875/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryShiftOpsKernels.cu.obj 2025-09-07T06:32:13.3490874Z BinaryShiftOpsKernels.cu 2025-09-07T06:32:13.3491315Z tmpxft_00000b78_00000000-7_BinaryShiftOpsKernels.cudafe1.cpp 2025-09-07T06:32:13.3492021Z [3876/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareEQKernel.cu.obj 2025-09-07T06:32:13.3903905Z CompareEQKernel.cu 2025-09-07T06:32:13.3904645Z tmpxft_0000140c_00000000-7_CompareEQKernel.cudafe1.cpp 2025-09-07T06:32:13.3905866Z [3877/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareKernels.cu.obj 2025-09-07T06:32:13.6468258Z CompareKernels.cu 2025-09-07T06:32:13.6468698Z tmpxft_00001794_00000000-7_CompareKernels.cudafe1.cpp 2025-09-07T06:32:13.6469394Z [3878/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Bucketization.cu.obj 2025-09-07T06:32:13.6869411Z Bucketization.cu 2025-09-07T06:32:13.6870063Z tmpxft_00001630_00000000-7_Bucketization.cudafe1.cpp 2025-09-07T06:32:13.6871343Z [3879/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CUDAScalar.cu.obj 2025-09-07T06:32:13.8503855Z CUDAScalar.cu 2025-09-07T06:32:13.8504917Z tmpxft_00000c18_00000000-7_CUDAScalar.cudafe1.cpp 2025-09-07T06:32:13.8506338Z [3880/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Col2Im.cu.obj 2025-09-07T06:32:14.5537342Z Col2Im.cu 2025-09-07T06:32:14.5538881Z tmpxft_00000424_00000000-7_Col2Im.cudafe1.cpp 2025-09-07T06:32:14.5541939Z [3881/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ComplexKernel.cu.obj 2025-09-07T06:32:15.0163051Z ComplexKernel.cu 2025-09-07T06:32:15.0163683Z tmpxft_000011fc_00000000-7_ComplexKernel.cudafe1.cpp 2025-09-07T06:32:15.0164856Z [3882/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ConvolutionMM2d.cu.obj 2025-09-07T06:32:16.1325891Z ConvolutionMM2d.cu 2025-09-07T06:32:16.1326498Z tmpxft_00001580_00000000-7_ConvolutionMM2d.cudafe1.cpp 2025-09-07T06:32:16.1327719Z [3883/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CopysignKernel.cu.obj 2025-09-07T06:32:16.8190614Z CopysignKernel.cu 2025-09-07T06:32:16.8191020Z tmpxft_00001730_00000000-7_CopysignKernel.cudafe1.cpp 2025-09-07T06:32:16.8191699Z [3884/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Copy.cu.obj 2025-09-07T06:32:16.9348115Z Copy.cu 2025-09-07T06:32:16.9348676Z tmpxft_000013fc_00000000-7_Copy.cudafe1.cpp 2025-09-07T06:32:16.9349784Z [3885/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CrossKernel.cu.obj 2025-09-07T06:32:17.5134179Z CrossKernel.cu 2025-09-07T06:32:17.5134773Z tmpxft_000004d8_00000000-7_CrossKernel.cudafe1.cpp 2025-09-07T06:32:17.5135930Z [3886/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumminmaxKernel.cu.obj 2025-09-07T06:32:17.7517955Z CumminmaxKernel.cu 2025-09-07T06:32:17.7518587Z tmpxft_000017ec_00000000-7_CumminmaxKernel.cudafe1.cpp 2025-09-07T06:32:17.7519817Z [3887/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumprodKernel.cu.obj 2025-09-07T06:32:18.2992969Z CumprodKernel.cu 2025-09-07T06:32:18.2994215Z tmpxft_00001664_00000000-7_CumprodKernel.cudafe1.cpp 2025-09-07T06:32:18.2995598Z [3888/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumsumKernel.cu.obj 2025-09-07T06:32:18.3457856Z CumsumKernel.cu 2025-09-07T06:32:18.3458606Z tmpxft_0000082c_00000000-7_CumsumKernel.cudafe1.cpp 2025-09-07T06:32:18.3459898Z [3889/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv2d.cu.obj 2025-09-07T06:32:19.3884575Z DepthwiseConv2d.cu 2025-09-07T06:32:19.3885017Z tmpxft_00001690_00000000-7_DepthwiseConv2d.cudafe1.cpp 2025-09-07T06:32:19.3885872Z [3890/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv3d.cu.obj 2025-09-07T06:32:20.1114768Z DepthwiseConv3d.cu 2025-09-07T06:32:20.1115171Z tmpxft_000011cc_00000000-7_DepthwiseConv3d.cudafe1.cpp 2025-09-07T06:32:20.1115842Z [3891/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool2d.cu.obj 2025-09-07T06:32:20.1805925Z DilatedMaxPool2d.cu 2025-09-07T06:32:20.1807016Z tmpxft_00000adc_00000000-7_DilatedMaxPool2d.cudafe1.cpp 2025-09-07T06:32:20.1808280Z [3892/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool3d.cu.obj 2025-09-07T06:32:20.7960613Z DilatedMaxPool3d.cu 2025-09-07T06:32:20.7960979Z tmpxft_0000029c_00000000-7_DilatedMaxPool3d.cudafe1.cpp 2025-09-07T06:32:20.7961723Z [3893/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionBernoulli.cu.obj 2025-09-07T06:32:20.8216908Z DistributionBernoulli.cu 2025-09-07T06:32:20.8217648Z tmpxft_00000994_00000000-7_DistributionBernoulli.cudafe1.cpp 2025-09-07T06:32:20.8219014Z [3894/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistanceKernel.cu.obj 2025-09-07T06:32:21.2149393Z DistanceKernel.cu 2025-09-07T06:32:21.2150032Z tmpxft_0000163c_00000000-7_DistanceKernel.cudafe1.cpp 2025-09-07T06:32:21.2151433Z [3895/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionCauchyKernel.cu.obj 2025-09-07T06:32:21.3303794Z DistributionCauchyKernel.cu 2025-09-07T06:32:21.3304760Z tmpxft_0000062c_00000000-7_DistributionCauchyKernel.cudafe1.cpp 2025-09-07T06:32:21.3306101Z [3896/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionExponentialKernel.cu.obj 2025-09-07T06:32:22.4475444Z DistributionExponentialKernel.cu 2025-09-07T06:32:22.4476341Z tmpxft_000012dc_00000000-7_DistributionExponentialKernel.cudafe1.cpp 2025-09-07T06:32:22.4477748Z [3897/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionGeometricKernel.cu.obj 2025-09-07T06:32:23.0693281Z DistributionGeometricKernel.cu 2025-09-07T06:32:23.0694000Z tmpxft_00000648_00000000-7_DistributionGeometricKernel.cudafe1.cpp 2025-09-07T06:32:23.0695168Z [3898/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionLogNormalKernel.cu.obj 2025-09-07T06:32:23.1539072Z DistributionLogNormalKernel.cu 2025-09-07T06:32:23.1539860Z tmpxft_0000042c_00000000-7_DistributionLogNormalKernel.cudafe1.cpp 2025-09-07T06:32:23.1541006Z [3899/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionNormal.cu.obj 2025-09-07T06:32:23.7235938Z DistributionNormal.cu 2025-09-07T06:32:23.7236349Z tmpxft_00000810_00000000-7_DistributionNormal.cudafe1.cpp 2025-09-07T06:32:23.7237179Z [3900/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionRandomKernel.cu.obj 2025-09-07T06:32:23.7407086Z DistributionRandomKernel.cu 2025-09-07T06:32:23.7407890Z tmpxft_00001a44_00000000-7_DistributionRandomKernel.cudafe1.cpp 2025-09-07T06:32:23.7409073Z [3901/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionUniform.cu.obj 2025-09-07T06:32:24.2537701Z DistributionUniform.cu 2025-09-07T06:32:24.2538483Z tmpxft_00001198_00000000-7_DistributionUniform.cudafe1.cpp 2025-09-07T06:32:24.2542176Z [3902/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cu.obj 2025-09-07T06:32:25.0816661Z Distributions.cu 2025-09-07T06:32:25.0817370Z tmpxft_00000d1c_00000000-7_Distributions.cudafe1.cpp 2025-09-07T06:32:25.0818879Z [3903/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Dropout.cu.obj 2025-09-07T06:32:26.4055422Z Dropout.cu 2025-09-07T06:32:26.4055712Z tmpxft_00001ba4_00000000-7_Dropout.cudafe1.cpp 2025-09-07T06:32:26.4056324Z [3904/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FillKernel.cu.obj 2025-09-07T06:32:27.0460147Z FillKernel.cu 2025-09-07T06:32:27.0460624Z tmpxft_00000624_00000000-7_FillKernel.cudafe1.cpp 2025-09-07T06:32:27.0461544Z [3905/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Embedding.cu.obj 2025-09-07T06:32:27.0545365Z Embedding.cu 2025-09-07T06:32:27.0545893Z tmpxft_00001668_00000000-7_Embedding.cudafe1.cpp 2025-09-07T06:32:27.0547105Z [3906/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FlattenIndicesKernel.cu.obj 2025-09-07T06:32:27.3928736Z FlattenIndicesKernel.cu 2025-09-07T06:32:27.3929431Z tmpxft_00001534_00000000-7_FlattenIndicesKernel.cudafe1.cpp 2025-09-07T06:32:27.3930709Z [3907/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpList.cu.obj 2025-09-07T06:32:27.6163715Z ForeachBinaryOpList.cu 2025-09-07T06:32:27.6165026Z tmpxft_000010bc_00000000-7_ForeachBinaryOpList.cudafe1.cpp 2025-09-07T06:32:27.6167160Z [3908/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBackwardKernel.cu.obj 2025-09-07T06:32:27.7800425Z EmbeddingBackwardKernel.cu 2025-09-07T06:32:27.7801122Z tmpxft_00000374_00000000-7_EmbeddingBackwardKernel.cudafe1.cpp 2025-09-07T06:32:27.7803065Z [3909/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBag.cu.obj 2025-09-07T06:32:28.3001823Z EmbeddingBag.cu 2025-09-07T06:32:28.3002545Z tmpxft_00000cac_00000000-7_EmbeddingBag.cudafe1.cpp 2025-09-07T06:32:28.3004119Z [3910/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalar.cu.obj 2025-09-07T06:32:29.7925775Z ForeachBinaryOpScalar.cu 2025-09-07T06:32:29.7926565Z tmpxft_00001bd4_00000000-7_ForeachBinaryOpScalar.cudafe1.cpp 2025-09-07T06:32:29.7927959Z [3911/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarList.cu.obj 2025-09-07T06:32:30.1789271Z ForeachBinaryOpScalarList.cu 2025-09-07T06:32:30.1789878Z tmpxft_00000890_00000000-7_ForeachBinaryOpScalarList.cudafe1.cpp 2025-09-07T06:32:30.1790583Z [3912/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachPointwiseOp.cu.obj 2025-09-07T06:32:30.2625351Z ForeachPointwiseOp.cu 2025-09-07T06:32:30.2626011Z tmpxft_00000ea0_00000000-7_ForeachPointwiseOp.cudafe1.cpp 2025-09-07T06:32:30.2627405Z [3913/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarTensor.cu.obj 2025-09-07T06:32:30.7511463Z ForeachBinaryOpScalarTensor.cu 2025-09-07T06:32:30.7512272Z tmpxft_000012a0_00000000-7_ForeachBinaryOpScalarTensor.cudafe1.cpp 2025-09-07T06:32:30.7513629Z [3914/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachTernaryOp.cu.obj 2025-09-07T06:32:30.7719825Z ForeachTernaryOp.cu 2025-09-07T06:32:30.7720429Z tmpxft_00000b8c_00000000-7_ForeachTernaryOp.cudafe1.cpp 2025-09-07T06:32:30.7721585Z [3915/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachReduceOp.cu.obj 2025-09-07T06:32:30.9830016Z ForeachReduceOp.cu 2025-09-07T06:32:30.9830825Z tmpxft_0000061c_00000000-7_ForeachReduceOp.cudafe1.cpp 2025-09-07T06:32:30.9832065Z [3916/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachUnaryOp.cu.obj 2025-09-07T06:32:31.4549909Z ForeachUnaryOp.cu 2025-09-07T06:32:31.4550869Z tmpxft_000015a8_00000000-7_ForeachUnaryOp.cudafe1.cpp 2025-09-07T06:32:31.4552160Z [3917/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool2d.cu.obj 2025-09-07T06:32:32.7567250Z FractionalMaxPool2d.cu 2025-09-07T06:32:32.7568171Z tmpxft_0000174c_00000000-7_FractionalMaxPool2d.cudafe1.cpp 2025-09-07T06:32:32.7569537Z [3918/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FunctionOfAMatrixUtilsKernel.cu.obj 2025-09-07T06:32:33.0781937Z FunctionOfAMatrixUtilsKernel.cu 2025-09-07T06:32:33.0782764Z tmpxft_00000878_00000000-7_FunctionOfAMatrixUtilsKernel.cudafe1.cpp 2025-09-07T06:32:33.0783986Z [3919/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool3d.cu.obj 2025-09-07T06:32:33.1077997Z FractionalMaxPool3d.cu 2025-09-07T06:32:33.1078418Z tmpxft_00000fc4_00000000-7_FractionalMaxPool3d.cudafe1.cpp 2025-09-07T06:32:33.1079090Z [3920/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdagradKernel.cu.obj 2025-09-07T06:32:33.5788664Z FusedAdagradKernel.cu 2025-09-07T06:32:33.5789341Z tmpxft_00001220_00000000-7_FusedAdagradKernel.cudafe1.cpp 2025-09-07T06:32:33.5790612Z [3921/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamKernel.cu.obj 2025-09-07T06:32:33.5823777Z FusedAdamKernel.cu 2025-09-07T06:32:33.5824342Z tmpxft_00001200_00000000-7_FusedAdamKernel.cudafe1.cpp 2025-09-07T06:32:33.5825470Z [3922/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamWKernel.cu.obj 2025-09-07T06:32:34.0080672Z FusedAdamWKernel.cu 2025-09-07T06:32:34.0081869Z tmpxft_000012f4_00000000-7_FusedAdamWKernel.cudafe1.cpp 2025-09-07T06:32:34.0083829Z [3923/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GcdLcmKernel.cu.obj 2025-09-07T06:32:34.2145704Z GcdLcmKernel.cu 2025-09-07T06:32:34.2146671Z tmpxft_000016d8_00000000-7_GcdLcmKernel.cudafe1.cpp 2025-09-07T06:32:34.2148841Z [3924/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedSgdKernel.cu.obj 2025-09-07T06:32:35.4540526Z FusedSgdKernel.cu 2025-09-07T06:32:35.4540914Z tmpxft_00000344_00000000-7_FusedSgdKernel.cudafe1.cpp 2025-09-07T06:32:35.4541539Z [3925/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cu.obj 2025-09-07T06:32:35.8604688Z GridSampler.cu 2025-09-07T06:32:35.8605230Z tmpxft_00000984_00000000-7_GridSampler.cudafe1.cpp 2025-09-07T06:32:35.8606375Z [3926/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IGammaKernel.cu.obj 2025-09-07T06:32:36.2232127Z IGammaKernel.cu 2025-09-07T06:32:36.2232726Z tmpxft_0000179c_00000000-7_IGammaKernel.cudafe1.cpp 2025-09-07T06:32:36.2234117Z [3927/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cu.obj 2025-09-07T06:32:36.2318256Z IndexKernel.cu 2025-09-07T06:32:36.2318592Z tmpxft_000015bc_00000000-7_IndexKernel.cudafe1.cpp 2025-09-07T06:32:36.2319349Z [3928/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GroupMM.cu.obj 2025-09-07T06:32:36.6417908Z GroupMM.cu 2025-09-07T06:32:36.6418403Z tmpxft_00001644_00000000-7_GroupMM.cudafe1.cpp 2025-09-07T06:32:36.6419640Z [3929/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernelUtils.cu.obj 2025-09-07T06:32:36.8722888Z IndexKernelUtils.cu 2025-09-07T06:32:36.8723873Z tmpxft_000010b8_00000000-7_IndexKernelUtils.cudafe1.cpp 2025-09-07T06:32:36.8728262Z [3930/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Im2Col.cu.obj 2025-09-07T06:32:37.7934753Z Im2Col.cu 2025-09-07T06:32:37.7935418Z tmpxft_000010ac_00000000-7_Im2Col.cudafe1.cpp 2025-09-07T06:32:37.7936524Z [3931/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Indexing.cu.obj 2025-09-07T06:32:38.5727604Z Indexing.cu 2025-09-07T06:32:38.5727903Z tmpxft_00000708_00000000-7_Indexing.cudafe1.cpp 2025-09-07T06:32:38.5728482Z [3932/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Lerp.cu.obj 2025-09-07T06:32:38.8570743Z Lerp.cu 2025-09-07T06:32:38.8571170Z tmpxft_0000157c_00000000-7_Lerp.cudafe1.cpp 2025-09-07T06:32:39.6646360Z [3933/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogAddExpKernel.cu.obj 2025-09-07T06:32:39.6647424Z LogAddExpKernel.cu 2025-09-07T06:32:39.6647928Z tmpxft_000017a8_00000000-7_LogAddExpKernel.cudafe1.cpp 2025-09-07T06:32:39.6649060Z [3934/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebra.cu.obj 2025-09-07T06:32:40.1116299Z LinearAlgebra.cu 2025-09-07T06:32:40.1116844Z tmpxft_00001648_00000000-7_LinearAlgebra.cudafe1.cpp 2025-09-07T06:32:40.1117920Z [3935/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LegacyThrustHelpers.cu.obj 2025-09-07T06:32:40.2417999Z LegacyThrustHelpers.cu 2025-09-07T06:32:40.2418661Z tmpxft_00001294_00000000-7_LegacyThrustHelpers.cudafe1.cpp 2025-09-07T06:32:40.2419820Z [3936/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Loss.cu.obj 2025-09-07T06:32:40.5909895Z Loss.cu 2025-09-07T06:32:40.5910356Z tmpxft_000015f0_00000000-7_Loss.cudafe1.cpp 2025-09-07T06:32:40.5911545Z [3937/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogcumsumexpKernel.cu.obj 2025-09-07T06:32:41.1020343Z LogcumsumexpKernel.cu 2025-09-07T06:32:41.1020996Z tmpxft_00000d94_00000000-7_LogcumsumexpKernel.cudafe1.cpp 2025-09-07T06:32:41.1022358Z [3938/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LossCTC.cu.obj 2025-09-07T06:32:41.2481388Z LossCTC.cu 2025-09-07T06:32:41.2481934Z tmpxft_00000c10_00000000-7_LossCTC.cudafe1.cpp 2025-09-07T06:32:41.2489292Z [3939/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxMinElementwiseKernel.cu.obj 2025-09-07T06:32:42.2423687Z MaxMinElementwiseKernel.cu 2025-09-07T06:32:42.2424584Z tmpxft_00000da0_00000000-7_MaxMinElementwiseKernel.cudafe1.cpp 2025-09-07T06:32:42.2425786Z [3940/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxUnpooling.cu.obj 2025-09-07T06:32:43.5131233Z MaxUnpooling.cu 2025-09-07T06:32:43.5131673Z tmpxft_000009a0_00000000-7_MaxUnpooling.cudafe1.cpp 2025-09-07T06:32:43.5132330Z [3941/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiMarginLoss.cu.obj 2025-09-07T06:32:43.5537986Z MultiMarginLoss.cu 2025-09-07T06:32:43.5538618Z tmpxft_0000113c_00000000-7_MultiMarginLoss.cudafe1.cpp 2025-09-07T06:32:43.5539860Z [3942/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiLabelMarginCriterion.cu.obj 2025-09-07T06:32:44.1406020Z MultiLabelMarginCriterion.cu 2025-09-07T06:32:44.1406827Z tmpxft_00000590_00000000-7_MultiLabelMarginCriterion.cudafe1.cpp 2025-09-07T06:32:44.1408124Z [3943/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultinomialKernel.cu.obj 2025-09-07T06:32:44.4328742Z MultinomialKernel.cu 2025-09-07T06:32:44.4329420Z tmpxft_0000069c_00000000-7_MultinomialKernel.cudafe1.cpp 2025-09-07T06:32:44.4330547Z [3944/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NLLLoss2d.cu.obj 2025-09-07T06:32:44.6082626Z NLLLoss2d.cu 2025-09-07T06:32:44.6083122Z tmpxft_00000354_00000000-7_NLLLoss2d.cudafe1.cpp 2025-09-07T06:32:44.6084678Z [3945/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose2d.cu.obj 2025-09-07T06:32:45.5683532Z NaiveConvolutionTranspose2d.cu 2025-09-07T06:32:45.5684354Z tmpxft_000017d4_00000000-7_NaiveConvolutionTranspose2d.cudafe1.cpp 2025-09-07T06:32:45.5686096Z [3946/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose3d.cu.obj 2025-09-07T06:32:46.7306635Z NaiveConvolutionTranspose3d.cu 2025-09-07T06:32:46.7307750Z tmpxft_00001138_00000000-7_NaiveConvolutionTranspose3d.cudafe1.cpp 2025-09-07T06:32:46.7309110Z [3947/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveDilatedConvolution.cu.obj 2025-09-07T06:32:47.0081211Z NaiveDilatedConvolution.cu 2025-09-07T06:32:47.0081635Z tmpxft_00000bf4_00000000-7_NaiveDilatedConvolution.cudafe1.cpp 2025-09-07T06:32:47.0082319Z [3948/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PointwiseOpsKernel.cu.obj 2025-09-07T06:32:48.6444891Z PointwiseOpsKernel.cu 2025-09-07T06:32:48.6445308Z tmpxft_00001708_00000000-7_PointwiseOpsKernel.cudafe1.cpp 2025-09-07T06:32:48.6445941Z [3949/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PowKernel.cu.obj 2025-09-07T06:32:48.7053065Z PowKernel.cu 2025-09-07T06:32:48.7053370Z tmpxft_000016b0_00000000-7_PowKernel.cudafe1.cpp 2025-09-07T06:32:48.7053976Z [3950/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Normalization.cu.obj 2025-09-07T06:32:48.7431066Z Normalization.cu 2025-09-07T06:32:48.7431627Z tmpxft_00000348_00000000-7_Normalization.cudafe1.cpp 2025-09-07T06:32:48.7432692Z [3951/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Nonzero.cu.obj 2025-09-07T06:32:48.7897468Z Nonzero.cu 2025-09-07T06:32:48.7897950Z tmpxft_00000de8_00000000-7_Nonzero.cudafe1.cpp 2025-09-07T06:32:48.7899272Z [3952/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MixedDtypesLinear.cu.obj 2025-09-07T06:32:48.8356835Z MixedDtypesLinear.cu 2025-09-07T06:32:48.8357867Z tmpxft_00000464_00000000-7_MixedDtypesLinear.cudafe1.cpp 2025-09-07T06:32:48.8358906Z [3953/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RNN.cu.obj 2025-09-07T06:32:49.9268629Z RNN.cu 2025-09-07T06:32:49.9269217Z tmpxft_000016ac_00000000-7_RNN.cudafe1.cpp 2025-09-07T06:32:49.9270116Z [3954/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Randperm.cu.obj 2025-09-07T06:32:50.0411389Z Randperm.cu 2025-09-07T06:32:50.0411871Z tmpxft_0000157c_00000000-7_Randperm.cudafe1.cpp 2025-09-07T06:32:50.0412893Z [3955/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RangeFactories.cu.obj 2025-09-07T06:32:51.3100376Z RangeFactories.cu 2025-09-07T06:32:51.3100887Z tmpxft_000005b0_00000000-7_RangeFactories.cudafe1.cpp 2025-09-07T06:32:51.3101871Z [3956/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Reduce.cu.obj 2025-09-07T06:32:51.3611399Z Reduce.cu 2025-09-07T06:32:51.3611871Z tmpxft_000015d4_00000000-7_Reduce.cudafe1.cpp 2025-09-07T06:32:51.3613010Z [3957/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceAMinMaxKernel.cu.obj 2025-09-07T06:32:51.4457956Z ReduceAMinMaxKernel.cu 2025-09-07T06:32:51.4458336Z tmpxft_00001a80_00000000-7_ReduceAMinMaxKernel.cudafe1.cpp 2025-09-07T06:32:51.4459036Z [3958/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMaxKernel.cu.obj 2025-09-07T06:32:51.4742499Z ReduceArgMaxKernel.cu 2025-09-07T06:32:51.4743155Z tmpxft_00001a78_00000000-7_ReduceArgMaxKernel.cudafe1.cpp 2025-09-07T06:32:51.4746270Z [3959/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMinKernel.cu.obj 2025-09-07T06:32:51.5872593Z ReduceArgMinKernel.cu 2025-09-07T06:32:51.5873755Z tmpxft_00001204_00000000-7_ReduceArgMinKernel.cudafe1.cpp 2025-09-07T06:32:51.5875432Z [3960/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RecordStream.cu.obj 2025-09-07T06:32:52.7127870Z RecordStream.cu 2025-09-07T06:32:52.7128427Z tmpxft_000016b8_00000000-7_RecordStream.cudafe1.cpp 2025-09-07T06:32:52.7129627Z [3961/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceLogicKernel.cu.obj 2025-09-07T06:32:52.7972014Z ReduceLogicKernel.cu 2025-09-07T06:32:52.7972662Z tmpxft_00001950_00000000-7_ReduceLogicKernel.cudafe1.cpp 2025-09-07T06:32:52.7973941Z [3962/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMaxValuesKernel.cu.obj 2025-09-07T06:32:54.0632932Z ReduceMaxValuesKernel.cu 2025-09-07T06:32:54.0634622Z tmpxft_00001970_00000000-7_ReduceMaxValuesKernel.cudafe1.cpp 2025-09-07T06:32:54.0635760Z [3963/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMinValuesKernel.cu.obj 2025-09-07T06:32:54.1020196Z ReduceMinValuesKernel.cu 2025-09-07T06:32:54.1020621Z tmpxft_00000cd0_00000000-7_ReduceMinValuesKernel.cudafe1.cpp 2025-09-07T06:32:54.1021329Z [3964/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMomentKernel.cu.obj 2025-09-07T06:32:54.1647670Z ReduceMomentKernel.cu 2025-09-07T06:32:54.1648274Z tmpxft_00001934_00000000-7_ReduceMomentKernel.cudafe1.cpp 2025-09-07T06:32:54.1649418Z [3965/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceSumProdKernel.cu.obj 2025-09-07T06:32:54.2241373Z ReduceSumProdKernel.cu 2025-09-07T06:32:54.2242046Z tmpxft_00000bc8_00000000-7_ReduceSumProdKernel.cudafe1.cpp 2025-09-07T06:32:54.2243075Z [3966/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceNormKernel.cu.obj 2025-09-07T06:32:54.9401715Z ReduceNormKernel.cu 2025-09-07T06:32:54.9402326Z tmpxft_00001138_00000000-7_ReduceNormKernel.cudafe1.cpp 2025-09-07T06:32:54.9404432Z [3967/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReflectionPad.cu.obj 2025-09-07T06:32:55.2457288Z ReflectionPad.cu 2025-09-07T06:32:55.2458891Z tmpxft_00000d10_00000000-7_ReflectionPad.cudafe1.cpp 2025-09-07T06:32:55.2459908Z [3968/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RenormKernel.cu.obj 2025-09-07T06:32:56.0885380Z RenormKernel.cu 2025-09-07T06:32:56.0885927Z tmpxft_00000514_00000000-7_RenormKernel.cudafe1.cpp 2025-09-07T06:32:56.0886908Z [3969/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Repeat.cu.obj 2025-09-07T06:32:57.4025441Z Repeat.cu 2025-09-07T06:32:57.4025959Z tmpxft_00000458_00000000-7_Repeat.cudafe1.cpp 2025-09-07T06:32:57.4027026Z [3970/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScaledGroupMM.cu.obj 2025-09-07T06:32:57.4628524Z ScaledGroupMM.cu 2025-09-07T06:32:57.4629118Z tmpxft_00000a64_00000000-7_ScaledGroupMM.cudafe1.cpp 2025-09-07T06:32:57.4630248Z [3971/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReplicationPadding.cu.obj 2025-09-07T06:32:57.9131746Z ReplicationPadding.cu 2025-09-07T06:32:57.9132953Z tmpxft_000014fc_00000000-7_ReplicationPadding.cudafe1.cpp 2025-09-07T06:32:57.9134154Z [3972/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RreluWithNoise.cu.obj 2025-09-07T06:32:58.2702603Z RreluWithNoise.cu 2025-09-07T06:32:58.2703157Z tmpxft_000008c0_00000000-7_RreluWithNoise.cudafe1.cpp 2025-09-07T06:32:58.2704285Z [3973/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScatterGatherKernel.cu.obj 2025-09-07T06:32:58.7705692Z ScatterGatherKernel.cu 2025-09-07T06:32:58.7706751Z tmpxft_000011fc_00000000-7_ScatterGatherKernel.cudafe1.cpp 2025-09-07T06:32:58.7707924Z [3974/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RowwiseScaledMM.cu.obj 2025-09-07T06:32:59.4349129Z RowwiseScaledMM.cu 2025-09-07T06:32:59.4349789Z tmpxft_00000a84_00000000-7_RowwiseScaledMM.compute_89.cudafe1.cpp 2025-09-07T06:32:59.4350889Z [3975/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Shape.cu.obj 2025-09-07T06:32:59.8219437Z Shape.cu 2025-09-07T06:32:59.8219890Z tmpxft_00001564_00000000-7_Shape.cudafe1.cpp 2025-09-07T06:32:59.8221615Z [3976/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SegmentReduce.cu.obj 2025-09-07T06:33:00.8592713Z SegmentReduce.cu 2025-09-07T06:33:00.8593062Z tmpxft_000018ac_00000000-7_SegmentReduce.cudafe1.cpp 2025-09-07T06:33:00.8593653Z [3977/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SoftMax.cu.obj 2025-09-07T06:33:01.2252005Z SoftMax.cu 2025-09-07T06:33:01.2252295Z tmpxft_00000e6c_00000000-7_SoftMax.cudafe1.cpp 2025-09-07T06:33:01.2252884Z [3978/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cu.obj 2025-09-07T06:33:01.5533809Z Sort.cu 2025-09-07T06:33:01.5534240Z tmpxft_00001664_00000000-7_Sort.cudafe1.cpp 2025-09-07T06:33:01.5535273Z [3979/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cu.obj 2025-09-07T06:33:01.8779712Z Sorting.cu 2025-09-07T06:33:01.8780196Z tmpxft_00000dc0_00000000-7_Sorting.cudafe1.cpp 2025-09-07T06:33:01.8781325Z [3980/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortStable.cu.obj 2025-09-07T06:33:02.0548202Z SortStable.cu 2025-09-07T06:33:02.0548862Z tmpxft_000008b0_00000000-7_SortStable.cudafe1.cpp 2025-09-07T06:33:02.0549890Z [3981/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortImpl.cu.obj 2025-09-07T06:33:02.5692935Z SortImpl.cu 2025-09-07T06:33:02.5693740Z tmpxft_000010ec_00000000-7_SortImpl.cudafe1.cpp 2025-09-07T06:33:02.5695160Z [3982/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseMM.cu.obj 2025-09-07T06:33:02.7131138Z SparseMM.cu 2025-09-07T06:33:02.7131634Z tmpxft_00001788_00000000-7_SparseMM.cudafe1.cpp 2025-09-07T06:33:02.7133200Z [3983/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseBinaryOpIntersectionKernel.cu.obj 2025-09-07T06:33:03.3723176Z SparseBinaryOpIntersectionKernel.cu 2025-09-07T06:33:03.3724087Z tmpxft_000007f0_00000000-7_SparseBinaryOpIntersectionKernel.cudafe1.cpp 2025-09-07T06:33:03.3725391Z [3984/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cu.obj 2025-09-07T06:33:04.2641367Z SpectralOps.cu 2025-09-07T06:33:04.2641889Z tmpxft_00000f9c_00000000-7_SpectralOps.cudafe1.cpp 2025-09-07T06:33:04.2642912Z [3985/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\StepKernel.cu.obj 2025-09-07T06:33:04.6283300Z StepKernel.cu 2025-09-07T06:33:04.6283839Z tmpxft_000010bc_00000000-7_StepKernel.cudafe1.cpp 2025-09-07T06:33:04.6284873Z [3986/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cu.obj 2025-09-07T06:33:04.9136224Z TensorCompare.cu 2025-09-07T06:33:04.9136756Z tmpxft_00000fb0_00000000-7_TensorCompare.cudafe1.cpp 2025-09-07T06:33:04.9137815Z [3987/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SummaryOps.cu.obj 2025-09-07T06:33:05.9279279Z SummaryOps.cu 2025-09-07T06:33:05.9279800Z tmpxft_00000e78_00000000-7_SummaryOps.cudafe1.cpp 2025-09-07T06:33:05.9280925Z [3988/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShape.cu.obj 2025-09-07T06:33:06.2366346Z TensorShape.cu 2025-09-07T06:33:06.2366658Z tmpxft_000002f8_00000000-7_TensorShape.cudafe1.cpp 2025-09-07T06:33:06.2367333Z [3989/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cu.obj 2025-09-07T06:33:06.5141569Z TensorModeKernel.cu 2025-09-07T06:33:06.5141934Z tmpxft_000009f0_00000000-7_TensorModeKernel.cudafe1.cpp 2025-09-07T06:33:06.5142656Z [3990/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTransformations.cu.obj 2025-09-07T06:33:06.6243646Z TensorTransformations.cu 2025-09-07T06:33:06.6244311Z tmpxft_00000494_00000000-7_TensorTransformations.cudafe1.cpp 2025-09-07T06:33:06.6245696Z [3991/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cu.obj 2025-09-07T06:33:07.1585557Z TensorTopK.cu 2025-09-07T06:33:07.1586039Z tmpxft_000011d8_00000000-7_TensorTopK.cudafe1.cpp 2025-09-07T06:33:07.1587590Z [3992/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryComplexKernels.cu.obj 2025-09-07T06:33:07.4553488Z UnaryComplexKernels.cu 2025-09-07T06:33:07.4554162Z tmpxft_000017a4_00000000-7_UnaryComplexKernels.cudafe1.cpp 2025-09-07T06:33:07.4555444Z [3993/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryFractionKernels.cu.obj 2025-09-07T06:33:07.5331312Z UnaryFractionKernels.cu 2025-09-07T06:33:07.5331962Z tmpxft_000017a0_00000000-7_UnaryFractionKernels.cudafe1.cpp 2025-09-07T06:33:07.5333173Z [3994/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TriangularOps.cu.obj 2025-09-07T06:33:08.6043863Z TriangularOps.cu 2025-09-07T06:33:08.6044244Z tmpxft_000011b4_00000000-7_TriangularOps.cudafe1.cpp 2025-09-07T06:33:08.6044870Z [3995/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGammaKernels.cu.obj 2025-09-07T06:33:08.9328704Z UnaryGammaKernels.cu 2025-09-07T06:33:08.9329330Z tmpxft_000013a0_00000000-7_UnaryGammaKernels.cudafe1.cpp 2025-09-07T06:33:08.9330566Z [3996/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcosKernel.cu.obj 2025-09-07T06:33:09.1049235Z UnaryGeometricAcosKernel.cu 2025-09-07T06:33:09.1050010Z tmpxft_00001790_00000000-7_UnaryGeometricAcosKernel.cudafe1.cpp 2025-09-07T06:33:09.1051369Z [3997/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcoshKernel.cu.obj 2025-09-07T06:33:09.2902339Z UnaryGeometricAcoshKernel.cu 2025-09-07T06:33:09.2903028Z tmpxft_0000169c_00000000-7_UnaryGeometricAcoshKernel.cudafe1.cpp 2025-09-07T06:33:09.2904218Z [3998/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinKernel.cu.obj 2025-09-07T06:33:09.8095785Z UnaryGeometricAsinKernel.cu 2025-09-07T06:33:09.8096666Z tmpxft_00000460_00000000-7_UnaryGeometricAsinKernel.cudafe1.cpp 2025-09-07T06:33:09.8097797Z [3999/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinhKernel.cu.obj 2025-09-07T06:33:10.1319371Z UnaryGeometricAsinhKernel.cu 2025-09-07T06:33:10.1320212Z tmpxft_00000f40_00000000-7_UnaryGeometricAsinhKernel.cudafe1.cpp 2025-09-07T06:33:10.1321451Z [4000/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanKernel.cu.obj 2025-09-07T06:33:10.2061464Z UnaryGeometricAtanKernel.cu 2025-09-07T06:33:10.2062222Z tmpxft_00000b34_00000000-7_UnaryGeometricAtanKernel.cudafe1.cpp 2025-09-07T06:33:10.2063595Z [4001/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanhKernel.cu.obj 2025-09-07T06:33:11.2658860Z UnaryGeometricAtanhKernel.cu 2025-09-07T06:33:11.2659683Z tmpxft_000016ec_00000000-7_UnaryGeometricAtanhKernel.cudafe1.cpp 2025-09-07T06:33:11.2661169Z [4002/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCosKernel.cu.obj 2025-09-07T06:33:11.5990981Z UnaryGeometricCosKernel.cu 2025-09-07T06:33:11.5991478Z tmpxft_0000097c_00000000-7_UnaryGeometricCosKernel.cudafe1.cpp 2025-09-07T06:33:11.5992378Z [4003/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCoshKernel.cu.obj 2025-09-07T06:33:11.6692904Z UnaryGeometricCoshKernel.cu 2025-09-07T06:33:11.6693689Z tmpxft_00000598_00000000-7_UnaryGeometricCoshKernel.cudafe1.cpp 2025-09-07T06:33:11.6694782Z [4004/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinKernel.cu.obj 2025-09-07T06:33:11.9063832Z UnaryGeometricSinKernel.cu 2025-09-07T06:33:11.9065118Z tmpxft_0000109c_00000000-7_UnaryGeometricSinKernel.cudafe1.cpp 2025-09-07T06:33:11.9066551Z [4005/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinhKernel.cu.obj 2025-09-07T06:33:12.4436918Z UnaryGeometricSinhKernel.cu 2025-09-07T06:33:12.4437719Z tmpxft_000001d4_00000000-7_UnaryGeometricSinhKernel.cudafe1.cpp 2025-09-07T06:33:12.4439140Z [4006/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanKernel.cu.obj 2025-09-07T06:33:12.7809725Z UnaryGeometricTanKernel.cu 2025-09-07T06:33:12.7811867Z tmpxft_00000474_00000000-7_UnaryGeometricTanKernel.cudafe1.cpp 2025-09-07T06:33:12.7813100Z [4007/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanhKernel.cu.obj 2025-09-07T06:33:12.8506634Z UnaryGeometricTanhKernel.cu 2025-09-07T06:33:12.8507510Z tmpxft_0000074c_00000000-7_UnaryGeometricTanhKernel.cudafe1.cpp 2025-09-07T06:33:12.8510177Z [4008/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryLogKernels.cu.obj 2025-09-07T06:33:14.0190274Z UnaryLogKernels.cu 2025-09-07T06:33:14.0190911Z tmpxft_00001128_00000000-7_UnaryLogKernels.cudafe1.cpp 2025-09-07T06:33:14.0192449Z [4009/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryOpsKernel.cu.obj 2025-09-07T06:33:14.3659165Z UnaryOpsKernel.cu 2025-09-07T06:33:14.3660050Z tmpxft_000003cc_00000000-7_UnaryOpsKernel.cudafe1.cpp 2025-09-07T06:33:14.3661452Z [4010/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySignKernels.cu.obj 2025-09-07T06:33:14.4859573Z UnarySignKernels.cu 2025-09-07T06:33:14.4860298Z tmpxft_00000420_00000000-7_UnarySignKernels.cudafe1.cpp 2025-09-07T06:33:14.4861630Z [4011/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySpecialOpsKernel.cu.obj 2025-09-07T06:33:15.3395128Z UnarySpecialOpsKernel.cu 2025-09-07T06:33:15.3395936Z tmpxft_000005ac_00000000-7_UnarySpecialOpsKernel.cudafe1.cpp 2025-09-07T06:33:15.3397142Z [4012/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnfoldBackwardKernel.cu.obj 2025-09-07T06:33:15.9478457Z UnfoldBackwardKernel.cu 2025-09-07T06:33:15.9479178Z tmpxft_00001230_00000000-7_UnfoldBackwardKernel.cudafe1.cpp 2025-09-07T06:33:15.9480554Z [4013/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBicubic2d.cu.obj 2025-09-07T06:33:16.2114664Z UpSampleBicubic2d.cu 2025-09-07T06:33:16.2115358Z tmpxft_00001578_00000000-7_UpSampleBicubic2d.cudafe1.cpp 2025-09-07T06:33:16.2116554Z [4014/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBilinear2d.cu.obj 2025-09-07T06:33:17.0297764Z UpSampleBilinear2d.cu 2025-09-07T06:33:17.0298163Z tmpxft_000016b0_00000000-7_UpSampleBilinear2d.cudafe1.cpp 2025-09-07T06:33:17.0298866Z [4015/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UniqueCub.cu.obj 2025-09-07T06:33:17.1903045Z UniqueCub.cu 2025-09-07T06:33:17.1903634Z tmpxft_00001a28_00000000-7_UniqueCub.cudafe1.cpp 2025-09-07T06:33:17.1904957Z [4016/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleLinear1d.cu.obj 2025-09-07T06:33:17.4846167Z UpSampleLinear1d.cu 2025-09-07T06:33:17.4847279Z tmpxft_00001694_00000000-7_UpSampleLinear1d.cudafe1.cpp 2025-09-07T06:33:17.4848788Z [4017/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest1d.cu.obj 2025-09-07T06:33:17.7078153Z UpSampleNearest1d.cu 2025-09-07T06:33:17.7078987Z tmpxft_000001a0_00000000-7_UpSampleNearest1d.cudafe1.cpp 2025-09-07T06:33:17.7080244Z [4018/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest2d.cu.obj 2025-09-07T06:33:18.6343351Z UpSampleNearest2d.cu 2025-09-07T06:33:18.6345467Z tmpxft_00000c4c_00000000-7_UpSampleNearest2d.cudafe1.cpp 2025-09-07T06:33:18.6346820Z [4019/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest3d.cu.obj 2025-09-07T06:33:19.1273125Z UpSampleNearest3d.cu 2025-09-07T06:33:19.1273534Z tmpxft_00000fc8_00000000-7_UpSampleNearest3d.cudafe1.cpp 2025-09-07T06:33:19.1274238Z [4020/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleTrilinear3d.cu.obj 2025-09-07T06:33:19.4938944Z UpSampleTrilinear3d.cu 2025-09-07T06:33:19.4939608Z tmpxft_000009d8_00000000-7_UpSampleTrilinear3d.cudafe1.cpp 2025-09-07T06:33:19.4940917Z [4021/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ValidateCompressedIndicesKernel.cu.obj 2025-09-07T06:33:19.7875760Z ValidateCompressedIndicesKernel.cu 2025-09-07T06:33:19.7876742Z tmpxft_000016ac_00000000-7_ValidateCompressedIndicesKernel.cudafe1.cpp 2025-09-07T06:33:19.7878163Z [4022/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ZetaKernel.cu.obj 2025-09-07T06:33:20.0963707Z ZetaKernel.cu 2025-09-07T06:33:20.0964357Z tmpxft_00000878_00000000-7_ZetaKernel.cudafe1.cpp 2025-09-07T06:33:20.0965504Z [4023/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\airy_ai.cu.obj 2025-09-07T06:33:20.2774478Z airy_ai.cu 2025-09-07T06:33:20.2774950Z tmpxft_00001574_00000000-7_airy_ai.cudafe1.cpp 2025-09-07T06:33:20.2776237Z [4024/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\WeightNorm.cu.obj 2025-09-07T06:33:20.3265561Z WeightNorm.cu 2025-09-07T06:33:20.3266067Z tmpxft_00001784_00000000-7_WeightNorm.cudafe1.cpp 2025-09-07T06:33:20.3267107Z [4025/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j0.cu.obj 2025-09-07T06:33:21.2636625Z bessel_j0.cu 2025-09-07T06:33:21.2637125Z tmpxft_00000104_00000000-7_bessel_j0.cudafe1.cpp 2025-09-07T06:33:21.2638746Z [4026/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j1.cu.obj 2025-09-07T06:33:21.7586788Z bessel_j1.cu 2025-09-07T06:33:21.7587274Z tmpxft_00000fe4_00000000-7_bessel_j1.cudafe1.cpp 2025-09-07T06:33:21.7588349Z [4027/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y0.cu.obj 2025-09-07T06:33:22.0250026Z bessel_y0.cu 2025-09-07T06:33:22.0250458Z tmpxft_00001344_00000000-7_bessel_y0.cudafe1.cpp 2025-09-07T06:33:22.0251219Z [4028/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y1.cu.obj 2025-09-07T06:33:22.4655838Z bessel_y1.cu 2025-09-07T06:33:22.4656424Z tmpxft_000007b8_00000000-7_bessel_y1.cudafe1.cpp 2025-09-07T06:33:22.4657592Z [4029/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_t.cu.obj 2025-09-07T06:33:22.6851247Z chebyshev_polynomial_t.cu 2025-09-07T06:33:22.6851785Z tmpxft_000012d0_00000000-7_chebyshev_polynomial_t.cudafe1.cpp 2025-09-07T06:33:22.6853155Z [4030/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_u.cu.obj 2025-09-07T06:33:22.9151461Z chebyshev_polynomial_u.cu 2025-09-07T06:33:22.9152259Z tmpxft_00000cb8_00000000-7_chebyshev_polynomial_u.cudafe1.cpp 2025-09-07T06:33:22.9153572Z [4031/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_v.cu.obj 2025-09-07T06:33:22.9452955Z chebyshev_polynomial_v.cu 2025-09-07T06:33:22.9454364Z tmpxft_00000314_00000000-7_chebyshev_polynomial_v.cudafe1.cpp 2025-09-07T06:33:22.9455645Z [4032/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_w.cu.obj 2025-09-07T06:33:24.4352067Z chebyshev_polynomial_w.cu 2025-09-07T06:33:24.4352807Z tmpxft_00000e78_00000000-7_chebyshev_polynomial_w.cudafe1.cpp 2025-09-07T06:33:24.4353969Z [4033/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adagrad_impl.cu.obj 2025-09-07T06:33:24.8754151Z fused_adagrad_impl.cu 2025-09-07T06:33:24.8754816Z tmpxft_00000f58_00000000-7_fused_adagrad_impl.cudafe1.cpp 2025-09-07T06:33:24.8756037Z [4034/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_amsgrad_impl.cu.obj 2025-09-07T06:33:25.1129459Z fused_adam_amsgrad_impl.cu 2025-09-07T06:33:25.1129967Z tmpxft_00000550_00000000-7_fused_adam_amsgrad_impl.cudafe1.cpp 2025-09-07T06:33:25.1130752Z [4035/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_impl.cu.obj 2025-09-07T06:33:25.4642679Z fused_adam_impl.cu 2025-09-07T06:33:25.4643538Z tmpxft_000010a0_00000000-7_fused_adam_impl.cudafe1.cpp 2025-09-07T06:33:25.4644308Z [4036/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_h.cu.obj 2025-09-07T06:33:25.6406591Z hermite_polynomial_h.cu 2025-09-07T06:33:25.6407214Z tmpxft_00000bb8_00000000-7_hermite_polynomial_h.cudafe1.cpp 2025-09-07T06:33:25.6407893Z [4037/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_amsgrad_impl.cu.obj 2025-09-07T06:33:25.7947046Z fused_adamw_amsgrad_impl.cu 2025-09-07T06:33:25.7947679Z tmpxft_00001ac4_00000000-7_fused_adamw_amsgrad_impl.cudafe1.cpp 2025-09-07T06:33:25.7948902Z [4038/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_impl.cu.obj 2025-09-07T06:33:26.1798743Z fused_adamw_impl.cu 2025-09-07T06:33:26.1799337Z tmpxft_00001600_00000000-7_fused_adamw_impl.cudafe1.cpp 2025-09-07T06:33:26.1801286Z [4039/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\group_norm_kernel.cu.obj 2025-09-07T06:33:27.1889429Z group_norm_kernel.cu 2025-09-07T06:33:27.1890060Z tmpxft_000015fc_00000000-7_group_norm_kernel.cudafe1.cpp 2025-09-07T06:33:27.1891263Z [4040/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_he.cu.obj 2025-09-07T06:33:28.2221495Z hermite_polynomial_he.cu 2025-09-07T06:33:28.2222189Z tmpxft_00000b5c_00000000-7_hermite_polynomial_he.cudafe1.cpp 2025-09-07T06:33:28.2223444Z [4041/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\laguerre_polynomial_l.cu.obj 2025-09-07T06:33:28.5543672Z laguerre_polynomial_l.cu 2025-09-07T06:33:28.5544440Z tmpxft_00000584_00000000-7_laguerre_polynomial_l.cudafe1.cpp 2025-09-07T06:33:28.5545742Z [4042/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\legendre_polynomial_p.cu.obj 2025-09-07T06:33:28.9357198Z legendre_polynomial_p.cu 2025-09-07T06:33:28.9357822Z tmpxft_000015d8_00000000-7_legendre_polynomial_p.cudafe1.cpp 2025-09-07T06:33:28.9359443Z [4043/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i0.cu.obj 2025-09-07T06:33:29.0605247Z modified_bessel_i0.cu 2025-09-07T06:33:29.0605856Z tmpxft_000013d0_00000000-7_modified_bessel_i0.cudafe1.cpp 2025-09-07T06:33:29.0607053Z [4044/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\layer_norm_kernel.cu.obj 2025-09-07T06:33:29.7869492Z layer_norm_kernel.cu 2025-09-07T06:33:29.7870111Z tmpxft_00001760_00000000-7_layer_norm_kernel.cudafe1.cpp 2025-09-07T06:33:29.7871251Z [4045/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i1.cu.obj 2025-09-07T06:33:30.7768672Z modified_bessel_i1.cu 2025-09-07T06:33:30.7769281Z tmpxft_000010ec_00000000-7_modified_bessel_i1.cudafe1.cpp 2025-09-07T06:33:30.7770443Z [4046/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k0.cu.obj 2025-09-07T06:33:31.0004590Z modified_bessel_k0.cu 2025-09-07T06:33:31.0004972Z tmpxft_000010b0_00000000-7_modified_bessel_k0.cudafe1.cpp 2025-09-07T06:33:31.0005948Z [4047/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k1.cu.obj 2025-09-07T06:33:31.3962969Z modified_bessel_k1.cu 2025-09-07T06:33:31.3963354Z tmpxft_000004cc_00000000-7_modified_bessel_k1.cudafe1.cpp 2025-09-07T06:33:31.3964031Z [4048/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k0.cu.obj 2025-09-07T06:33:31.4554147Z scaled_modified_bessel_k0.cu 2025-09-07T06:33:31.4554883Z tmpxft_00000fd8_00000000-7_scaled_modified_bessel_k0.cudafe1.cpp 2025-09-07T06:33:31.4556417Z [4049/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k1.cu.obj 2025-09-07T06:33:32.2605736Z scaled_modified_bessel_k1.cu 2025-09-07T06:33:32.2606437Z tmpxft_000016ec_00000000-7_scaled_modified_bessel_k1.cudafe1.cpp 2025-09-07T06:33:32.2607684Z [4050/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_t.cu.obj 2025-09-07T06:33:32.9496195Z shifted_chebyshev_polynomial_t.cu 2025-09-07T06:33:32.9496998Z tmpxft_000014dc_00000000-7_shifted_chebyshev_polynomial_t.cudafe1.cpp 2025-09-07T06:33:32.9498220Z [4051/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int4mm.cu.obj 2025-09-07T06:33:33.3013669Z int4mm.cu 2025-09-07T06:33:33.3013985Z tmpxft_00001be4_00000000-7_int4mm.cudafe1.cpp 2025-09-07T06:33:33.3014837Z [4052/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int8mm.cu.obj 2025-09-07T06:33:33.3097505Z int8mm.cu 2025-09-07T06:33:33.3097806Z tmpxft_00001098_00000000-7_int8mm.cudafe1.cpp 2025-09-07T06:33:33.3098529Z [4053/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_u.cu.obj 2025-09-07T06:33:33.4147851Z shifted_chebyshev_polynomial_u.cu 2025-09-07T06:33:33.4148616Z tmpxft_00000fbc_00000000-7_shifted_chebyshev_polynomial_u.cudafe1.cpp 2025-09-07T06:33:33.4150340Z [4054/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_v.cu.obj 2025-09-07T06:33:33.9434535Z shifted_chebyshev_polynomial_v.cu 2025-09-07T06:33:33.9435350Z tmpxft_00000190_00000000-7_shifted_chebyshev_polynomial_v.cudafe1.cpp 2025-09-07T06:33:33.9436724Z [4055/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_w.cu.obj 2025-09-07T06:33:34.1210893Z shifted_chebyshev_polynomial_w.cu 2025-09-07T06:33:34.1211955Z tmpxft_00001114_00000000-7_shifted_chebyshev_polynomial_w.cudafe1.cpp 2025-09-07T06:33:34.1213839Z [4056/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\spherical_bessel_j0.cu.obj 2025-09-07T06:34:26.3140663Z spherical_bessel_j0.cu 2025-09-07T06:34:26.3141124Z tmpxft_00000340_00000000-7_spherical_bessel_j0.cudafe1.cpp 2025-09-07T06:34:26.3141807Z [4057/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCsrTensorMath.cu.obj 2025-09-07T06:34:26.3383328Z SparseCsrTensorMath.cu 2025-09-07T06:34:26.3383725Z tmpxft_00001134_00000000-7_SparseCsrTensorMath.cudafe1.cpp 2025-09-07T06:34:26.3384368Z [4058/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SoftMax.cu.obj 2025-09-07T06:34:26.3599352Z SoftMax.cu 2025-09-07T06:34:26.3599642Z tmpxft_0000155c_00000000-7_SoftMax.cudafe1.cpp 2025-09-07T06:34:26.3600341Z [4059/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorBinaryOps.cu.obj 2025-09-07T06:34:26.3833448Z NestedTensorBinaryOps.cu 2025-09-07T06:34:26.3834023Z tmpxft_00000ad0_00000000-7_NestedTensorBinaryOps.cudafe1.cpp 2025-09-07T06:34:26.3834735Z [4060/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorMatmul.cu.obj 2025-09-07T06:34:26.4185512Z NestedTensorMatmul.cu 2025-09-07T06:34:26.4186167Z tmpxft_00000b2c_00000000-7_NestedTensorMatmul.cudafe1.cpp 2025-09-07T06:34:26.4186860Z [4061/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensorMath.cu.obj 2025-09-07T06:34:26.4231344Z SparseCUDATensorMath.cu 2025-09-07T06:34:26.4231770Z tmpxft_00001a9c_00000000-7_SparseCUDATensorMath.cudafe1.cpp 2025-09-07T06:34:26.4232554Z [4062/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensor.cu.obj 2025-09-07T06:34:26.4540018Z SparseCUDATensor.cu 2025-09-07T06:34:26.4540386Z tmpxft_00001504_00000000-7_SparseCUDATensor.cudafe1.cpp 2025-09-07T06:34:26.4541199Z [4063/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cu.obj 2025-09-07T06:34:33.2247028Z NestedTensorTransformerFunctions.cu 2025-09-07T06:34:33.2247552Z tmpxft_00000b7c_00000000-7_NestedTensorTransformerFunctions.cudafe1.cpp 2025-09-07T06:34:33.2248302Z [4064/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseMatMul.cu.obj 2025-09-07T06:34:35.7886708Z SparseMatMul.cu 2025-09-07T06:34:35.7887052Z tmpxft_00000a6c_00000000-7_SparseMatMul.cudafe1.cpp 2025-09-07T06:34:35.7887703Z [4065/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\AffineQuantizer.cu.obj 2025-09-07T06:34:38.9039181Z AffineQuantizer.cu 2025-09-07T06:34:38.9039565Z tmpxft_00001414_00000000-7_AffineQuantizer.cudafe1.cpp 2025-09-07T06:34:38.9040571Z [4066/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\EmbeddingBag.cu.obj 2025-09-07T06:34:38.9041192Z EmbeddingBag.cu 2025-09-07T06:34:38.9041446Z tmpxft_00000518_00000000-7_EmbeddingBag.cudafe1.cpp 2025-09-07T06:34:38.9042316Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-09-07T06:34:38.9043605Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-09-07T06:34:38.9045083Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-09-07T06:34:38.9046081Z with 2025-09-07T06:34:38.9046272Z [ 2025-09-07T06:34:38.9046469Z I=size_t, 2025-09-07T06:34:38.9046699Z _Ty2=size_t 2025-09-07T06:34:38.9046911Z ] 2025-09-07T06:34:38.9047694Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-09-07T06:34:38.9049436Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-09-07T06:34:38.9050741Z with 2025-09-07T06:34:38.9050940Z [ 2025-09-07T06:34:38.9051114Z _Ty=int 2025-09-07T06:34:38.9051410Z ] 2025-09-07T06:34:40.9681006Z tmpxft_00000518_00000000-7_EmbeddingBag.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-09-07T06:34:40.9682133Z with 2025-09-07T06:34:40.9682321Z [ 2025-09-07T06:34:40.9682530Z _Ty=int 2025-09-07T06:34:40.9682738Z ] 2025-09-07T06:34:40.9683270Z [4067/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiSturcturedApply.cu.obj 2025-09-07T06:34:41.3550217Z SparseSemiSturcturedApply.cu 2025-09-07T06:34:41.3550661Z tmpxft_000018dc_00000000-7_SparseSemiSturcturedApply.cudafe1.cpp 2025-09-07T06:34:41.3551380Z [4068/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FakeQuantizeCore.cu.obj 2025-09-07T06:34:43.6162225Z FakeQuantizeCore.cu 2025-09-07T06:34:43.6162583Z tmpxft_00000b98_00000000-7_FakeQuantizeCore.cudafe1.cpp 2025-09-07T06:34:43.6163287Z [4069/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FusedObsFakeQuant.cu.obj 2025-09-07T06:34:43.9909461Z FusedObsFakeQuant.cu 2025-09-07T06:34:43.9909836Z tmpxft_00001870_00000000-7_FusedObsFakeQuant.cudafe1.cpp 2025-09-07T06:34:43.9910505Z [4070/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\IntReprQuant.cu.obj 2025-09-07T06:34:46.2115774Z IntReprQuant.cu 2025-09-07T06:34:46.2116126Z tmpxft_00001690_00000000-7_IntReprQuant.cudafe1.cpp 2025-09-07T06:34:46.2116833Z [4071/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\MakePerTensorQuantizedTensor.cu.obj 2025-09-07T06:34:49.8687506Z MakePerTensorQuantizedTensor.cu 2025-09-07T06:34:49.8687972Z tmpxft_00001578_00000000-7_MakePerTensorQuantizedTensor.cudafe1.cpp 2025-09-07T06:34:49.8688679Z [4072/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention.cu.obj 2025-09-07T06:34:50.2392940Z attention.cu 2025-09-07T06:34:50.2393258Z tmpxft_000003bc_00000000-7_attention.cudafe1.cpp 2025-09-07T06:34:50.2394178Z [4073/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention_backward.cu.obj 2025-09-07T06:34:50.9488017Z attention_backward.cu 2025-09-07T06:34:50.9488901Z tmpxft_0000139c_00000000-7_attention_backward.cudafe1.cpp 2025-09-07T06:34:50.9490284Z [4074/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cu.obj 2025-09-07T06:34:50.9853021Z Activation.cu 2025-09-07T06:34:50.9853970Z tmpxft_00001560_00000000-7_Activation.cudafe1.cpp 2025-09-07T06:34:50.9855625Z [4075/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredLinear.cu.obj 2025-09-07T06:34:51.0152364Z SparseSemiStructuredLinear.cu 2025-09-07T06:34:51.0153151Z tmpxft_000016e0_00000000-7_SparseSemiStructuredLinear.cudafe1.cpp 2025-09-07T06:34:51.0155305Z [4076/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredApplyDense.cu.obj 2025-09-07T06:34:51.0157002Z SparseSemiStructuredApplyDense.cu 2025-09-07T06:34:51.0157828Z tmpxft_00000cd0_00000000-7_SparseSemiStructuredApplyDense.cudafe1.cpp 2025-09-07T06:34:51.0159515Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-09-07T06:34:51.0161991Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-09-07T06:34:51.0168898Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-09-07T06:34:51.0170709Z with 2025-09-07T06:34:51.0171077Z [ 2025-09-07T06:34:51.0171508Z I=size_t, 2025-09-07T06:34:51.0172367Z _Ty2=size_t 2025-09-07T06:34:51.0172776Z ] 2025-09-07T06:34:51.0176524Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-09-07T06:34:51.0179206Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-09-07T06:34:51.2655328Z with 2025-09-07T06:34:51.2655737Z [ 2025-09-07T06:34:51.2656037Z _Ty=int 2025-09-07T06:34:51.2656393Z ] 2025-09-07T06:34:51.2658805Z tmpxft_00000cd0_00000000-7_SparseSemiStructuredApplyDense.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-09-07T06:34:51.2662006Z with 2025-09-07T06:34:51.2662389Z [ 2025-09-07T06:34:51.2662816Z _Ty=int 2025-09-07T06:34:51.2663164Z ] 2025-09-07T06:34:51.2664450Z [4077/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredTile.cu.obj 2025-09-07T06:34:51.2665702Z SparseSemiStructuredTile.cu 2025-09-07T06:34:51.2666331Z tmpxft_00001828_00000000-7_SparseSemiStructuredTile.cudafe1.cpp 2025-09-07T06:34:51.2668264Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-09-07T06:34:51.2670786Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-09-07T06:34:51.2673597Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-09-07T06:34:51.2678289Z with 2025-09-07T06:34:51.2678842Z [ 2025-09-07T06:34:51.2679149Z I=size_t, 2025-09-07T06:34:51.2679518Z _Ty2=size_t 2025-09-07T06:34:51.2679883Z ] 2025-09-07T06:34:51.2681252Z C:/actions-runner/_work/pytorch/pytorch/aten/src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-09-07T06:34:51.2685111Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-09-07T06:34:51.2687810Z with 2025-09-07T06:34:51.2688144Z [ 2025-09-07T06:34:51.2688457Z _Ty=int 2025-09-07T06:34:51.2689000Z ] 2025-09-07T06:34:51.3815424Z tmpxft_00001828_00000000-7_SparseSemiStructuredTile.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-09-07T06:34:51.3818324Z with 2025-09-07T06:34:51.3818653Z [ 2025-09-07T06:34:51.3818944Z _Ty=int 2025-09-07T06:34:51.3819260Z ] 2025-09-07T06:34:51.3838196Z [4078/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredOps.cu.obj 2025-09-07T06:34:52.8201204Z SparseSemiStructuredOps.cu 2025-09-07T06:34:52.8201947Z tmpxft_00001004_00000000-7_SparseSemiStructuredOps.cudafe1.cpp 2025-09-07T06:34:52.8203544Z [4079/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k128.cu.obj 2025-09-07T06:34:53.2102586Z cutlassB_bf16_aligned_k128.cu 2025-09-07T06:34:53.2103055Z tmpxft_00000c60_00000000-7_cutlassB_bf16_aligned_k128.cudafe1.cpp 2025-09-07T06:34:53.2104759Z [4080/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k128_dropout.cu.obj 2025-09-07T06:34:53.8034065Z cutlassB_bf16_aligned_k128_dropout.cu 2025-09-07T06:34:53.8176336Z tmpxft_00000cd4_00000000-7_cutlassB_bf16_aligned_k128_dropout.cudafe1.cpp 2025-09-07T06:34:53.8177361Z [4081/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k32.cu.obj 2025-09-07T06:34:53.9442609Z cutlassB_bf16_aligned_k32.cu 2025-09-07T06:34:53.9452990Z tmpxft_00000378_00000000-7_cutlassB_bf16_aligned_k32.cudafe1.cpp 2025-09-07T06:34:53.9453971Z [4082/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k32_dropout.cu.obj 2025-09-07T06:34:54.0242656Z cutlassB_bf16_aligned_k32_dropout.cu 2025-09-07T06:34:54.0243964Z tmpxft_000012e8_00000000-7_cutlassB_bf16_aligned_k32_dropout.cudafe1.cpp 2025-09-07T06:34:54.0245799Z [4083/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k64.cu.obj 2025-09-07T06:34:54.1669047Z cutlassB_bf16_aligned_k64.cu 2025-09-07T06:34:54.1676613Z tmpxft_000007f0_00000000-7_cutlassB_bf16_aligned_k64.cudafe1.cpp 2025-09-07T06:34:54.1684087Z [4084/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k64_dropout.cu.obj 2025-09-07T06:34:54.3569776Z cutlassB_bf16_aligned_k64_dropout.cu 2025-09-07T06:34:54.3571348Z tmpxft_00001448_00000000-7_cutlassB_bf16_aligned_k64_dropout.cudafe1.cpp 2025-09-07T06:34:54.3574764Z [4085/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k65536.cu.obj 2025-09-07T06:34:55.7937567Z cutlassB_bf16_aligned_k65536.cu 2025-09-07T06:34:55.7938270Z tmpxft_00000748_00000000-7_cutlassB_bf16_aligned_k65536.cudafe1.cpp 2025-09-07T06:34:55.7939879Z [4086/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k65536_dropout.cu.obj 2025-09-07T06:34:56.2706992Z cutlassB_bf16_aligned_k65536_dropout.cu 2025-09-07T06:34:56.2707845Z tmpxft_0000101c_00000000-7_cutlassB_bf16_aligned_k65536_dropout.cudafe1.cpp 2025-09-07T06:34:56.2709542Z [4087/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_bf16_aligned_k96.cu.obj 2025-09-07T06:34:56.7738299Z cutlassB_bf16_aligned_k96.cu 2025-09-07T06:34:56.7739007Z tmpxft_00001720_00000000-7_cutlassB_bf16_aligned_k96.cudafe1.cpp 2025-09-07T06:34:56.7740699Z [4088/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k128.cu.obj 2025-09-07T06:34:56.8705355Z cutlassB_f16_aligned_k128.cu 2025-09-07T06:34:56.8706081Z tmpxft_000013ac_00000000-7_cutlassB_f16_aligned_k128.cudafe1.cpp 2025-09-07T06:34:56.8707672Z [4089/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k128_dropout.cu.obj 2025-09-07T06:34:57.0493125Z cutlassB_f16_aligned_k128_dropout.cu 2025-09-07T06:34:57.0493945Z tmpxft_00000724_00000000-7_cutlassB_f16_aligned_k128_dropout.cudafe1.cpp 2025-09-07T06:34:57.0495420Z [4090/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k32.cu.obj 2025-09-07T06:34:57.2001356Z cutlassB_f16_aligned_k32.cu 2025-09-07T06:34:57.2004228Z tmpxft_00000f70_00000000-7_cutlassB_f16_aligned_k32.cudafe1.cpp 2025-09-07T06:34:57.2007168Z [4091/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k32_dropout.cu.obj 2025-09-07T06:34:57.3689234Z cutlassB_f16_aligned_k32_dropout.cu 2025-09-07T06:34:58.6882074Z tmpxft_000007b0_00000000-7_cutlassB_f16_aligned_k32_dropout.cudafe1.cpp 2025-09-07T06:34:58.6883026Z [4092/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k64.cu.obj 2025-09-07T06:34:58.6883788Z cutlassB_f16_aligned_k64.cu 2025-09-07T06:34:58.6884164Z tmpxft_000011dc_00000000-7_cutlassB_f16_aligned_k64.cudafe1.cpp 2025-09-07T06:34:58.6885021Z [4093/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k64_dropout.cu.obj 2025-09-07T06:34:59.2515155Z cutlassB_f16_aligned_k64_dropout.cu 2025-09-07T06:34:59.2515619Z tmpxft_00000674_00000000-7_cutlassB_f16_aligned_k64_dropout.cudafe1.cpp 2025-09-07T06:34:59.2516537Z [4094/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k65536.cu.obj 2025-09-07T06:34:59.6600953Z cutlassB_f16_aligned_k65536.cu 2025-09-07T06:34:59.6601676Z tmpxft_000011bc_00000000-7_cutlassB_f16_aligned_k65536.cudafe1.cpp 2025-09-07T06:34:59.6603588Z [4095/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k65536_dropout.cu.obj 2025-09-07T06:34:59.7924173Z cutlassB_f16_aligned_k65536_dropout.cu 2025-09-07T06:34:59.7925182Z tmpxft_00001788_00000000-7_cutlassB_f16_aligned_k65536_dropout.cudafe1.cpp 2025-09-07T06:34:59.7926338Z [4096/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_aligned_k96.cu.obj 2025-09-07T06:35:00.0209742Z cutlassB_f16_aligned_k96.cu 2025-09-07T06:35:00.0210442Z tmpxft_00000b18_00000000-7_cutlassB_f16_aligned_k96.cudafe1.cpp 2025-09-07T06:35:00.0211917Z [4097/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k128.cu.obj 2025-09-07T06:35:00.1157410Z cutlassB_f16_notaligned_k128.cu 2025-09-07T06:35:00.1158901Z tmpxft_000017d4_00000000-7_cutlassB_f16_notaligned_k128.cudafe1.cpp 2025-09-07T06:35:00.1160848Z [4098/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k128_dropout.cu.obj 2025-09-07T06:35:00.3097872Z cutlassB_f16_notaligned_k128_dropout.cu 2025-09-07T06:35:00.3098764Z tmpxft_0000162c_00000000-7_cutlassB_f16_notaligned_k128_dropout.cudafe1.cpp 2025-09-07T06:35:00.3100664Z [4099/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k32.cu.obj 2025-09-07T06:35:01.6382559Z cutlassB_f16_notaligned_k32.cu 2025-09-07T06:35:01.6383251Z tmpxft_00001750_00000000-7_cutlassB_f16_notaligned_k32.cudafe1.cpp 2025-09-07T06:35:01.6384846Z [4100/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k32_dropout.cu.obj 2025-09-07T06:35:02.1665422Z cutlassB_f16_notaligned_k32_dropout.cu 2025-09-07T06:35:02.1665910Z tmpxft_00001108_00000000-7_cutlassB_f16_notaligned_k32_dropout.cudafe1.cpp 2025-09-07T06:35:02.1666889Z [4101/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k64.cu.obj 2025-09-07T06:35:02.6441914Z cutlassB_f16_notaligned_k64.cu 2025-09-07T06:35:02.6442467Z tmpxft_00000c7c_00000000-7_cutlassB_f16_notaligned_k64.cudafe1.cpp 2025-09-07T06:35:02.6443995Z [4102/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k64_dropout.cu.obj 2025-09-07T06:35:02.7569742Z cutlassB_f16_notaligned_k64_dropout.cu 2025-09-07T06:35:02.7570706Z tmpxft_00000460_00000000-7_cutlassB_f16_notaligned_k64_dropout.cudafe1.cpp 2025-09-07T06:35:02.7572298Z [4103/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k65536.cu.obj 2025-09-07T06:35:02.9425370Z cutlassB_f16_notaligned_k65536.cu 2025-09-07T06:35:02.9426143Z tmpxft_00000ad0_00000000-7_cutlassB_f16_notaligned_k65536.cudafe1.cpp 2025-09-07T06:35:02.9427886Z [4104/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f16_notaligned_k65536_dropout.cu.obj 2025-09-07T06:35:03.1028490Z cutlassB_f16_notaligned_k65536_dropout.cu 2025-09-07T06:35:03.1029554Z tmpxft_0000128c_00000000-7_cutlassB_f16_notaligned_k65536_dropout.cudafe1.cpp 2025-09-07T06:35:03.1031172Z [4105/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k128.cu.obj 2025-09-07T06:35:03.1235936Z cutlassB_f32_aligned_k128.cu 2025-09-07T06:35:03.1236828Z tmpxft_00000b34_00000000-7_cutlassB_f32_aligned_k128.cudafe1.cpp 2025-09-07T06:35:03.1239286Z [4106/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k128_dropout.cu.obj 2025-09-07T06:35:04.6330427Z cutlassB_f32_aligned_k128_dropout.cu 2025-09-07T06:35:04.6331513Z tmpxft_0000149c_00000000-7_cutlassB_f32_aligned_k128_dropout.cudafe1.cpp 2025-09-07T06:35:04.6333183Z [4107/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k32.cu.obj 2025-09-07T06:35:05.0269837Z cutlassB_f32_aligned_k32.cu 2025-09-07T06:35:05.0270353Z tmpxft_000015fc_00000000-7_cutlassB_f32_aligned_k32.cudafe1.cpp 2025-09-07T06:35:05.0271397Z [4108/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k32_dropout.cu.obj 2025-09-07T06:35:05.6162649Z cutlassB_f32_aligned_k32_dropout.cu 2025-09-07T06:35:05.6163483Z tmpxft_00001360_00000000-7_cutlassB_f32_aligned_k32_dropout.cudafe1.cpp 2025-09-07T06:35:05.6165194Z [4109/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k64.cu.obj 2025-09-07T06:35:05.7274266Z cutlassB_f32_aligned_k64.cu 2025-09-07T06:35:05.7274965Z tmpxft_00001658_00000000-7_cutlassB_f32_aligned_k64.cudafe1.cpp 2025-09-07T06:35:05.7277047Z [4110/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k64_dropout.cu.obj 2025-09-07T06:35:05.8144424Z cutlassB_f32_aligned_k64_dropout.cu 2025-09-07T06:35:05.8145205Z tmpxft_00001660_00000000-7_cutlassB_f32_aligned_k64_dropout.cudafe1.cpp 2025-09-07T06:35:05.8146762Z [4111/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k65536.cu.obj 2025-09-07T06:35:06.0130869Z cutlassB_f32_aligned_k65536.cu 2025-09-07T06:35:06.0132083Z tmpxft_0000090c_00000000-7_cutlassB_f32_aligned_k65536.cudafe1.cpp 2025-09-07T06:35:06.0133960Z [4112/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_aligned_k65536_dropout.cu.obj 2025-09-07T06:35:06.1210840Z cutlassB_f32_aligned_k65536_dropout.cu 2025-09-07T06:35:06.1213239Z tmpxft_00000fb8_00000000-7_cutlassB_f32_aligned_k65536_dropout.cudafe1.cpp 2025-09-07T06:35:06.1215450Z [4113/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k128.cu.obj 2025-09-07T06:35:07.6217676Z cutlassB_f32_notaligned_k128.cu 2025-09-07T06:35:07.6218161Z tmpxft_000014c4_00000000-7_cutlassB_f32_notaligned_k128.cudafe1.cpp 2025-09-07T06:35:07.6219227Z [4114/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k128_dropout.cu.obj 2025-09-07T06:35:07.9417095Z cutlassB_f32_notaligned_k128_dropout.cu 2025-09-07T06:35:07.9417935Z tmpxft_000016dc_00000000-7_cutlassB_f32_notaligned_k128_dropout.cudafe1.cpp 2025-09-07T06:35:07.9419605Z [4115/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k32.cu.obj 2025-09-07T06:35:08.6040080Z cutlassB_f32_notaligned_k32.cu 2025-09-07T06:35:08.6040958Z tmpxft_00000a60_00000000-7_cutlassB_f32_notaligned_k32.cudafe1.cpp 2025-09-07T06:35:08.6042410Z [4116/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k32_dropout.cu.obj 2025-09-07T06:35:08.6354349Z cutlassB_f32_notaligned_k32_dropout.cu 2025-09-07T06:35:08.6355158Z tmpxft_00000768_00000000-7_cutlassB_f32_notaligned_k32_dropout.cudafe1.cpp 2025-09-07T06:35:08.6356779Z [4117/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k64.cu.obj 2025-09-07T06:35:08.6585644Z cutlassB_f32_notaligned_k64.cu 2025-09-07T06:35:08.6586641Z tmpxft_000007c8_00000000-7_cutlassB_f32_notaligned_k64.cudafe1.cpp 2025-09-07T06:35:08.6588285Z [4118/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k64_dropout.cu.obj 2025-09-07T06:35:08.9583135Z cutlassB_f32_notaligned_k64_dropout.cu 2025-09-07T06:35:08.9583876Z tmpxft_00000d28_00000000-7_cutlassB_f32_notaligned_k64_dropout.cudafe1.cpp 2025-09-07T06:35:08.9585798Z [4119/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k65536.cu.obj 2025-09-07T06:35:09.0174644Z cutlassB_f32_notaligned_k65536.cu 2025-09-07T06:35:09.0175477Z tmpxft_0000130c_00000000-7_cutlassB_f32_notaligned_k65536.cudafe1.cpp 2025-09-07T06:35:09.0179432Z [4120/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB_f32_notaligned_k65536_dropout.cu.obj 2025-09-07T06:35:10.4407071Z cutlassB_f32_notaligned_k65536_dropout.cu 2025-09-07T06:35:10.4407583Z tmpxft_00001774_00000000-7_cutlassB_f32_notaligned_k65536_dropout.cudafe1.cpp 2025-09-07T06:35:10.4408440Z [4121/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_bf16_aligned.cu.obj 2025-09-07T06:35:10.4688602Z cutlassF_bf16_aligned.cu 2025-09-07T06:35:10.4689170Z tmpxft_00001020_00000000-7_cutlassF_bf16_aligned.cudafe1.cpp 2025-09-07T06:35:10.4690193Z [4122/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterNestedTensorCUDA_0.cpp.obj 2025-09-07T06:35:10.7014731Z [4123/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_aligned.cu.obj 2025-09-07T06:35:11.3854466Z cutlassF_f16_aligned.cu 2025-09-07T06:35:11.3854917Z tmpxft_000005a4_00000000-7_cutlassF_f16_aligned.cudafe1.cpp 2025-09-07T06:35:11.3855769Z [4124/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_notaligned.cu.obj 2025-09-07T06:35:11.3925291Z cutlassF_f16_notaligned.cu 2025-09-07T06:35:11.3925714Z tmpxft_00001480_00000000-7_cutlassF_f16_notaligned.cudafe1.cpp 2025-09-07T06:35:11.3926820Z [4125/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_aligned.cu.obj 2025-09-07T06:35:11.4838239Z cutlassF_f32_aligned.cu 2025-09-07T06:35:11.4838864Z tmpxft_00000814_00000000-7_cutlassF_f32_aligned.cudafe1.cpp 2025-09-07T06:35:11.4840299Z [4126/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_notaligned.cu.obj 2025-09-07T06:35:11.5998297Z cutlassF_f32_notaligned.cu 2025-09-07T06:35:11.5998844Z tmpxft_00001338_00000000-7_cutlassF_f32_notaligned.cudafe1.cpp 2025-09-07T06:35:11.5999519Z [4127/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterQuantizedCUDA_0.cpp.obj 2025-09-07T06:35:11.6652551Z [4128/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterCUDA_0.cpp.obj 2025-09-07T06:35:11.6857433Z [4129/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCsrCUDA_0.cpp.obj 2025-09-07T06:35:11.9422031Z [4130/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCUDA_0.cpp.obj 2025-09-07T06:35:12.4699860Z [4131/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CudssHandlePool.cpp.obj 2025-09-07T06:35:12.6755048Z [4132/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLib.cpp.obj 2025-09-07T06:35:12.6802620Z [4133/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebra.cpp.obj 2025-09-07T06:35:12.7033489Z [4134/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CusolverDnHandlePool.cpp.obj 2025-09-07T06:35:12.7223211Z [4135/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLibBlas.cpp.obj 2025-09-07T06:35:13.3948834Z [4136/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\Tunable.cpp.obj 2025-09-07T06:35:13.4192485Z [4137/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\StreamTimer.cpp.obj 2025-09-07T06:35:13.4262741Z [4138/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseBlas.cpp.obj 2025-09-07T06:35:13.5111601Z [4139/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CublasHandlePool.cpp.obj 2025-09-07T06:35:13.5825318Z [4140/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CUDASolver.cpp.obj 2025-09-07T06:35:13.8286885Z [4141/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\UfuncCUDA_add.cu.obj 2025-09-07T06:35:14.2859081Z UfuncCUDA_add.cu 2025-09-07T06:35:14.2859578Z tmpxft_00000c50_00000000-7_UfuncCUDA_add.cudafe1.cpp 2025-09-07T06:35:14.2860487Z [4142/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Activation.cpp.obj 2025-09-07T06:35:14.3921483Z [4143/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cpp.obj 2025-09-07T06:35:14.4505458Z [4144/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Equal.cpp.obj 2025-09-07T06:35:14.7643267Z [4145/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cpp.obj 2025-09-07T06:35:14.9425553Z [4146/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Blas.cpp.obj 2025-09-07T06:35:15.1308165Z [4147/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cpp.obj 2025-09-07T06:35:15.2487727Z [4148/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceOps.cpp.obj 2025-09-07T06:35:15.6547292Z [4149/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScanKernels.cpp.obj 2025-09-07T06:35:15.6658611Z [4150/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cpp.obj 2025-09-07T06:35:15.6882659Z [4151/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebraStubs.cpp.obj 2025-09-07T06:35:15.9246786Z [4152/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cpp.obj 2025-09-07T06:35:16.0308069Z [4153/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cpp.obj 2025-09-07T06:35:16.1850433Z [4154/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDABlas.cpp.obj 2025-09-07T06:35:16.3995199Z [4155/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cpp.obj 2025-09-07T06:35:16.6021973Z [4156/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\jit_utils.cpp.obj 2025-09-07T06:35:16.8970279Z [4157/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShapeCUDA.cpp.obj 2025-09-07T06:35:17.0807148Z [4158/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlas.cpp.obj 2025-09-07T06:35:17.0998277Z [4159/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasLegacy.cpp.obj 2025-09-07T06:35:17.1979983Z [4160/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDABlas.cpp.obj 2025-09-07T06:35:17.2253981Z [4161/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\flash_attn\flash_api.cpp.obj 2025-09-07T06:35:17.3275529Z [4162/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasImpl.cpp.obj 2025-09-07T06:35:17.6137835Z [4163/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\CudaIPCTypes.cpp.obj 2025-09-07T06:35:17.7204596Z [4164/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\CUDAPluggableAllocator.cpp.obj 2025-09-07T06:35:18.1119019Z [4165/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.cpp.obj 2025-09-07T06:35:18.1703815Z [4166/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\memory_snapshot.cpp.obj 2025-09-07T06:35:18.1931297Z [4167/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\shim_cuda.cpp.obj 2025-09-07T06:35:18.8676791Z [4168/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\profiler\stubs\cuda.cpp.obj 2025-09-07T06:35:18.9430391Z [4169/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cpp.obj 2025-09-07T06:35:19.1567939Z [4170/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion_cuda.cpp.obj 2025-09-07T06:35:19.2303536Z [4171/7565] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-09-07T06:35:19.6195322Z [4172/7565] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-09-07T06:35:20.5130236Z [4173/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\comm.cpp.obj 2025-09-07T06:35:20.5610615Z [4174/7565] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-09-07T06:35:21.0858407Z [4175/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.cpp.obj 2025-09-07T06:35:21.5108866Z [4176/7565] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-09-07T06:35:21.6353229Z [4177/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\autograd\functions\comm.cpp.obj 2025-09-07T06:35:21.7929958Z [4178/7565] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-09-07T06:35:21.9532786Z [4179/7565] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-09-07T06:35:22.0202607Z [4180/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\tensorexpr\cuda_codegen.cpp.obj 2025-09-07T06:35:22.0204890Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): warning C4805: '==': unsafe mix of type 'c10::impl::ScalarTypeToCPPType::type' and type 'T' in operation 2025-09-07T06:35:22.0206489Z with 2025-09-07T06:35:22.0206841Z [ 2025-09-07T06:35:22.0207155Z T=int 2025-09-07T06:35:22.0207476Z ] 2025-09-07T06:35:22.0208550Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-09-07T06:35:22.2779900Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\tensorexpr\cuda_codegen.cpp(147): note: see reference to function template instantiation 'bool torch::jit::tensorexpr::immediateEquals(const torch::jit::tensorexpr::ExprPtr &,T)' being compiled 2025-09-07T06:35:22.2781935Z with 2025-09-07T06:35:22.2782243Z [ 2025-09-07T06:35:22.2782546Z T=int 2025-09-07T06:35:22.2782864Z ] 2025-09-07T06:35:22.2783504Z [4181/7565] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\runtime\register_cuda_ops.cpp.obj 2025-09-07T06:35:23.6261358Z [4182/7565] Building CUDA object test_cpp_c10d\CMakeFiles\c10d_cuda_test.dir\CUDATest.cu.obj 2025-09-07T06:35:24.1513684Z CUDATest.cu 2025-09-07T06:35:24.1514065Z tmpxft_00001748_00000000-7_CUDATest.cudafe1.cpp 2025-09-07T06:35:24.1514700Z [4183/7565] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Unique.cu.obj 2025-09-07T06:35:27.8423150Z Unique.cu 2025-09-07T06:35:27.8423460Z tmpxft_00000ba8_00000000-7_Unique.cudafe1.cpp 2025-09-07T06:35:27.8424099Z [4184/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-09-07T06:35:27.8678611Z [4185/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-09-07T06:35:27.9479529Z [4186/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-09-07T06:35:28.0067141Z [4187/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-09-07T06:35:28.0658998Z [4188/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-09-07T06:35:28.4671956Z [4189/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-09-07T06:35:28.5723522Z [4190/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-09-07T06:35:29.4434317Z [4191/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-09-07T06:35:29.4663932Z [4192/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-09-07T06:35:29.4895767Z [4193/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-09-07T06:35:29.6884210Z [4194/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-09-07T06:35:29.6934348Z [4195/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-09-07T06:35:29.7091963Z [4196/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-09-07T06:35:29.7203842Z [4197/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-09-07T06:35:30.0042107Z [4198/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-09-07T06:35:30.5998925Z [4199/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-09-07T06:35:30.6036845Z [4200/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-09-07T06:35:30.7219379Z [4201/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-09-07T06:35:30.7513339Z [4202/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-09-07T06:35:30.8594711Z [4203/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-09-07T06:35:30.8709394Z [4204/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-09-07T06:35:31.6477447Z [4205/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-09-07T06:35:31.7874458Z [4206/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-09-07T06:35:32.0168401Z [4207/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-09-07T06:35:32.8055535Z [4208/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreterHooks.cpp.obj 2025-09-07T06:35:33.0099623Z [4209/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-09-07T06:35:34.0480450Z [4210/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-09-07T06:35:34.0533626Z [4211/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-09-07T06:35:34.3643399Z [4212/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-09-07T06:35:34.4480994Z [4213/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-09-07T06:35:35.2199664Z [4214/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-09-07T06:35:35.5685751Z [4215/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-09-07T06:35:37.2471148Z [4216/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-09-07T06:35:38.2049564Z [4217/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-09-07T06:35:38.2488138Z [4218/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-09-07T06:35:38.2675299Z [4219/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-09-07T06:35:38.3263109Z [4220/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-09-07T06:35:39.0056383Z [4221/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-09-07T06:35:39.3789044Z [4222/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-09-07T06:35:39.4558560Z [4223/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-09-07T06:35:39.4698149Z [4224/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-09-07T06:35:40.1496263Z [4225/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-09-07T06:35:41.0270078Z [4226/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-09-07T06:35:42.0702125Z [4227/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-09-07T06:35:42.1497004Z [4228/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-09-07T06:35:43.1682425Z [4229/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-09-07T06:35:43.3041232Z [4230/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-09-07T06:35:43.8299736Z [4231/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-09-07T06:35:43.9032276Z [4232/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-09-07T06:35:44.7445400Z [4233/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-09-07T06:35:44.9243421Z [4234/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-09-07T06:35:45.6312667Z [4235/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-09-07T06:35:45.9150306Z [4236/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-09-07T06:35:45.9661282Z [4237/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-09-07T06:35:46.4996607Z [4238/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-09-07T06:35:46.5081412Z [4239/7565] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-09-07T06:35:46.5414861Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-09-07T06:35:46.5415807Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-09-07T06:35:46.5416603Z [4240/7565] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-09-07T06:35:46.8892586Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-09-07T06:35:46.8894103Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-09-07T06:35:46.8894975Z [4241/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-09-07T06:35:46.9087999Z [4242/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-09-07T06:35:46.9210776Z [4243/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-09-07T06:35:47.0366628Z [4244/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-09-07T06:35:47.2742136Z [4245/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-09-07T06:35:47.5030620Z [4246/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-09-07T06:35:47.6866979Z [4247/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-09-07T06:35:48.0329010Z [4248/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\upgrader.cpp.obj 2025-09-07T06:35:48.1856658Z [4249/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\example_upgraders.cpp.obj 2025-09-07T06:35:48.5497699Z [4250/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-09-07T06:35:49.2032671Z [4251/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-09-07T06:35:49.2869431Z [4252/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-09-07T06:35:50.4619228Z [4253/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-09-07T06:35:50.6194911Z [4254/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-09-07T06:35:50.8230233Z [4255/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-09-07T06:35:50.8651850Z [4256/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-09-07T06:35:51.1798261Z [4257/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-09-07T06:35:51.7576674Z [4258/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-09-07T06:35:52.2131970Z [4259/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-09-07T06:35:52.4261298Z [4260/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-09-07T06:35:52.7520786Z [4261/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-09-07T06:35:53.2830427Z [4262/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-09-07T06:35:54.2703508Z [4263/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-09-07T06:35:54.4523395Z [4264/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-09-07T06:35:54.6362168Z [4265/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-09-07T06:35:54.9946250Z [4266/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-09-07T06:35:55.0620787Z [4267/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-09-07T06:35:55.4182398Z [4268/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-09-07T06:35:55.4706911Z [4269/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-09-07T06:35:55.6613738Z [4270/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-09-07T06:35:55.9173328Z [4271/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-09-07T06:35:56.1371881Z [4272/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-09-07T06:35:56.2244375Z [4273/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-09-07T06:35:56.4569306Z [4274/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-09-07T06:35:56.5247500Z [4275/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-09-07T06:35:56.6977037Z [4276/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-09-07T06:35:56.7717192Z [4277/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-09-07T06:35:57.1670354Z [4278/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-09-07T06:35:57.4393736Z [4279/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-09-07T06:35:57.6453659Z [4280/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-09-07T06:35:58.2408756Z [4281/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-09-07T06:35:58.3103619Z [4282/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-09-07T06:35:58.3994028Z [4283/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-09-07T06:35:58.4686597Z [4284/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-09-07T06:35:58.7648171Z [4285/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-09-07T06:35:59.3728139Z [4286/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-09-07T06:36:00.4723237Z [4287/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-09-07T06:36:00.8365331Z [4288/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-09-07T06:36:02.3774881Z [4289/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-09-07T06:36:02.4335232Z [4290/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-09-07T06:36:02.4714056Z [4291/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-09-07T06:36:02.6983448Z [4292/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-09-07T06:36:03.0514646Z [4293/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-09-07T06:36:03.3418285Z [4294/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-09-07T06:36:04.1139151Z [4295/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-09-07T06:36:04.5819134Z [4296/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-09-07T06:36:04.8778197Z [4297/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-09-07T06:36:05.7488859Z [4298/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-09-07T06:36:05.8817533Z [4299/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-09-07T06:36:06.5445652Z [4300/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-09-07T06:36:06.5873117Z [4301/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-09-07T06:36:06.5875240Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(629): warning C4996: 'pybind11::handle::operator ==': Use obj1.is(obj2) instead 2025-09-07T06:36:06.5877609Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(629): note: the template instantiation context (the oldest one first) is 2025-09-07T06:36:06.5881210Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\frontend\concrete_module_type.cpp(118): note: see reference to function template instantiation 'bool std::operator ==>(const std::vector> &,const std::vector> &)' being compiled 2025-09-07T06:36:06.5885495Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(2232): note: see reference to function template instantiation 'bool std::equal(const _InIt1,const _InIt1,const _InIt2)' being compiled 2025-09-07T06:36:06.5887602Z with 2025-09-07T06:36:06.5887955Z [ 2025-09-07T06:36:06.5888302Z _Ty=pybind11::object, 2025-09-07T06:36:06.5888814Z _InIt1=const pybind11::object *, 2025-09-07T06:36:06.5889350Z _InIt2=const pybind11::object * 2025-09-07T06:36:06.5889837Z ] 2025-09-07T06:36:06.5891748Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5428): note: see reference to function template instantiation 'bool std::equal<_InIt1,_InIt2,std::equal_to>(const _InIt1,const _InIt1,const _InIt2,_Pr)' being compiled 2025-09-07T06:36:06.5893665Z with 2025-09-07T06:36:06.5893997Z [ 2025-09-07T06:36:06.5894355Z _InIt1=const pybind11::object *, 2025-09-07T06:36:06.7115718Z _InIt2=const pybind11::object *, 2025-09-07T06:36:06.7116362Z _Pr=std::equal_to 2025-09-07T06:36:06.7116864Z ] 2025-09-07T06:36:06.7118804Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xutility(5411): note: see reference to function template instantiation 'bool std::equal_to::operator ()(_Ty1,_Ty2) noexcept(false) const' being compiled 2025-09-07T06:36:06.7121303Z with 2025-09-07T06:36:06.7121662Z [ 2025-09-07T06:36:06.7121975Z _Ty=pybind11::object, 2025-09-07T06:36:06.7122336Z _Ty1=const pybind11::object &, 2025-09-07T06:36:06.7122887Z _Ty2=const pybind11::object & 2025-09-07T06:36:06.7123155Z ] 2025-09-07T06:36:06.7123660Z [4302/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-09-07T06:36:07.3542988Z [4303/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-09-07T06:36:07.7192973Z [4304/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-09-07T06:36:08.5309588Z [4305/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-09-07T06:36:09.9471302Z [4306/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-09-07T06:36:10.0836741Z [4307/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-09-07T06:36:10.3268297Z [4308/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-09-07T06:36:10.6601421Z [4309/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-09-07T06:36:10.9594176Z [4310/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-09-07T06:36:11.0069197Z [4311/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-09-07T06:36:11.0603224Z [4312/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-09-07T06:36:11.4221574Z [4313/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-09-07T06:36:11.9020912Z [4314/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-09-07T06:36:12.1149158Z [4315/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-09-07T06:36:12.1964882Z [4316/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-09-07T06:36:12.4781874Z [4317/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-09-07T06:36:12.5834491Z [4318/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-09-07T06:36:13.0838157Z [4319/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-09-07T06:36:13.4761679Z [4320/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-09-07T06:36:13.6098906Z [4321/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-09-07T06:36:14.0612584Z [4322/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-09-07T06:36:14.4282943Z [4323/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-09-07T06:36:14.4814356Z [4324/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-09-07T06:36:14.8779801Z [4325/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-09-07T06:36:15.3693701Z [4326/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-09-07T06:36:15.7265102Z [4327/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-09-07T06:36:15.9426596Z [4328/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-09-07T06:36:16.0147911Z [4329/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-09-07T06:36:16.2949434Z [4330/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-09-07T06:36:16.8333234Z [4331/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-09-07T06:36:17.0786257Z [4332/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-09-07T06:36:17.1797428Z [4333/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-09-07T06:36:17.8547128Z [4334/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-09-07T06:36:18.1558112Z [4335/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-09-07T06:36:18.1779530Z [4336/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-09-07T06:36:18.2502245Z [4337/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-09-07T06:36:20.1711844Z [4338/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\nativert\python\Bindings.cpp.obj 2025-09-07T06:36:20.2498231Z [4339/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-09-07T06:36:21.0208594Z [4340/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-09-07T06:36:22.0469073Z [4341/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Event.cpp.obj 2025-09-07T06:36:22.1381853Z [4342/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudart.cpp.obj 2025-09-07T06:36:22.2782571Z [4343/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\python_comm.cpp.obj 2025-09-07T06:36:22.3512682Z [4344/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Module.cpp.obj 2025-09-07T06:36:22.4152855Z [4345/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Stream.cpp.obj 2025-09-07T06:36:23.2874288Z [4346/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\GdsFile.cpp.obj 2025-09-07T06:36:23.3202970Z [4347/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\nvtx.cpp.obj 2025-09-07T06:36:23.4260233Z [4348/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudnn.cpp.obj 2025-09-07T06:36:23.5422865Z [4349/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:23.5741616Z [4350/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:23.7923991Z [4351/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:23.8280986Z [4352/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:23.9129171Z [4353/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-09-07T06:36:23.9451282Z [4354/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-09-07T06:36:24.2600913Z [4355/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\MemPool.cpp.obj 2025-09-07T06:36:24.3942202Z [4356/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Graph.cpp.obj 2025-09-07T06:36:24.4301739Z [4357/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:24.4420652Z [4358/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:24.5030878Z [4359/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:24.5235857Z [4360/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:24.6018188Z [4361/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:24.6031920Z [4362/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:24.6492922Z [4363/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:24.6686298Z [4364/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:24.7452416Z [4365/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:24.7680884Z [4366/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:24.7910556Z [4367/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:24.8192764Z [4368/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:24.8855075Z [4369/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:24.9185661Z [4370/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:24.9753758Z [4371/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:24.9888413Z [4372/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:25.0772266Z [4373/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:25.0791287Z [4374/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.1224657Z [4375/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:25.1239114Z [4376/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.2219754Z [4377/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:25.2594883Z [4378/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.2660944Z [4379/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:25.3259964Z [4380/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:25.3709087Z [4381/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:25.4270814Z [4382/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:25.4564955Z [4383/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:25.4577569Z [4384/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.5113355Z [4385/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:25.5694888Z [4386/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:25.5948618Z [4387/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:25.6028616Z [4388/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.6627597Z [4389/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:25.7078331Z [4390/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.7292260Z [4391/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:25.7510167Z [4392/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:25.7988148Z [4393/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.8530276Z [4394/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:25.8757036Z [4395/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:25.9001138Z [4396/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:25.9400119Z [4397/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:25.9900669Z [4398/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:26.0141944Z [4399/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:26.0441399Z [4400/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:26.0771307Z [4401/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:26.1354064Z [4402/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:26.1535306Z [4403/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:26.1873377Z [4404/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\utils.cpp.obj 2025-09-07T06:36:26.2190130Z [4405/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:26.2253095Z [4406/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:26.2765415Z [4407/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:26.2909084Z [4408/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:26.3343674Z [4409/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:26.3750395Z [4410/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-09-07T06:36:26.3815378Z [4411/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-09-07T06:36:26.4180683Z [4412/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-09-07T06:36:26.4335270Z [4413/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-09-07T06:36:26.4514699Z [4414/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-09-07T06:36:26.4885371Z [4415/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-09-07T06:36:26.5395267Z [4416/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-09-07T06:36:26.5497256Z [4417/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-09-07T06:36:26.5887588Z [4418/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-09-07T06:36:26.6196874Z [4419/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-09-07T06:36:26.6218634Z [4420/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-09-07T06:36:26.6676449Z [4421/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-09-07T06:36:26.7016995Z [4422/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-09-07T06:36:26.7084991Z [4423/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-09-07T06:36:26.7349607Z [4424/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-09-07T06:36:26.7370110Z [4425/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-09-07T06:36:26.7853212Z [4426/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-09-07T06:36:26.8115040Z [4427/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-09-07T06:36:26.8172475Z [4428/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-09-07T06:36:26.8430109Z [4429/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-09-07T06:36:26.8446431Z [4430/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-09-07T06:36:26.8557632Z [4431/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-09-07T06:36:26.8814336Z [4432/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-09-07T06:36:26.8870588Z [4433/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-09-07T06:36:26.8885890Z [4434/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-09-07T06:36:26.9121607Z [4435/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-09-07T06:36:26.9665855Z [4436/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-09-07T06:36:26.9679772Z [4437/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-09-07T06:36:26.9935621Z [4438/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-09-07T06:36:26.9992927Z [4439/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-09-07T06:36:27.0043645Z [4440/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-09-07T06:36:27.0292124Z [4441/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-09-07T06:36:27.0705790Z [4442/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-09-07T06:36:27.0885352Z [4443/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-09-07T06:36:27.1068053Z [4444/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-09-07T06:36:27.1381633Z [4445/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-09-07T06:36:27.1395166Z [4446/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-09-07T06:36:27.1455069Z [4447/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-09-07T06:36:27.2067513Z [4448/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-09-07T06:36:27.2431113Z [4449/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-09-07T06:36:27.2521640Z [4450/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.2575363Z [4451/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x32-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.2587760Z [4452/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.2840816Z [4453/7565] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-09-07T06:36:27.3034087Z [4454/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-09-07T06:36:27.3358002Z [4455/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-09-07T06:36:27.3417335Z [4456/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-09-07T06:36:27.3827096Z [4457/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-09-07T06:36:27.3839461Z [4458/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-09-07T06:36:27.3897592Z [4459/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-09-07T06:36:27.4098711Z [4460/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-09-07T06:36:27.4115565Z [4461/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-09-07T06:36:27.4560505Z [4462/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-09-07T06:36:27.4672366Z [4463/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-09-07T06:36:27.4855206Z [4464/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-09-07T06:36:27.4867723Z [4465/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-09-07T06:36:27.4918390Z [4466/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-09-07T06:36:27.5880990Z [4467/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-09-07T06:36:27.6081080Z [4468/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:27.6137256Z [4469/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:27.6158628Z [4470/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:27.6171646Z [4471/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:27.6228591Z [4472/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:27.6488372Z [4473/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:27.6983830Z [4474/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:27.7253006Z [4475/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:27.7331824Z [4476/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x3-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.7346028Z [4477/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x2-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.7399558Z [4478/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-09-07T06:36:27.7466686Z [4479/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x3-gemm-goi-scalar-float-u4.c.obj 2025-09-07T06:36:27.7624115Z [4480/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.8315570Z [4481/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-09-07T06:36:27.8423294Z [4482/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-scalar-float-u4.c.obj 2025-09-07T06:36:27.8494637Z [4483/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.8546930Z [4484/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-scalar-float-u4.c.obj 2025-09-07T06:36:27.8675441Z [4485/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-scalar-int-u4.c.obj 2025-09-07T06:36:27.8746490Z [4486/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-09-07T06:36:27.8810890Z [4487/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-09-07T06:36:27.8990372Z [4488/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-09-07T06:36:27.9053871Z [4489/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-09-07T06:36:27.9148966Z [4490/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-09-07T06:36:27.9572318Z [4491/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-09-07T06:36:27.9719976Z [4492/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-09-07T06:36:27.9798485Z [4493/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-09-07T06:36:27.9813604Z [4494/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-09-07T06:36:28.0119255Z [4495/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-09-07T06:36:28.0174334Z [4496/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-09-07T06:36:28.0311895Z [4497/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-09-07T06:36:28.0655218Z [4498/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-09-07T06:36:28.0898448Z [4499/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-09-07T06:36:28.0910965Z [4500/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-09-07T06:36:28.0958473Z [4501/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-09-07T06:36:28.1140159Z [4502/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-09-07T06:36:28.1796918Z [4503/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-09-07T06:36:28.1845744Z [4504/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-09-07T06:36:28.1858053Z [4505/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-09-07T06:36:28.1980696Z [4506/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:28.2032811Z [4507/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:28.2047045Z [4508/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:28.2262727Z [4509/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:28.2906709Z [4510/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:28.2986061Z [4511/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:28.2998560Z [4512/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-09-07T06:36:28.3150725Z [4513/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-09-07T06:36:28.3163830Z [4514/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-09-07T06:36:28.3175440Z [4515/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-09-07T06:36:28.3372427Z [4516/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-09-07T06:36:28.4047854Z [4517/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-09-07T06:36:28.4095323Z [4518/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-09-07T06:36:28.4184457Z [4519/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-09-07T06:36:28.4200392Z [4520/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-09-07T06:36:28.4289102Z [4521/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-09-07T06:36:28.4302197Z [4522/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-09-07T06:36:28.4712971Z [4523/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-09-07T06:36:28.5295553Z [4524/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.5396855Z [4525/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-09-07T06:36:28.5481949Z [4526/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.5644011Z [4527/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.5657130Z [4528/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-09-07T06:36:28.5715813Z [4529/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.6127451Z [4530/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.6620616Z [4531/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.6727070Z [4532/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.6775563Z [4533/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.6914675Z [4534/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.6982592Z [4535/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.6999169Z [4536/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.7430691Z [4537/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.7984722Z [4538/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.8051173Z [4539/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.8065231Z [4540/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.8250219Z [4541/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.8330158Z [4542/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.8356036Z [4543/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.8704262Z [4544/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.9319781Z [4545/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-09-07T06:36:28.9669797Z [4546/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.9752006Z [4547/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-09-07T06:36:28.9763679Z [4548/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.9775488Z [4549/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.9797471Z [4550/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-09-07T06:36:28.9911151Z [4551/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-09-07T06:36:29.0543003Z [4552/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-09-07T06:36:29.0989596Z [4553/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc2.c.obj 2025-09-07T06:36:29.1040172Z [4554/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc3.c.obj 2025-09-07T06:36:29.1093012Z [4555/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc4.c.obj 2025-09-07T06:36:29.1152288Z [4556/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-1x4.c.obj 2025-09-07T06:36:29.1164979Z [4557/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-2x4.c.obj 2025-09-07T06:36:29.1256359Z [4558/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-3x4.c.obj 2025-09-07T06:36:29.1780762Z [4559/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-4x4.c.obj 2025-09-07T06:36:29.2347908Z [4560/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-6x4.c.obj 2025-09-07T06:36:29.2368175Z [4561/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-sse-5x4.c.obj 2025-09-07T06:36:29.2435540Z [4562/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc2.c.obj 2025-09-07T06:36:29.2450839Z [4563/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc4.c.obj 2025-09-07T06:36:29.2513914Z [4564/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4.c.obj 2025-09-07T06:36:29.2577531Z [4565/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4-acc2.c.obj 2025-09-07T06:36:29.3136715Z [4566/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4.c.obj 2025-09-07T06:36:29.3641270Z [4567/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-4x4.c.obj 2025-09-07T06:36:29.3696092Z [4568/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3s2p1-minmax-sse-3x4.c.obj 2025-09-07T06:36:29.4012227Z [4569/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc5.c.obj 2025-09-07T06:36:29.4025938Z [4570/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc3.c.obj 2025-09-07T06:36:29.4038233Z [4571/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc2.c.obj 2025-09-07T06:36:29.4051482Z [4572/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc4.c.obj 2025-09-07T06:36:29.4316922Z [4573/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-1x4.c.obj 2025-09-07T06:36:29.4777977Z [4574/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc2.c.obj 2025-09-07T06:36:29.5946790Z [4575/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc3.c.obj 2025-09-07T06:36:29.5967000Z [4576/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-4x4-acc2.c.obj 2025-09-07T06:36:29.6024271Z [4577/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-3x4-acc2.c.obj 2025-09-07T06:36:29.6036805Z [4578/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-2x4.c.obj 2025-09-07T06:36:29.6048324Z [4579/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-3x4.c.obj 2025-09-07T06:36:29.6164389Z [4580/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc2.c.obj 2025-09-07T06:36:29.6179148Z [4581/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5p2-minmax-sse-5x4.c.obj 2025-09-07T06:36:29.9354934Z [4582/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc3.c.obj 2025-09-07T06:36:29.9538378Z [4583/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc3.c.obj 2025-09-07T06:36:29.9611009Z [4584/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc4.c.obj 2025-09-07T06:36:29.9623823Z [4585/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc5.c.obj 2025-09-07T06:36:29.9635757Z [4586/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc2.c.obj 2025-09-07T06:36:29.9647922Z [4587/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4.c.obj 2025-09-07T06:36:29.9811463Z [4588/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4-acc2.c.obj 2025-09-07T06:36:30.1011013Z [4589/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4.c.obj 2025-09-07T06:36:30.1072069Z [4590/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.1084656Z [4591/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.1135005Z [4592/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.1146612Z [4593/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.1318223Z [4594/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.1372858Z [4595/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.2527327Z [4596/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.2545179Z [4597/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.2603878Z [4598/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.2661723Z [4599/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.2713833Z [4600/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-09-07T06:36:30.2726524Z [4601/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.2851609Z [4602/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.4311960Z [4603/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.4323346Z [4604/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.4365211Z [4605/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.4410854Z [4606/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.4481322Z [4607/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.4499632Z [4608/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.4512522Z [4609/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.5513617Z [4610/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.5576356Z [4611/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.5591935Z [4612/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.6444111Z [4613/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.6526008Z [4614/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.6546105Z [4615/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.6709090Z [4616/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-09-07T06:36:30.6769538Z [4617/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.6950188Z [4618/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.7019514Z [4619/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.7529612Z [4620/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-09-07T06:36:30.7820429Z [4621/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.7884657Z [4622/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.8109624Z [4623/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.8121879Z [4624/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.8220228Z [4625/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.8273812Z [4626/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.8871503Z [4627/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.9212048Z [4628/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.9225175Z [4629/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-09-07T06:36:30.9440545Z [4630/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-09-07T06:36:30.9497379Z [4631/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-09-07T06:36:30.9554784Z [4632/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-09-07T06:36:30.9624462Z [4633/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-09-07T06:36:31.0168375Z [4634/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-09-07T06:36:31.0344482Z [4635/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-09-07T06:36:31.0368158Z [4636/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-09-07T06:36:31.0581560Z [4637/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-09-07T06:36:31.0632066Z [4638/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-09-07T06:36:31.0735016Z [4639/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-09-07T06:36:31.0902403Z [4640/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-09-07T06:36:31.1449935Z [4641/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-09-07T06:36:31.1462915Z [4642/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-09-07T06:36:31.1513465Z [4643/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-09-07T06:36:31.1703367Z [4644/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-09-07T06:36:31.1768733Z [4645/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-09-07T06:36:31.1943472Z [4646/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-09-07T06:36:31.2101772Z [4647/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-09-07T06:36:31.2600346Z [4648/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-09-07T06:36:31.2655431Z [4649/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-09-07T06:36:31.2670712Z [4650/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-09-07T06:36:31.2831051Z [4651/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-09-07T06:36:31.2905841Z [4652/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-09-07T06:36:31.3024515Z [4653/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-09-07T06:36:31.3244579Z [4654/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-09-07T06:36:31.3706699Z [4655/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-09-07T06:36:31.3772988Z [4656/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-09-07T06:36:31.3993640Z [4657/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-09-07T06:36:31.4062585Z [4658/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-09-07T06:36:31.4167171Z [4659/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-09-07T06:36:31.4228691Z [4660/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-09-07T06:36:31.4420801Z [4661/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-09-07T06:36:31.4918468Z [4662/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-09-07T06:36:31.5023986Z [4663/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-09-07T06:36:31.5266377Z [4664/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-09-07T06:36:31.5280591Z [4665/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-09-07T06:36:31.5434411Z [4666/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-09-07T06:36:31.5517627Z [4667/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-09-07T06:36:31.5638624Z [4668/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-09-07T06:36:31.6134306Z [4669/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-09-07T06:36:31.6210038Z [4670/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-09-07T06:36:31.6705990Z [4671/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-09-07T06:36:31.6725679Z [4672/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-09-07T06:36:31.6744651Z [4673/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-09-07T06:36:31.6818742Z [4674/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-09-07T06:36:31.6832008Z [4675/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-09-07T06:36:31.7531677Z [4676/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-09-07T06:36:31.7547582Z [4677/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-09-07T06:36:31.7900081Z [4678/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-09-07T06:36:31.7913788Z [4679/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-09-07T06:36:31.8028087Z [4680/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-09-07T06:36:31.8054798Z [4681/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-09-07T06:36:31.8127193Z [4682/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-09-07T06:36:31.8697645Z [4683/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-09-07T06:36:31.8776804Z [4684/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-09-07T06:36:31.9182719Z [4685/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-09-07T06:36:31.9200284Z [4686/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-09-07T06:36:31.9331659Z [4687/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-09-07T06:36:31.9352926Z [4688/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-09-07T06:36:31.9414440Z [4689/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-09-07T06:36:31.9440656Z [4690/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-09-07T06:36:31.9931104Z [4691/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-09-07T06:36:32.0327001Z [4692/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-09-07T06:36:32.0339449Z [4693/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-09-07T06:36:32.0515802Z [4694/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-09-07T06:36:32.0580188Z [4695/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-09-07T06:36:32.0592684Z [4696/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-09-07T06:36:32.0612978Z [4697/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-09-07T06:36:32.1183988Z [4698/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-09-07T06:36:32.1466783Z [4699/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-09-07T06:36:32.1523920Z [4700/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-09-07T06:36:32.1630102Z [4701/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-09-07T06:36:32.1704571Z [4702/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-09-07T06:36:32.1758909Z [4703/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-09-07T06:36:32.1773165Z [4704/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-09-07T06:36:32.2353395Z [4705/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-09-07T06:36:32.2618193Z [4706/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-09-07T06:36:32.2697153Z [4707/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-09-07T06:36:32.2790752Z [4708/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-09-07T06:36:32.2802871Z [4709/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-09-07T06:36:32.2928096Z [4710/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-09-07T06:36:32.3048605Z [4711/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-09-07T06:36:32.3619579Z [4712/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-09-07T06:36:32.3817543Z [4713/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-09-07T06:36:32.3940011Z [4714/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-09-07T06:36:32.4071922Z [4715/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-09-07T06:36:32.4130800Z [4716/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-09-07T06:36:32.4193869Z [4717/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-09-07T06:36:32.4290667Z [4718/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-09-07T06:36:32.4814188Z [4719/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-09-07T06:36:32.5156822Z [4720/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-09-07T06:36:32.5177329Z [4721/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-09-07T06:36:32.5337914Z [4722/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-09-07T06:36:32.5412259Z [4723/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-09-07T06:36:32.5446904Z [4724/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-09-07T06:36:32.5731776Z [4725/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-09-07T06:36:32.5971024Z [4726/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-09-07T06:36:32.6371397Z [4727/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u4.c.obj 2025-09-07T06:36:32.6457510Z [4728/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-09-07T06:36:32.6580085Z [4729/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u12.c.obj 2025-09-07T06:36:32.6654615Z [4730/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-09-07T06:36:32.6784563Z [4731/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-lut64-p2-div-u16.c.obj 2025-09-07T06:36:32.6901096Z [4732/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-09-07T06:36:32.7261776Z [4733/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-09-07T06:36:32.7700262Z [4734/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-09-07T06:36:32.7714760Z [4735/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-09-07T06:36:32.8040126Z [4736/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:32.8124189Z [4737/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:32.8246458Z [4738/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:32.8588508Z [4739/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:32.8658344Z [4740/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:32.9062683Z [4741/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:32.9122675Z [4742/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:32.9361386Z [4743/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:32.9529074Z [4744/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:32.9679574Z [4745/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:33.0052943Z [4746/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.0136183Z [4747/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:33.0435754Z [4748/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.0588642Z [4749/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:33.0697955Z [4750/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.0987904Z [4751/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:33.1186600Z [4752/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.1441066Z [4753/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.1607178Z [4754/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.1746615Z [4755/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:33.1886258Z [4756/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.1940228Z [4757/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse2-ld64.c.obj 2025-09-07T06:36:33.2208220Z [4758/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.2467332Z [4759/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld128.c.obj 2025-09-07T06:36:33.2739319Z [4760/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.2895318Z [4761/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.3086965Z [4762/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.3220719Z [4763/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.3238046Z [4764/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.3593749Z [4765/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.3699984Z [4766/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.4044649Z [4767/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.4242850Z [4768/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.4362092Z [4769/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.4544066Z [4770/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.4631876Z [4771/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.4959824Z [4772/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.5024164Z [4773/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.5319405Z [4774/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.5628782Z [4775/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.5685983Z [4776/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.5790031Z [4777/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-09-07T06:36:33.5910847Z [4778/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.6173789Z [4779/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-09-07T06:36:33.6227852Z [4780/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-09-07T06:36:33.6628939Z [4781/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.6987671Z [4782/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.7020227Z [4783/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.7103245Z [4784/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.7163099Z [4785/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.7446433Z [4786/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.7582572Z [4787/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.7950562Z [4788/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.8281358Z [4789/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.8395968Z [4790/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.8459898Z [4791/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.8530326Z [4792/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.8671846Z [4793/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.8967695Z [4794/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.9234097Z [4795/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.9581835Z [4796/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.9684066Z [4797/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.obj 2025-09-07T06:36:33.9820569Z [4798/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:33.9961897Z [4799/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.0089170Z [4800/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.0462537Z [4801/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.0645880Z [4802/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.1073262Z [4803/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.1127904Z [4804/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.1263044Z [4805/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.1470607Z [4806/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.1529011Z [4807/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.1872652Z [4808/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.2164138Z [4809/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.2479608Z [4810/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.2562356Z [4811/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.2616619Z [4812/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.2951961Z [4813/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.3049288Z [4814/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.3300380Z [4815/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.3629665Z [4816/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.3898809Z [4817/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.3979063Z [4818/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.4036072Z [4819/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.4287371Z [4820/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.4370253Z [4821/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.4602445Z [4822/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.5012071Z [4823/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.5351906Z [4824/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.5364998Z [4825/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.5422763Z [4826/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.5730145Z [4827/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.5830004Z [4828/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.5952732Z [4829/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.6691585Z [4830/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.6706556Z [4831/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.6828723Z [4832/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.7012534Z [4833/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.7110648Z [4834/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.7126967Z [4835/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.7446631Z [4836/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.7986801Z [4837/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:34.8065924Z [4838/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:34.8083692Z [4839/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:34.8356666Z [4840/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:34.8451707Z [4841/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-09-07T06:36:34.8458678Z [4842/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-09-07T06:36:34.8701244Z [4843/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-09-07T06:36:34.9196264Z [4844/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-09-07T06:36:34.9261045Z [4845/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-09-07T06:36:34.9409110Z [4846/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-09-07T06:36:34.9648617Z [4847/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:34.9825586Z [4848/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.0110582Z [4849/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:35.0166925Z [4850/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.0590875Z [4851/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.0701928Z [4852/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.0761546Z [4853/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.1069850Z [4854/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.1294069Z [4855/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.1404379Z [4856/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-09-07T06:36:35.1532743Z [4857/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-09-07T06:36:35.1894860Z [4858/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-09-07T06:36:35.1912815Z [4859/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-09-07T06:36:35.2292956Z [4860/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.2516484Z [4861/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.2770232Z [4862/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.3091441Z [4863/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.3209910Z [4864/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.3469249Z [4865/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.3482994Z [4866/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.3721049Z [4867/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.3987070Z [4868/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.4462383Z [4869/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.5262840Z [4870/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.5279053Z [4871/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.5294050Z [4872/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.5308860Z [4873/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.5502394Z [4874/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.5796065Z [4875/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.5887180Z [4876/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.6942397Z [4877/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.6992741Z [4878/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.7149261Z [4879/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.7202837Z [4880/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.7217071Z [4881/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.7279152Z [4882/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.7427351Z [4883/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.8306577Z [4884/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.8476544Z [4885/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.9514968Z [4886/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.9527617Z [4887/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:35.9590735Z [4888/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.9603416Z [4889/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:35.9616009Z [4890/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:36.0444537Z [4891/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:36.0879073Z [4892/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:36.0921996Z [4893/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:36.0969850Z [4894/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:36.1029306Z [4895/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:36.1178558Z [4896/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:36.1372244Z [4897/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:36.1838478Z [4898/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-09-07T06:36:36.2225139Z [4899/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-09-07T06:36:36.2282853Z [4900/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-09-07T06:36:36.2334522Z [4901/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-09-07T06:36:36.2385722Z [4902/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-09-07T06:36:36.2551302Z [4903/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:36.3014832Z [4904/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:36.3211588Z [4905/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-09-07T06:36:36.3672959Z [4906/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-09-07T06:36:36.3741345Z [4907/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-09-07T06:36:36.3999341Z [4908/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-09-07T06:36:36.4086872Z [4909/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:36.4147087Z [4910/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u16.c.obj 2025-09-07T06:36:36.4335596Z [4911/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-09-07T06:36:36.4431620Z [4912/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-09-07T06:36:36.4824068Z [4913/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-09-07T06:36:36.4996856Z [4914/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-09-07T06:36:36.5170640Z [4915/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-09-07T06:36:36.5314323Z [4916/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-09-07T06:36:36.5510559Z [4917/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4-prfm.c.obj 2025-09-07T06:36:36.5630648Z [4918/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4-prfm.c.obj 2025-09-07T06:36:36.5885534Z [4919/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8-prfm.c.obj 2025-09-07T06:36:36.6173223Z [4920/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-09-07T06:36:36.6185487Z [4921/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4-prfm.c.obj 2025-09-07T06:36:36.6351530Z [4922/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-09-07T06:36:36.6551235Z [4923/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8-prfm.c.obj 2025-09-07T06:36:36.6873693Z [4924/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-09-07T06:36:36.7148128Z [4925/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4-prfm.c.obj 2025-09-07T06:36:36.7232363Z [4926/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-09-07T06:36:36.7364390Z [4927/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-09-07T06:36:36.7423367Z [4928/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8-prfm.c.obj 2025-09-07T06:36:36.7624949Z [4929/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-09-07T06:36:36.7696012Z [4930/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4-prfm.c.obj 2025-09-07T06:36:36.8054279Z [4931/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8-prfm.c.obj 2025-09-07T06:36:36.8297890Z [4932/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-09-07T06:36:36.8310196Z [4933/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-09-07T06:36:36.8488331Z [4934/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-09-07T06:36:36.8543761Z [4935/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-09-07T06:36:36.8848651Z [4936/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-09-07T06:36:36.8862738Z [4937/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-09-07T06:36:36.9064383Z [4938/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-09-07T06:36:36.9581835Z [4939/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-09-07T06:36:36.9764151Z [4940/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-09-07T06:36:36.9829300Z [4941/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-09-07T06:36:36.9885655Z [4942/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-09-07T06:36:36.9902552Z [4943/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-09-07T06:36:37.0082004Z [4944/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc2.c.obj 2025-09-07T06:36:37.0265675Z [4945/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc3.c.obj 2025-09-07T06:36:37.0845124Z [4946/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc4.c.obj 2025-09-07T06:36:37.1037861Z [4947/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4.c.obj 2025-09-07T06:36:37.1132493Z [4948/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4.c.obj 2025-09-07T06:36:37.1284151Z [4949/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-3x4.c.obj 2025-09-07T06:36:37.1298254Z [4950/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-4x4.c.obj 2025-09-07T06:36:37.1356445Z [4951/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-5x4.c.obj 2025-09-07T06:36:37.1690193Z [4952/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv2d-chw\gen\f32-dwconv2d-chw-3x3p1-minmax-ssse3-6x4.c.obj 2025-09-07T06:36:37.2289885Z [4953/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd-prfm.c.obj 2025-09-07T06:36:37.2465635Z [4954/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-ssse3-madd-prfm.c.obj 2025-09-07T06:36:37.2597097Z [4955/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-ssse3-madd.c.obj 2025-09-07T06:36:37.2725986Z [4956/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-ssse3-madd-prfm.c.obj 2025-09-07T06:36:37.2778052Z [4957/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-ssse3-madd.c.obj 2025-09-07T06:36:37.2841094Z [4958/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd-prfm.c.obj 2025-09-07T06:36:37.2965224Z [4959/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-09-07T06:36:37.3425990Z [4960/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-09-07T06:36:37.3543939Z [4961/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-09-07T06:36:37.3783557Z [4962/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-09-07T06:36:37.3927277Z [4963/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-09-07T06:36:37.3980823Z [4964/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-09-07T06:36:37.4036172Z [4965/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-09-07T06:36:37.4098581Z [4966/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-09-07T06:36:37.4253197Z [4967/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-09-07T06:36:37.4490453Z [4968/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-09-07T06:36:37.4640804Z [4969/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-09-07T06:36:37.5093312Z [4970/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-09-07T06:36:37.5109873Z [4971/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-09-07T06:36:37.5205542Z [4972/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-09-07T06:36:37.5217684Z [4973/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-09-07T06:36:37.5421871Z [4974/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-09-07T06:36:37.5588693Z [4975/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-09-07T06:36:37.5778514Z [4976/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-09-07T06:36:37.6241730Z [4977/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-09-07T06:36:37.6297598Z [4978/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-09-07T06:36:37.6396990Z [4979/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-09-07T06:36:37.6699695Z [4980/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-3x8-minmax-sse41-dup.c.obj 2025-09-07T06:36:37.6902001Z [4981/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x8-minmax-sse41-dup.c.obj 2025-09-07T06:36:37.6967346Z [4982/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x8-minmax-sse41-dup.c.obj 2025-09-07T06:36:37.7252090Z [4983/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-sse41-load1.c.obj 2025-09-07T06:36:37.7744415Z [4984/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8-minmax-sse41-dup.c.obj 2025-09-07T06:36:37.7760360Z [4985/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-09-07T06:36:37.7814104Z [4986/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8-minmax-sse41-load1.c.obj 2025-09-07T06:36:37.8089625Z [4987/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-09-07T06:36:37.8279870Z [4988/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-09-07T06:36:37.8443236Z [4989/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-sse41-load1.c.obj 2025-09-07T06:36:37.8655075Z [4990/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-09-07T06:36:37.9169632Z [4991/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-sse41-load1.c.obj 2025-09-07T06:36:37.9227339Z [4992/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-sse41-dup.c.obj 2025-09-07T06:36:37.9285640Z [4993/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-09-07T06:36:37.9562964Z [4994/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-09-07T06:36:37.9744454Z [4995/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-sse41-dup.c.obj 2025-09-07T06:36:37.9814327Z [4996/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-sse41-load1.c.obj 2025-09-07T06:36:38.0027656Z [4997/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-09-07T06:36:38.0394491Z [4998/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-09-07T06:36:38.0406941Z [4999/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-09-07T06:36:38.0686246Z [5000/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-09-07T06:36:38.0770055Z [5001/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-09-07T06:36:38.0988008Z [5002/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-09-07T06:36:38.1042172Z [5003/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-09-07T06:36:38.1156198Z [5004/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-09-07T06:36:38.1674101Z [5005/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-09-07T06:36:38.1692655Z [5006/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-09-07T06:36:38.1893299Z [5007/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-09-07T06:36:38.2095843Z [5008/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-09-07T06:36:38.2162295Z [5009/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-09-07T06:36:38.2220693Z [5010/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-09-07T06:36:38.2353223Z [5011/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-09-07T06:36:38.2943357Z [5012/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-09-07T06:36:38.2996582Z [5013/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-09-07T06:36:38.3099355Z [5014/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-09-07T06:36:38.3275507Z [5015/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-09-07T06:36:38.3421050Z [5016/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-09-07T06:36:38.3502983Z [5017/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-09-07T06:36:38.3520000Z [5018/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-09-07T06:36:38.4200717Z [5019/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-09-07T06:36:38.4268780Z [5020/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u4.c.obj 2025-09-07T06:36:38.4345813Z [5021/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u12.c.obj 2025-09-07T06:36:38.4523879Z [5022/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-lut64-p2-div-u16.c.obj 2025-09-07T06:36:38.4668278Z [5023/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-09-07T06:36:38.4808965Z [5024/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-09-07T06:36:38.4898451Z [5025/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-09-07T06:36:38.5471216Z [5026/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-09-07T06:36:38.5666270Z [5027/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.5719273Z [5028/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.5905514Z [5029/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:38.6440540Z [5030/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.6453218Z [5031/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:38.6465442Z [5032/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.6915273Z [5033/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.7043741Z [5034/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:38.7060343Z [5035/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-madd-prfm.c.obj 2025-09-07T06:36:38.7687196Z [5036/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-sse41-madd.c.obj 2025-09-07T06:36:38.7906683Z [5037/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.7966741Z [5038/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:38.8234787Z [5039/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-madd-prfm.c.obj 2025-09-07T06:36:38.8474551Z [5040/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-sse41-madd.c.obj 2025-09-07T06:36:38.8490299Z [5041/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.8544709Z [5042/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:38.9166149Z [5043/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-madd-prfm.c.obj 2025-09-07T06:36:38.9355954Z [5044/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-sse41-madd.c.obj 2025-09-07T06:36:38.9549099Z [5045/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:38.9709759Z [5046/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:38.9957738Z [5047/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.0026500Z [5048/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-madd.c.obj 2025-09-07T06:36:39.0063001Z [5049/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-sse41-madd-prfm.c.obj 2025-09-07T06:36:39.0509885Z [5050/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:39.0761208Z [5051/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.0926538Z [5052/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:39.1116118Z [5053/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.1343217Z [5054/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:39.1403219Z [5055/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.1458249Z [5056/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.1822777Z [5057/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.2052734Z [5058/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse41-ld64.c.obj 2025-09-07T06:36:39.2186298Z [5059/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.2350265Z [5060/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld128.c.obj 2025-09-07T06:36:39.2651015Z [5061/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.2710242Z [5062/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.2726170Z [5063/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.3076081Z [5064/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.3366929Z [5065/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.3689294Z [5066/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.3744343Z [5067/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.3923146Z [5068/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.3937333Z [5069/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.4032987Z [5070/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.4421139Z [5071/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.4643317Z [5072/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.5027567Z [5073/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.5129593Z [5074/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.5199026Z [5075/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.5276386Z [5076/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.5298062Z [5077/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.5778671Z [5078/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.5976550Z [5079/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.6312284Z [5080/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.6423920Z [5081/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.6485268Z [5082/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.6590275Z [5083/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.6606237Z [5084/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.7134794Z [5085/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.7285006Z [5086/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.7697723Z [5087/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.7710484Z [5088/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-09-07T06:36:39.7775442Z [5089/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-09-07T06:36:39.7795137Z [5090/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-09-07T06:36:39.7807949Z [5091/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.8434002Z [5092/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.8523494Z [5093/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.8955802Z [5094/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.9361178Z [5095/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.9374159Z [5096/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:39.9385498Z [5097/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:39.9398123Z [5098/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:39.9875728Z [5099/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.0055087Z [5100/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:40.0284099Z [5101/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:40.0674056Z [5102/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.0737112Z [5103/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:40.0754049Z [5104/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.0847584Z [5105/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:40.1172808Z [5106/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:40.1593297Z [5107/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:40.1651822Z [5108/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.1974741Z [5109/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:40.2037075Z [5110/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.2098444Z [5111/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:40.2185170Z [5112/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.2424787Z [5113/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:40.2945117Z [5114/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.3009572Z [5115/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:40.3336303Z [5116/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:40.3398215Z [5117/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:40.3454288Z [5118/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.obj 2025-09-07T06:36:40.3469560Z [5119/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:40.3822642Z [5120/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.4388584Z [5121/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.4451087Z [5122/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.4754122Z [5123/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.4803389Z [5124/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.4860204Z [5125/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.4974997Z [5126/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.5254464Z [5127/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.5827372Z [5128/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.5840223Z [5129/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.6132024Z [5130/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.6144791Z [5131/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.6192133Z [5132/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.7523238Z [5133/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.8038052Z [5134/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.8315522Z [5135/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.8331099Z [5136/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.8343266Z [5137/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.8393933Z [5138/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.8712577Z [5139/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.8771249Z [5140/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.9381119Z [5141/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.9593690Z [5142/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.9661980Z [5143/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:40.9681822Z [5144/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.9737780Z [5145/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:40.9991897Z [5146/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:41.0008330Z [5147/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.0790168Z [5148/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.0951387Z [5149/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:41.0970031Z [5150/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.1033655Z [5151/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:41.1050547Z [5152/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.2162767Z [5153/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.2176259Z [5154/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:41.2987991Z [5155/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:41.3001216Z [5156/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.3013291Z [5157/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.3072035Z [5158/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:41.3087333Z [5159/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:41.5300810Z [5160/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-09-07T06:36:41.5312606Z [5161/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-09-07T06:36:41.5362513Z [5162/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-09-07T06:36:41.5414014Z [5163/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-09-07T06:36:41.5426738Z [5164/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:36:41.5441989Z [5165/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-09-07T06:36:41.5598414Z [5166/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-09-07T06:36:41.6623200Z [5167/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:36:41.6636706Z [5168/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-09-07T06:36:41.6702036Z [5169/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-09-07T06:36:41.6730657Z [5170/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-09-07T06:36:41.6788315Z [5171/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-09-07T06:36:41.6802845Z [5172/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-09-07T06:36:41.6863153Z [5173/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-09-07T06:36:41.8631767Z [5174/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-09-07T06:36:41.8716902Z [5175/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-09-07T06:36:41.8774190Z [5176/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-09-07T06:36:41.9442195Z [5177/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-09-07T06:36:41.9456438Z [5178/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-09-07T06:36:41.9469081Z [5179/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-09-07T06:36:41.9536809Z [5180/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:36:42.0501274Z [5181/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:36:42.0701439Z [5182/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.0750247Z [5183/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.0803167Z [5184/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.1798606Z [5185/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.1866161Z [5186/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.1882478Z [5187/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.2816976Z [5188/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.2880577Z [5189/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.2900402Z [5190/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.3058045Z [5191/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.3422854Z [5192/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.3440210Z [5193/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.3786973Z [5194/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.4028082Z [5195/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.4185880Z [5196/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.4244565Z [5197/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.4385805Z [5198/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-09-07T06:36:42.4584748Z [5199/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-09-07T06:36:42.4850328Z [5200/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-09-07T06:36:42.4944086Z [5201/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-09-07T06:36:42.5176679Z [5202/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-09-07T06:36:42.5908306Z [5203/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.5921811Z [5204/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.5975006Z [5205/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.6286961Z [5206/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.6302487Z [5207/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.6354206Z [5208/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.6575475Z [5209/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.7356251Z [5210/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.7424602Z [5211/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.7439282Z [5212/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.7696346Z [5213/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.7715236Z [5214/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.7775107Z [5215/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.7956678Z [5216/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.8786791Z [5217/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.8862195Z [5218/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.8922535Z [5219/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.9148782Z [5220/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.9268205Z [5221/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.9281612Z [5222/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:42.9384053Z [5223/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:42.9964663Z [5224/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:43.0048303Z [5225/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:43.0108495Z [5226/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:43.5341179Z [5227/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.0418884Z [5228/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.1379030Z [5229/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:44.1391986Z [5230/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.1453815Z [5231/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:44.1470210Z [5232/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:44.1486073Z [5233/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:44.1501058Z [5234/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.1733060Z [5235/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.3182386Z [5236/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.3233548Z [5237/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:44.3252112Z [5238/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.3394865Z [5239/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.3411362Z [5240/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:44.3465039Z [5241/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-09-07T06:36:44.3485627Z [5242/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-09-07T06:36:44.4577983Z [5243/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:36:44.4591873Z [5244/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-09-07T06:36:44.4650288Z [5245/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-09-07T06:36:44.4671132Z [5246/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-09-07T06:36:44.4733511Z [5247/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-09-07T06:36:44.4797416Z [5248/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-09-07T06:36:44.4814442Z [5249/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-09-07T06:36:44.5597011Z [5250/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-09-07T06:36:44.5687239Z [5251/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-09-07T06:36:44.8678165Z [5252/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:36:44.8732453Z [5253/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-09-07T06:36:44.8745260Z [5254/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-09-07T06:36:44.8850407Z [5255/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-09-07T06:36:44.8865647Z [5256/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u8.c.obj 2025-09-07T06:36:44.8965978Z [5257/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-09-07T06:36:44.9422395Z [5258/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-09-07T06:36:44.9802955Z [5259/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-09-07T06:36:44.9877614Z [5260/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-09-07T06:36:44.9937568Z [5261/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-09-07T06:36:45.0010804Z [5262/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-09-07T06:36:45.0025812Z [5263/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-09-07T06:36:45.0174799Z [5264/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-09-07T06:36:45.0679572Z [5265/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.1074588Z [5266/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-09-07T06:36:45.1149266Z [5267/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.1287626Z [5268/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.1353925Z [5269/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.1424029Z [5270/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-09-07T06:36:45.1522195Z [5271/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.1986737Z [5272/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-09-07T06:36:45.2431004Z [5273/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.2490998Z [5274/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-09-07T06:36:45.2606201Z [5275/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.2625318Z [5276/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.2682513Z [5277/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-09-07T06:36:45.2783935Z [5278/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.3278904Z [5279/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-09-07T06:36:45.3784257Z [5280/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.3848619Z [5281/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-09-07T06:36:45.3906559Z [5282/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.3970069Z [5283/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-09-07T06:36:45.4022886Z [5284/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.4081562Z [5285/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.4567491Z [5286/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-09-07T06:36:45.5045757Z [5287/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-09-07T06:36:45.5106344Z [5288/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-09-07T06:36:45.5120681Z [5289/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-09-07T06:36:45.5174980Z [5290/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-09-07T06:36:45.5517171Z [5291/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.5529536Z [5292/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.6095158Z [5293/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.6549272Z [5294/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.6674236Z [5295/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.6812655Z [5296/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.6828545Z [5297/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.6878143Z [5298/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.6934026Z [5299/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.7836004Z [5300/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.7918004Z [5301/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.8300365Z [5302/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.8325130Z [5303/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.8339591Z [5304/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.8354261Z [5305/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.8470050Z [5306/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.9475226Z [5307/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.9589029Z [5308/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.9638030Z [5309/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.9727898Z [5310/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.9740510Z [5311/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.9831755Z [5312/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:45.9846561Z [5313/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.0782503Z [5314/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.0904648Z [5315/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.0965191Z [5316/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.0980545Z [5317/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-09-07T06:36:46.1238365Z [5318/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.1322419Z [5319/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.1336122Z [5320/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.2222695Z [5321/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.2352960Z [5322/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.2402682Z [5323/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.2618429Z [5324/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.2674212Z [5325/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.2725770Z [5326/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.2801680Z [5327/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.3623055Z [5328/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-09-07T06:36:46.3681967Z [5329/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.3846458Z [5330/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-09-07T06:36:46.3898575Z [5331/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx-broadcast.c.obj 2025-09-07T06:36:46.4073235Z [5332/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-09-07T06:36:46.4096188Z [5333/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-09-07T06:36:46.4252490Z [5334/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-09-07T06:36:46.4761649Z [5335/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-09-07T06:36:46.5265871Z [5336/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-09-07T06:36:46.5448210Z [5337/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-09-07T06:36:46.5617769Z [5338/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-09-07T06:36:46.5824680Z [5339/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-09-07T06:36:46.5881281Z [5340/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-09-07T06:36:46.6024283Z [5341/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-09-07T06:36:46.6323030Z [5342/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-09-07T06:36:46.6509930Z [5343/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-09-07T06:36:46.6529904Z [5344/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-09-07T06:36:46.6720189Z [5345/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-09-07T06:36:46.6924920Z [5346/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-09-07T06:36:46.6978366Z [5347/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-09-07T06:36:46.7113984Z [5348/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-09-07T06:36:46.7517435Z [5349/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-09-07T06:36:46.7644717Z [5350/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-09-07T06:36:46.7672217Z [5351/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-09-07T06:36:46.7982756Z [5352/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-09-07T06:36:46.8055208Z [5353/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-09-07T06:36:46.8160321Z [5354/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-09-07T06:36:46.8303405Z [5355/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-09-07T06:36:46.8741111Z [5356/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-09-07T06:36:46.8883854Z [5357/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-09-07T06:36:46.8945801Z [5358/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-09-07T06:36:46.9159631Z [5359/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-09-07T06:36:46.9225402Z [5360/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-09-07T06:36:46.9414532Z [5361/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-09-07T06:36:46.9536575Z [5362/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-09-07T06:36:46.9966181Z [5363/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-09-07T06:36:47.0145414Z [5364/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-09-07T06:36:47.0220761Z [5365/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-09-07T06:36:47.0453710Z [5366/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-09-07T06:36:47.0470641Z [5367/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-09-07T06:36:47.0851262Z [5368/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-09-07T06:36:47.0919515Z [5369/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-09-07T06:36:47.1112513Z [5370/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-09-07T06:36:47.1285053Z [5371/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-09-07T06:36:47.1413381Z [5372/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-09-07T06:36:47.1674559Z [5373/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-09-07T06:36:47.1688378Z [5374/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-09-07T06:36:47.2040709Z [5375/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u8.c.obj 2025-09-07T06:36:47.2145661Z [5376/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u16.c.obj 2025-09-07T06:36:47.2432846Z [5377/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut4-p4-perm-u24.c.obj 2025-09-07T06:36:47.2617078Z [5378/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-09-07T06:36:47.2639638Z [5379/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-09-07T06:36:47.2846590Z [5380/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-09-07T06:36:47.2958737Z [5381/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-09-07T06:36:47.3289983Z [5382/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-09-07T06:36:47.3580350Z [5383/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-09-07T06:36:47.3648274Z [5384/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-09-07T06:36:47.3854727Z [5385/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-09-07T06:36:47.3914111Z [5386/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-09-07T06:36:47.4083808Z [5387/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-09-07T06:36:47.4183022Z [5388/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-09-07T06:36:47.4586707Z [5389/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-09-07T06:36:47.4845302Z [5390/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-09-07T06:36:47.4862183Z [5391/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-09-07T06:36:47.5102129Z [5392/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-09-07T06:36:47.5196716Z [5393/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-09-07T06:36:47.5314691Z [5394/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-09-07T06:36:47.5421758Z [5395/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-09-07T06:36:47.5716042Z [5396/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-09-07T06:36:47.6151678Z [5397/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-09-07T06:36:47.6167574Z [5398/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-09-07T06:36:47.6403137Z [5399/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-09-07T06:36:47.6450068Z [5400/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-09-07T06:36:47.6651560Z [5401/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-09-07T06:36:47.6706300Z [5402/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-09-07T06:36:47.6919901Z [5403/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-09-07T06:36:47.7345136Z [5404/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-09-07T06:36:47.7430630Z [5405/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-09-07T06:36:47.7563386Z [5406/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-09-07T06:36:47.7624935Z [5407/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-09-07T06:36:47.7957410Z [5408/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-09-07T06:36:47.8106663Z [5409/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:47.8303166Z [5410/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:47.8791266Z [5411/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:47.8880969Z [5412/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:47.8996725Z [5413/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:47.9057179Z [5414/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:47.9350734Z [5415/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:47.9614934Z [5416/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:47.9718509Z [5417/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.0282762Z [5418/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.0343482Z [5419/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.0472902Z [5420/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.0527756Z [5421/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.0872913Z [5422/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.1107643Z [5423/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.1162799Z [5424/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.1924292Z [5425/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.1982364Z [5426/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.1995323Z [5427/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.2008359Z [5428/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.2223865Z [5429/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.2451833Z [5430/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.2511569Z [5431/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.3253757Z [5432/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.3314961Z [5433/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.3330330Z [5434/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.3386308Z [5435/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.3660959Z [5436/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.3714185Z [5437/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-avx-ld128.c.obj 2025-09-07T06:36:48.3867565Z [5438/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x4c8-minmax-avx-ld64.c.obj 2025-09-07T06:36:48.4630890Z [5439/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.4676555Z [5440/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.4774181Z [5441/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.4891275Z [5442/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.4954631Z [5443/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.5121744Z [5444/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.5185656Z [5445/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:36:48.6027103Z [5446/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:48.6094210Z [5447/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.6268186Z [5448/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.6322037Z [5449/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:48.6441598Z [5450/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:48.6494411Z [5451/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:36:48.6580172Z [5452/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.7609076Z [5453/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-09-07T06:36:48.7728503Z [5454/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-09-07T06:36:48.7744952Z [5455/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:48.7798147Z [5456/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-09-07T06:36:48.7850899Z [5457/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.7959856Z [5458/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.8033204Z [5459/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.9249480Z [5460/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.9352918Z [5461/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:36:48.9413629Z [5462/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.9425453Z [5463/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.9437028Z [5464/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:48.9660186Z [5465/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:48.9717226Z [5466/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:49.0659183Z [5467/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:49.0829954Z [5468/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.obj 2025-09-07T06:36:49.0842912Z [5469/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:49.0856809Z [5470/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:49.0912756Z [5471/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:49.1051328Z [5472/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:49.1104872Z [5473/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:49.2154238Z [5474/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.2296233Z [5475/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.2350496Z [5476/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.2403201Z [5477/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.2416973Z [5478/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.2574868Z [5479/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.2645439Z [5480/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.3725292Z [5481/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.3874301Z [5482/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.3926856Z [5483/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.3939295Z [5484/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.3994100Z [5485/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.4079335Z [5486/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.4182972Z [5487/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.5531448Z [5488/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.5888978Z [5489/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.5901994Z [5490/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.5913417Z [5491/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.6215433Z [5492/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.6227036Z [5493/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.6277758Z [5494/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.7156043Z [5495/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.7274701Z [5496/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.7350704Z [5497/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.7693819Z [5498/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.7706682Z [5499/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.7763000Z [5500/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.7821361Z [5501/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.8705652Z [5502/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.8810381Z [5503/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.8869405Z [5504/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.9143974Z [5505/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.9207977Z [5506/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:49.9220754Z [5507/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:49.9273396Z [5508/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:50.0083540Z [5509/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:50.0144550Z [5510/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:50.0271313Z [5511/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:50.0814426Z [5512/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:50.1035947Z [5513/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:50.1054299Z [5514/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-09-07T06:36:50.1072435Z [5515/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:50.1329989Z [5516/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-09-07T06:36:50.1669893Z [5517/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-09-07T06:36:50.1683766Z [5518/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-09-07T06:36:50.2298878Z [5519/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-09-07T06:36:50.2398218Z [5520/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-09-07T06:36:50.2415266Z [5521/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-09-07T06:36:50.2433145Z [5522/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:50.2921752Z [5523/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-09-07T06:36:50.3149957Z [5524/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-09-07T06:36:50.3168240Z [5525/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-09-07T06:36:50.3717612Z [5526/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-09-07T06:36:50.3777235Z [5527/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-09-07T06:36:50.3791902Z [5528/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-09-07T06:36:50.3903578Z [5529/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-09-07T06:36:50.4434404Z [5530/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:50.4497309Z [5531/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-09-07T06:36:50.4512728Z [5532/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-09-07T06:36:50.5018832Z [5533/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:50.5179549Z [5534/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.5535274Z [5535/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.5548776Z [5536/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.5964154Z [5537/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.6020771Z [5538/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.6071828Z [5539/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.6330219Z [5540/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:50.6573149Z [5541/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.6935514Z [5542/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.6959441Z [5543/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-09-07T06:36:50.7250415Z [5544/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-09-07T06:36:50.7329460Z [5545/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.7343135Z [5546/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-09-07T06:36:50.7508767Z [5547/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-09-07T06:36:50.7681164Z [5548/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-09-07T06:36:50.8378326Z [5549/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:50.8590438Z [5550/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:50.8734064Z [5551/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:50.8786772Z [5552/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:50.8997989Z [5553/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:50.9073415Z [5554/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:50.9122473Z [5555/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:50.9748550Z [5556/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.0016999Z [5557/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.0436144Z [5558/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.0542389Z [5559/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.0621377Z [5560/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.0826052Z [5561/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.0976198Z [5562/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.1029160Z [5563/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.1285608Z [5564/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.1812307Z [5565/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.1912383Z [5566/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.2170427Z [5567/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.2740759Z [5568/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.2799459Z [5569/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.3112093Z [5570/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.3200332Z [5571/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.3212935Z [5572/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.3224949Z [5573/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.3700971Z [5574/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.4391571Z [5575/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.4438319Z [5576/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.4505270Z [5577/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.4644489Z [5578/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.4751788Z [5579/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.4773204Z [5580/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.5027788Z [5581/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.5944066Z [5582/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.6001541Z [5583/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.6013653Z [5584/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.6081969Z [5585/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.6292116Z [5586/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.6399021Z [5587/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-09-07T06:36:51.6454840Z [5588/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-09-07T06:36:51.7189950Z [5589/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:51.7262072Z [5590/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-09-07T06:36:51.7285227Z [5591/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-09-07T06:36:51.7352475Z [5592/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:51.7578946Z [5593/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-09-07T06:36:51.7641850Z [5594/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-09-07T06:36:51.7712833Z [5595/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-09-07T06:36:51.8359110Z [5596/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-09-07T06:36:51.8488304Z [5597/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-09-07T06:36:51.8543659Z [5598/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-09-07T06:36:51.8595272Z [5599/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-09-07T06:36:51.8610191Z [5600/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:51.8620666Z [5601/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-09-07T06:36:51.8836777Z [5602/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-avx-mul16-ld64-u8.c.obj 2025-09-07T06:36:51.9290793Z [5603/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-09-07T06:36:51.9675115Z [5604/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1-prfm.c.obj 2025-09-07T06:36:51.9689623Z [5605/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-09-07T06:36:51.9748127Z [5606/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8-prfm.c.obj 2025-09-07T06:36:51.9759892Z [5607/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-09-07T06:36:51.9807786Z [5608/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4-prfm.c.obj 2025-09-07T06:36:51.9981479Z [5609/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-09-07T06:36:52.0386722Z [5610/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4-prfm.c.obj 2025-09-07T06:36:52.0854243Z [5611/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1-prfm.c.obj 2025-09-07T06:36:52.0872837Z [5612/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-09-07T06:36:52.0937784Z [5613/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8-prfm.c.obj 2025-09-07T06:36:52.0953405Z [5614/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4-prfm.c.obj 2025-09-07T06:36:52.0968702Z [5615/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-09-07T06:36:52.1082860Z [5616/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4-prfm.c.obj 2025-09-07T06:36:52.1486989Z [5617/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1-prfm.c.obj 2025-09-07T06:36:52.2003287Z [5618/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-09-07T06:36:52.2041977Z [5619/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-09-07T06:36:52.2099552Z [5620/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-09-07T06:36:52.2112576Z [5621/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-09-07T06:36:52.2125883Z [5622/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8-prfm.c.obj 2025-09-07T06:36:52.2184700Z [5623/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-09-07T06:36:52.2511373Z [5624/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-09-07T06:36:52.3103320Z [5625/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-09-07T06:36:52.3152589Z [5626/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-09-07T06:36:52.3213064Z [5627/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-09-07T06:36:52.3229228Z [5628/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-09-07T06:36:52.3279927Z [5629/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-09-07T06:36:52.3357137Z [5630/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-09-07T06:36:52.3625196Z [5631/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-09-07T06:36:52.4217584Z [5632/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-09-07T06:36:52.4341201Z [5633/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-09-07T06:36:52.4354226Z [5634/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-09-07T06:36:52.4531568Z [5635/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-09-07T06:36:52.4592291Z [5636/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-09-07T06:36:52.4605762Z [5637/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-09-07T06:36:52.4870166Z [5638/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-09-07T06:36:52.5496612Z [5639/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-09-07T06:36:52.5556222Z [5640/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-09-07T06:36:52.5614851Z [5641/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-09-07T06:36:52.5756295Z [5642/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-09-07T06:36:52.5819023Z [5643/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-09-07T06:36:52.5910343Z [5644/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-09-07T06:36:52.6017990Z [5645/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-09-07T06:36:52.6720003Z [5646/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-09-07T06:36:52.6835659Z [5647/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-09-07T06:36:52.7107818Z [5648/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-09-07T06:36:52.7168610Z [5649/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-09-07T06:36:52.7182583Z [5650/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-09-07T06:36:52.7245155Z [5651/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-09-07T06:36:52.7320194Z [5652/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-09-07T06:36:52.8113744Z [5653/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-09-07T06:36:52.8244848Z [5654/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-09-07T06:36:52.8301562Z [5655/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-09-07T06:36:52.8466093Z [5656/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-09-07T06:36:53.1006972Z [5657/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-09-07T06:36:53.1021067Z [5658/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-09-07T06:36:53.1034886Z [5659/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-09-07T06:36:53.1778547Z [5660/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-09-07T06:36:53.1847997Z [5661/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-09-07T06:36:53.1863290Z [5662/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-09-07T06:36:53.2218744Z [5663/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-09-07T06:36:53.2343464Z [5664/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-09-07T06:36:53.2416950Z [5665/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-09-07T06:36:53.2474732Z [5666/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-09-07T06:36:53.3056721Z [5667/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-09-07T06:36:53.3075735Z [5668/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-09-07T06:36:53.3138357Z [5669/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-09-07T06:36:53.3491497Z [5670/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-09-07T06:36:53.3596164Z [5671/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-09-07T06:36:53.3658749Z [5672/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-09-07T06:36:53.3718633Z [5673/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-09-07T06:36:53.4277268Z [5674/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-09-07T06:36:53.4340046Z [5675/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-09-07T06:36:53.4397117Z [5676/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-09-07T06:36:53.4832864Z [5677/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-09-07T06:36:53.4954438Z [5678/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-09-07T06:36:53.5021939Z [5679/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-09-07T06:36:53.5041209Z [5680/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-09-07T06:36:53.5548639Z [5681/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-09-07T06:36:53.5563345Z [5682/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-09-07T06:36:53.5628559Z [5683/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-09-07T06:36:53.6107093Z [5684/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.6207635Z [5685/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-09-07T06:36:53.6273305Z [5686/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.6329182Z [5687/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.6822921Z [5688/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.6885590Z [5689/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-09-07T06:36:53.6898682Z [5690/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-09-07T06:36:53.7358234Z [5691/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.7464955Z [5692/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.7524582Z [5693/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-09-07T06:36:53.7609012Z [5694/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.8174856Z [5695/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:53.8195794Z [5696/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.8212315Z [5697/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:53.8706916Z [5698/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.8762620Z [5699/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:53.8854736Z [5700/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:53.8872513Z [5701/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.9473492Z [5702/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:53.9491106Z [5703/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:53.9583361Z [5704/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.0086111Z [5705/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.0155840Z [5706/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.0216679Z [5707/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.0232613Z [5708/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.0934631Z [5709/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.1000228Z [5710/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.1013090Z [5711/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.1526772Z [5712/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-09-07T06:36:54.1592023Z [5713/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.1654448Z [5714/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.1672188Z [5715/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.2255075Z [5716/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.2268475Z [5717/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-09-07T06:36:54.2328377Z [5718/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-09-07T06:36:54.2715369Z [5719/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-09-07T06:36:54.2903173Z [5720/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.2975311Z [5721/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-09-07T06:36:54.3035368Z [5722/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-09-07T06:36:54.3472690Z [5723/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-09-07T06:36:54.3487354Z [5724/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-09-07T06:36:54.3548211Z [5725/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-09-07T06:36:54.3970586Z [5726/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-09-07T06:36:54.4121765Z [5727/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-09-07T06:36:54.4191606Z [5728/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-09-07T06:36:54.4205026Z [5729/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-09-07T06:36:54.4665727Z [5730/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-09-07T06:36:54.4680129Z [5731/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-09-07T06:36:54.4794968Z [5732/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-09-07T06:36:54.5171953Z [5733/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-09-07T06:36:54.5493610Z [5734/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-09-07T06:36:54.5571311Z [5735/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.5589661Z [5736/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-09-07T06:36:54.5847446Z [5737/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.5951782Z [5738/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.6195583Z [5739/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-09-07T06:36:54.6506850Z [5740/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.6788016Z [5741/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.6926298Z [5742/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.7099009Z [5743/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.7205710Z [5744/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.7273443Z [5745/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.7753429Z [5746/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.7766682Z [5747/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.7985174Z [5748/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.8286942Z [5749/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.8379555Z [5750/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.8492770Z [5751/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-09-07T06:36:54.8609629Z [5752/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.9013641Z [5753/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.9073212Z [5754/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-09-07T06:36:54.9481992Z [5755/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.9543183Z [5756/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-09-07T06:36:54.9599169Z [5757/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-09-07T06:36:54.9851493Z [5758/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:54.9977589Z [5759/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.0479903Z [5760/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.0493662Z [5761/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.0941454Z [5762/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.1013980Z [5763/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.1068453Z [5764/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.1356679Z [5765/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.1470852Z [5766/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.1818483Z [5767/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.1873501Z [5768/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.2439905Z [5769/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.2454365Z [5770/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.2470172Z [5771/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.2780885Z [5772/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.2915488Z [5773/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.3201672Z [5774/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.3252544Z [5775/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.3913545Z [5776/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.3974196Z [5777/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.3990861Z [5778/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.4312691Z [5779/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.4458872Z [5780/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.4682855Z [5781/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.4733283Z [5782/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.5310314Z [5783/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.5370228Z [5784/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.5427850Z [5785/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.5809010Z [5786/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.5912324Z [5787/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.5970465Z [5788/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.6025801Z [5789/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.6626951Z [5790/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.6692722Z [5791/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.6749254Z [5792/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.7133085Z [5793/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.7268877Z [5794/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-09-07T06:36:55.7283190Z [5795/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.7339344Z [5796/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.7941508Z [5797/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.8057024Z [5798/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.8120485Z [5799/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.8723703Z [5800/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.8749834Z [5801/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.8806168Z [5802/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.8819507Z [5803/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.9437532Z [5804/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.9493985Z [5805/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:55.9513683Z [5806/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:56.0220907Z [5807/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:56.0273938Z [5808/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:56.0354014Z [5809/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:56.0405913Z [5810/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:56.0734964Z [5811/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-09-07T06:36:56.0814965Z [5812/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-09-07T06:36:56.0870996Z [5813/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-fma3-broadcast.c.obj 2025-09-07T06:36:56.1454250Z [5814/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-09-07T06:36:56.1517735Z [5815/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-09-07T06:36:56.1624053Z [5816/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-09-07T06:36:56.1740019Z [5817/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-09-07T06:36:56.2031240Z [5818/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-09-07T06:36:56.2051068Z [5819/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-09-07T06:36:56.2117717Z [5820/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-09-07T06:36:56.2689291Z [5821/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-09-07T06:36:56.2941301Z [5822/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.3068199Z [5823/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.3456957Z [5824/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.3473985Z [5825/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.3526848Z [5826/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.3613814Z [5827/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.4047060Z [5828/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-gemm\gen\f16-f32acc-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.4158286Z [5829/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.4344103Z [5830/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.4839972Z [5831/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.4854644Z [5832/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.4911305Z [5833/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.4925253Z [5834/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.5392052Z [5835/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-igemm\gen\f16-f32acc-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.5457951Z [5836/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.5767461Z [5837/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.6309322Z [5838/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.6361833Z [5839/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.6376152Z [5840/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.6430447Z [5841/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.6814100Z [5842/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.7001693Z [5843/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.7210716Z [5844/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.7550932Z [5845/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.7611788Z [5846/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.7680928Z [5847/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.7746236Z [5848/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.8158607Z [5849/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.8264774Z [5850/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.8533827Z [5851/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.8788379Z [5852/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-09-07T06:36:56.8920253Z [5853/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-09-07T06:36:56.8976935Z [5854/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.8990213Z [5855/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:56.9430175Z [5856/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-09-07T06:36:56.9484106Z [5857/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-09-07T06:36:56.9681530Z [5858/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-09-07T06:36:56.9882076Z [5859/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-09-07T06:36:57.0087670Z [5860/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-09-07T06:36:57.0100339Z [5861/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-09-07T06:36:57.0158628Z [5862/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-09-07T06:36:57.0533283Z [5863/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-09-07T06:36:57.0779174Z [5864/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-09-07T06:36:57.0809729Z [5865/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-09-07T06:36:57.1087440Z [5866/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-09-07T06:36:57.1252223Z [5867/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-09-07T06:36:57.1267741Z [5868/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-09-07T06:36:57.1288284Z [5869/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-09-07T06:36:57.1562123Z [5870/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-09-07T06:36:57.1793454Z [5871/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-09-07T06:36:57.1931812Z [5872/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-09-07T06:36:57.2243700Z [5873/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-09-07T06:36:57.2393211Z [5874/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-09-07T06:36:57.2478926Z [5875/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-09-07T06:36:57.2537528Z [5876/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-09-07T06:36:57.2791732Z [5877/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-09-07T06:36:57.3002278Z [5878/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-09-07T06:36:57.3189276Z [5879/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-09-07T06:36:57.3435214Z [5880/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-09-07T06:36:57.3683609Z [5881/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-09-07T06:36:57.3745619Z [5882/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-09-07T06:36:57.3805157Z [5883/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-09-07T06:36:57.4102585Z [5884/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u8.c.obj 2025-09-07T06:36:57.4168501Z [5885/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u16.c.obj 2025-09-07T06:36:57.4390676Z [5886/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u24.c.obj 2025-09-07T06:36:57.4729807Z [5887/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-div-u32.c.obj 2025-09-07T06:36:57.4962012Z [5888/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u16.c.obj 2025-09-07T06:36:57.4980211Z [5889/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u24.c.obj 2025-09-07T06:36:57.5040978Z [5890/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u8.c.obj 2025-09-07T06:36:57.5339244Z [5891/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-avx2-expm1minus-rr1-p3h2ts-rcp-u32.c.obj 2025-09-07T06:36:57.5516508Z [5892/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.5811843Z [5893/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.6200160Z [5894/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.6457848Z [5895/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-8x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.6513638Z [5896/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-7x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.6526479Z [5897/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-6x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.6772285Z [5898/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.6863780Z [5899/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16s4-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.7272883Z [5900/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.7884137Z [5901/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.7942993Z [5902/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.7989400Z [5903/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16s4-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.8040938Z [5904/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16s4-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.8170727Z [5905/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.8245362Z [5906/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16s4-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.8644706Z [5907/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.9353435Z [5908/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.9421497Z [5909/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16s4-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.9476696Z [5910/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.9541084Z [5911/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16s4-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.9654224Z [5912/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:57.9775967Z [5913/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:58.0023824Z [5914/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x8-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:58.0615696Z [5915/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-09-07T06:36:58.0725966Z [5916/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-09-07T06:36:58.0741145Z [5917/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx2-broadcast.c.obj 2025-09-07T06:36:58.0754109Z [5918/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-09-07T06:36:58.0821009Z [5919/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-09-07T06:36:58.0971729Z [5920/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-09-07T06:36:58.1151470Z [5921/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-09-07T06:36:58.1558094Z [5922/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-09-07T06:36:58.1672530Z [5923/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-09-07T06:36:58.1689874Z [5924/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-09-07T06:36:58.1700711Z [5925/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-09-07T06:36:58.1713477Z [5926/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-09-07T06:36:58.1994198Z [5927/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-09-07T06:36:58.2041978Z [5928/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-09-07T06:36:58.2468241Z [5929/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-09-07T06:36:58.2566371Z [5930/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-09-07T06:36:58.2622983Z [5931/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-09-07T06:36:58.2635995Z [5932/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-09-07T06:36:58.2690522Z [5933/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-09-07T06:36:58.2890030Z [5934/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-09-07T06:36:58.2902420Z [5935/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-09-07T06:36:58.3756839Z [5936/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-09-07T06:36:58.3794143Z [5937/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-09-07T06:36:58.3848779Z [5938/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-09-07T06:36:58.3868675Z [5939/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-09-07T06:36:58.3871126Z [5940/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-09-07T06:36:58.4190185Z [5941/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-09-07T06:36:58.4305571Z [5942/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-09-07T06:36:58.4731472Z [5943/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-09-07T06:36:58.4791148Z [5944/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-09-07T06:36:58.4804308Z [5945/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-09-07T06:36:58.4815917Z [5946/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-09-07T06:36:58.4875127Z [5947/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-09-07T06:36:58.5133576Z [5948/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-09-07T06:36:58.5188955Z [5949/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-09-07T06:36:58.5658804Z [5950/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-09-07T06:36:58.5751133Z [5951/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-09-07T06:36:58.5923703Z [5952/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-09-07T06:36:58.5973924Z [5953/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-09-07T06:36:58.5988903Z [5954/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-09-07T06:36:58.6260589Z [5955/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-09-07T06:36:58.6321512Z [5956/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-09-07T06:36:58.6755403Z [5957/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-09-07T06:36:58.6906332Z [5958/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-09-07T06:36:58.7111851Z [5959/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u8.c.obj 2025-09-07T06:36:58.7177115Z [5960/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u16.c.obj 2025-09-07T06:36:58.7495400Z [5961/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut4-p4-perm-u24.c.obj 2025-09-07T06:36:58.7561183Z [5962/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u8.c.obj 2025-09-07T06:36:58.7953998Z [5963/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u16.c.obj 2025-09-07T06:36:58.7973966Z [5964/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u24.c.obj 2025-09-07T06:36:58.8064125Z [5965/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut8-p4-perm-u32.c.obj 2025-09-07T06:36:58.8370128Z [5966/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u8.c.obj 2025-09-07T06:36:58.8432116Z [5967/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u16.c.obj 2025-09-07T06:36:58.8499946Z [5968/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u24.c.obj 2025-09-07T06:36:58.8782673Z [5969/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-lut16-p3-gather-u32.c.obj 2025-09-07T06:36:58.9196437Z [5970/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-09-07T06:36:58.9209798Z [5971/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-09-07T06:36:58.9331287Z [5972/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-09-07T06:36:58.9389820Z [5973/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-09-07T06:36:58.9555635Z [5974/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-09-07T06:36:58.9622630Z [5975/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-09-07T06:36:58.9636175Z [5976/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-09-07T06:36:59.0137035Z [5977/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-09-07T06:36:59.0152670Z [5978/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-09-07T06:36:59.0220092Z [5979/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-09-07T06:36:59.0486450Z [5980/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-09-07T06:36:59.0594514Z [5981/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-09-07T06:36:59.0765853Z [5982/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-09-07T06:36:59.0854377Z [5983/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-09-07T06:36:59.1307350Z [5984/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-09-07T06:36:59.1382544Z [5985/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-09-07T06:36:59.1727751Z [5986/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-09-07T06:36:59.1788836Z [5987/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-09-07T06:36:59.1854978Z [5988/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-09-07T06:36:59.2256499Z [5989/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-09-07T06:36:59.2553140Z [5990/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-09-07T06:36:59.2571397Z [5991/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-09-07T06:36:59.2660570Z [5992/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-09-07T06:36:59.3084825Z [5993/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.3146228Z [5994/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qb4w-gemm\gen\qd8-f16-qb4w-gemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.3502979Z [5995/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.3701293Z [5996/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.4015641Z [5997/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:36:59.4047732Z [5998/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.4101906Z [5999/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.4468787Z [6000/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:36:59.4637080Z [6001/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.4982831Z [6002/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.5126921Z [6003/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.5563005Z [6004/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:36:59.5620646Z [6005/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.5637172Z [6006/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.5879815Z [6007/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.6267779Z [6008/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:36:59.6505649Z [6009/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.6628150Z [6010/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.7058354Z [6011/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.7072462Z [6012/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:36:59.7209714Z [6013/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.7381133Z [6014/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:36:59.7958149Z [6015/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.8122141Z [6016/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.8402849Z [6017/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.8456842Z [6018/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.8521285Z [6019/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.8534215Z [6020/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.8811263Z [6021/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.9380238Z [6022/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.9556583Z [6023/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:36:59.9799849Z [6024/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx2.c.obj 2025-09-07T06:36:59.9997547Z [6025/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:37:00.0209519Z [6026/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.0340353Z [6027/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:37:00.0535067Z [6028/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:37:00.0736935Z [6029/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:37:00.0989868Z [6030/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.1285277Z [6031/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:37:00.1546855Z [6032/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.1629461Z [6033/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:37:00.1838088Z [6034/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:37:00.1909594Z [6035/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.2179342Z [6036/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:37:00.2410110Z [6037/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:37:00.2853427Z [6038/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.2947167Z [6039/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:37:00.3172753Z [6040/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:37:00.3372658Z [6041/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.3427037Z [6042/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2-madd-prfm.c.obj 2025-09-07T06:37:00.3597505Z [6043/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2-madd.c.obj 2025-09-07T06:37:00.4105341Z [6044/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.4233521Z [6045/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.4400080Z [6046/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.4690133Z [6047/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-2x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.4832758Z [6048/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.4894668Z [6049/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-3x8c8-minmax-avx2.c.obj 2025-09-07T06:37:00.5234525Z [6050/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.5708289Z [6051/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:00.5769501Z [6052/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:00.6071562Z [6053/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:00.6129716Z [6054/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:00.6186057Z [6055/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.6282654Z [6056/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:00.6629243Z [6057/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:00.7024206Z [6058/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.7311542Z [6059/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:00.7325218Z [6060/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.7426104Z [6061/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:00.7488514Z [6062/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:00.7573848Z [6063/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.7975190Z [6064/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:00.8373863Z [6065/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:00.8623929Z [6066/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.8686680Z [6067/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:00.8835414Z [6068/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:00.8893721Z [6069/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:00.8957305Z [6070/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.9367369Z [6071/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:00.9817122Z [6072/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:00.9973980Z [6073/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.0082620Z [6074/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.0223414Z [6075/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.0530007Z [6076/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.0604685Z [6077/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.0623419Z [6078/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.1480732Z [6079/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.1545165Z [6080/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.1570119Z [6081/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.1826496Z [6082/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.1935812Z [6083/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.1963270Z [6084/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.2041536Z [6085/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.3204746Z [6086/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-09-07T06:37:01.3570436Z [6087/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.3585534Z [6088/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.3600169Z [6089/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.3835428Z [6090/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.3898328Z [6091/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.4051882Z [6092/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.4368380Z [6093/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-09-07T06:37:01.4744234Z [6094/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-09-07T06:37:01.4757892Z [6095/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-09-07T06:37:01.4816579Z [6096/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-09-07T06:37:01.4951135Z [6097/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-09-07T06:37:01.4965648Z [6098/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-09-07T06:37:01.5393536Z [6099/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.5628422Z [6100/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.6077846Z [6101/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.6137387Z [6102/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.6150368Z [6103/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.6276733Z [6104/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.6346625Z [6105/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.6632203Z [6106/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.6895607Z [6107/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.7375347Z [6108/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.7440087Z [6109/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.7456076Z [6110/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.7535684Z [6111/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.7709605Z [6112/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.7968305Z [6113/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.8315534Z [6114/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.8724863Z [6115/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.8781501Z [6116/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.8832231Z [6117/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:01.8885432Z [6118/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:01.9010288Z [6119/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:01.9257151Z [6120/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:01.9647652Z [6121/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:02.0051401Z [6122/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.0098729Z [6123/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:02.0159608Z [6124/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:02.0172444Z [6125/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s16r-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:02.0268888Z [6126/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.0632031Z [6127/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:02.0945688Z [6128/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:02.1348755Z [6129/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:02.1422398Z [6130/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:02.1478299Z [6131/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:02.1550662Z [6132/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:02.1636594Z [6133/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.1914479Z [6134/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.2234595Z [6135/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:02.2658375Z [6136/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:02.2788102Z [6137/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:02.2843990Z [6138/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.obj 2025-09-07T06:37:02.2910781Z [6139/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.obj 2025-09-07T06:37:02.2978036Z [6140/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.obj 2025-09-07T06:37:02.3301481Z [6141/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.3701463Z [6142/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:02.4123484Z [6143/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-09-07T06:37:02.4309812Z [6144/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:02.4367312Z [6145/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:02.4379709Z [6146/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-09-07T06:37:02.4391645Z [6147/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:02.4475923Z [6148/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-09-07T06:37:02.5046152Z [6149/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-09-07T06:37:02.5325696Z [6150/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-09-07T06:37:02.5560526Z [6151/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-09-07T06:37:02.5610085Z [6152/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-09-07T06:37:02.5668698Z [6153/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-09-07T06:37:02.5757882Z [6154/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-09-07T06:37:02.5955550Z [6155/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-09-07T06:37:02.6137612Z [6156/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-09-07T06:37:02.6475742Z [6157/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-09-07T06:37:02.6761649Z [6158/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-09-07T06:37:02.6886253Z [6159/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-09-07T06:37:02.6954484Z [6160/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.7142850Z [6161/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.7282685Z [6162/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.7439129Z [6163/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.7733275Z [6164/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.8157555Z [6165/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.8234971Z [6166/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.8288183Z [6167/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.8416433Z [6168/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.8513578Z [6169/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.8662933Z [6170/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.8995505Z [6171/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.9417080Z [6172/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-09-07T06:37:02.9467108Z [6173/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-09-07T06:37:02.9528465Z [6174/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-09-07T06:37:02.9629126Z [6175/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-09-07T06:37:02.9913718Z [6176/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:03.0124593Z [6177/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:03.0343055Z [6178/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:03.0686863Z [6179/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-09-07T06:37:03.0736035Z [6180/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-09-07T06:37:03.0883058Z [6181/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-09-07T06:37:03.1047165Z [6182/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-09-07T06:37:03.1107502Z [6183/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-09-07T06:37:03.1293933Z [6184/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-09-07T06:37:03.1454464Z [6185/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-09-07T06:37:03.1792604Z [6186/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-09-07T06:37:03.1903718Z [6187/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-09-07T06:37:03.1952809Z [6188/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-09-07T06:37:03.2000153Z [6189/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-09-07T06:37:03.2079179Z [6190/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-09-07T06:37:03.2162927Z [6191/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-09-07T06:37:03.2593449Z [6192/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-09-07T06:37:03.2950680Z [6193/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-09-07T06:37:03.3014466Z [6194/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-09-07T06:37:03.3155663Z [6195/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-09-07T06:37:03.3217796Z [6196/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-09-07T06:37:03.3278884Z [6197/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16-prfm.c.obj 2025-09-07T06:37:03.3330459Z [6198/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-09-07T06:37:03.3712550Z [6199/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-09-07T06:37:03.4029424Z [6200/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-09-07T06:37:03.4087394Z [6201/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-09-07T06:37:03.4260207Z [6202/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-09-07T06:37:03.4448289Z [6203/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-09-07T06:37:03.4726736Z [6204/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.4779430Z [6205/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.5190062Z [6206/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-2x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.5497573Z [6207/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-3x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.5513844Z [6208/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-4x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.5801149Z [6209/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:03.5899178Z [6210/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.6145009Z [6211/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.6253383Z [6212/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-6x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.6710515Z [6213/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:03.6973134Z [6214/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.6988884Z [6215/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.7280108Z [6216/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.7562276Z [6217/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.7618065Z [6218/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:03.7718250Z [6219/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.8304141Z [6220/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:03.8389491Z [6221/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:03.8446188Z [6222/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.8720691Z [6223/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.9179319Z [6224/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.9195455Z [6225/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:03.9208777Z [6226/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:03.9783657Z [6227/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.9796221Z [6228/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:03.9865706Z [6229/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.0217597Z [6230/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.0641719Z [6231/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-3x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.0697484Z [6232/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-2x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.0754609Z [6233/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.1219347Z [6234/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.1279666Z [6235/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.1330320Z [6236/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:04.1699745Z [6237/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.2029300Z [6238/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-6x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.2257609Z [6239/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:04.2482376Z [6240/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.2675011Z [6241/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.2691826Z [6242/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.2780110Z [6243/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.3134060Z [6244/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:04.3514532Z [6245/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.3766082Z [6246/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:04.4008686Z [6247/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.4137837Z [6248/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.4194617Z [6249/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:04.4298666Z [6250/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256skx-madd-prfm.c.obj 2025-09-07T06:37:04.4607196Z [6251/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256skx-madd.c.obj 2025-09-07T06:37:04.4899975Z [6252/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.5267424Z [6253/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.5451026Z [6254/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.5636514Z [6255/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-2x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:37:04.5800475Z [6256/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-3x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:37:04.5903656Z [6257/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256skx.c.obj 2025-09-07T06:37:04.5971764Z [6258/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-2x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:37:04.6228148Z [6259/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-3x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:37:04.6307006Z [6260/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-09-07T06:37:04.6576458Z [6261/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-09-07T06:37:04.6754070Z [6262/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-09-07T06:37:04.7063858Z [6263/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-09-07T06:37:04.7259126Z [6264/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:37:04.7271941Z [6265/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-09-07T06:37:04.7446507Z [6266/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-09-07T06:37:04.7462027Z [6267/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-09-07T06:37:04.7779248Z [6268/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-09-07T06:37:04.8356403Z [6269/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:04.8746951Z [6270/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:04.8796552Z [6271/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:04.8897539Z [6272/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:04.8978009Z [6273/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:04.9105113Z [6274/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:04.9161663Z [6275/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:04.9824028Z [6276/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:05.0203148Z [6277/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:05.0216309Z [6278/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:05.0394372Z [6279/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:05.0448634Z [6280/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:05.0578630Z [6281/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:05.0656220Z [6282/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:05.1236990Z [6283/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:05.1664221Z [6284/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:05.1716488Z [6285/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:05.1895263Z [6286/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:05.2075037Z [6287/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:05.2265854Z [6288/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:05.2558900Z [6289/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.1905192Z [6290/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.2092888Z [6291/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.2141260Z [6292/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.2262074Z [6293/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.2309818Z [6294/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.2419838Z [6295/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.2485203Z [6296/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-gemm\gen\qd8-f16-qc8w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.3543409Z [6297/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.3631327Z [6298/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-5x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.3734997Z [6299/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.3834176Z [6300/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.3898195Z [6301/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.4055057Z [6302/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.4501089Z [6303/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.5014222Z [6304/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-9x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.5314189Z [6305/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-10x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.5521257Z [6306/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.5537165Z [6307/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-12x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.5549353Z [6308/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.6126444Z [6309/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.6560628Z [6310/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.6575358Z [6311/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc8w-igemm\gen\qd8-f16-qc8w-igemm-14x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.6912772Z [6312/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.7040883Z [6313/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.7097771Z [6314/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.7155950Z [6315/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.7638074Z [6316/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.8008685Z [6317/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.8156138Z [6318/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.8326633Z [6319/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.8774792Z [6320/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.8845641Z [6321/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.8862371Z [6322/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:07.9368320Z [6323/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:07.9897407Z [6324/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.0075805Z [6325/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.0177304Z [6326/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.0253926Z [6327/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.0543654Z [6328/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.0556366Z [6329/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.1120043Z [6330/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.1467574Z [6331/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.1660647Z [6332/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.1714720Z [6333/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.1965634Z [6334/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.2045901Z [6335/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.2103537Z [6336/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.2616392Z [6337/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.2930182Z [6338/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.3074593Z [6339/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.3198362Z [6340/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.3765003Z [6341/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.3778303Z [6342/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.4082251Z [6343/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.4140822Z [6344/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.4569700Z [6345/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.4631554Z [6346/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.4645776Z [6347/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.5183470Z [6348/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.5317407Z [6349/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.5525621Z [6350/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.5542293Z [6351/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.6013869Z [6352/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.6074031Z [6353/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.6088990Z [6354/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.6620211Z [6355/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.6826466Z [6356/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.6893820Z [6357/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x8c8-minmax-avx256vnni.c.obj 2025-09-07T06:37:08.6994531Z [6358/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x8c8-minmax-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.7139047Z [6359/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-09-07T06:37:08.7194730Z [6360/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc4w-packw\gen\qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-09-07T06:37:08.7249387Z [6361/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-09-07T06:37:08.8102801Z [6362/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.8276937Z [6363/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:08.8292372Z [6364/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.8450170Z [6365/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:08.8720858Z [6366/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.8733441Z [6367/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:08.8745512Z [6368/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.9490499Z [6369/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:08.9653198Z [6370/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:08.9752440Z [6371/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:08.9841369Z [6372/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.0159460Z [6373/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.0173935Z [6374/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.0229971Z [6375/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.0958396Z [6376/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.1171340Z [6377/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.1188670Z [6378/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.1333024Z [6379/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.1626963Z [6380/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.1643877Z [6381/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.1704800Z [6382/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.2627422Z [6383/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.2640152Z [6384/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.2714060Z [6385/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.2769749Z [6386/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.3044117Z [6387/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.3148716Z [6388/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.3205499Z [6389/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.4092318Z [6390/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.4142653Z [6391/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.4204679Z [6392/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.4225435Z [6393/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x8c8-minmax-fp32-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.4280352Z [6394/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x8c8-minmax-fp32-avx256vnni.c.obj 2025-09-07T06:37:09.4294358Z [6395/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-09-07T06:37:09.4402537Z [6396/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qu8-packw\gen\qs8-qu8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-09-07T06:37:09.5206714Z [6397/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-09-07T06:37:09.5265340Z [6398/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-09-07T06:37:09.5355140Z [6399/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-09-07T06:37:09.5564304Z [6400/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-09-07T06:37:09.5714869Z [6401/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.5728131Z [6402/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-1x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.5818890Z [6403/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.6737292Z [6404/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-5x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.6957798Z [6405/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.7029864Z [6406/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.7100693Z [6407/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.7155584Z [6408/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-7x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.7278908Z [6409/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-8x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.7331152Z [6410/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-9x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.8448739Z [6411/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.8508289Z [6412/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.8521543Z [6413/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-12x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.8658891Z [6414/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.8720856Z [6415/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-14x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.8831299Z [6416/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.8888191Z [6417/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f16-qc4w-gemm\gen\qd8-f16-qc4w-gemm-10x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:09.9960802Z [6418/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:09.9974698Z [6419/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.0182255Z [6420/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.0254660Z [6421/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:10.0267873Z [6422/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.0389267Z [6423/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.0448113Z [6424/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:10.1685835Z [6425/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.1713312Z [6426/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:10.1768430Z [6427/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:10.1864393Z [6428/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:10.1876155Z [6429/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.1888681Z [6430/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.2140665Z [6431/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x8c8-minmax-avx256vnnigfni-prfm.c.obj 2025-09-07T06:37:10.3320737Z [6432/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.3394134Z [6433/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-09-07T06:37:10.3452489Z [6434/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x8c8-minmax-avx256vnnigfni.c.obj 2025-09-07T06:37:10.3471464Z [6435/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.3540085Z [6436/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.3557350Z [6437/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-09-07T06:37:10.3658147Z [6438/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.4772198Z [6439/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.4866897Z [6440/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.4879896Z [6441/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-09-07T06:37:10.4943262Z [6442/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-09-07T06:37:10.5003257Z [6443/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.5017745Z [6444/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.5092257Z [6445/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.6121639Z [6446/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-09-07T06:37:10.6296072Z [6447/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.6360811Z [6448/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-09-07T06:37:10.6407447Z [6449/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.6481929Z [6450/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.6497231Z [6451/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.6509450Z [6452/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.7631626Z [6453/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.7743070Z [6454/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.7795766Z [6455/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.7851262Z [6456/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.7939040Z [6457/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.8007537Z [6458/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.8132849Z [6459/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.9097518Z [6460/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.9258737Z [6461/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.9283528Z [6462/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.9345333Z [6463/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.9358580Z [6464/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.9579131Z [6465/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:10.9646168Z [6466/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.0557246Z [6467/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.0704955Z [6468/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.0770374Z [6469/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.0787725Z [6470/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.1090509Z [6471/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.1149234Z [6472/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.1164663Z [6473/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.1945531Z [6474/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.2151960Z [6475/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.2248610Z [6476/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.2307348Z [6477/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.2525047Z [6478/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.2680470Z [6479/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.2931008Z [6480/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.3397131Z [6481/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.3677671Z [6482/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.3691409Z [6483/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.3772251Z [6484/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.3943089Z [6485/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.4136229Z [6486/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.4286695Z [6487/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.4882910Z [6488/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.5160923Z [6489/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.5186189Z [6490/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.5272402Z [6491/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.5329786Z [6492/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.5638420Z [6493/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.5694708Z [6494/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.6133298Z [6495/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.6427804Z [6496/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.6478752Z [6497/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.6584221Z [6498/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.6639262Z [6499/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.6933293Z [6500/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.6988135Z [6501/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.7351373Z [6502/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-09-07T06:37:11.7461617Z [6503/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-09-07T06:37:11.7553138Z [6504/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-09-07T06:37:11.7650065Z [6505/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.7717649Z [6506/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-09-07T06:37:11.7821405Z [6507/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-09-07T06:37:11.7907078Z [6508/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-09-07T06:37:11.8224576Z [6509/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-09-07T06:37:11.8390976Z [6510/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-09-07T06:37:11.8457725Z [6511/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-09-07T06:37:11.8579003Z [6512/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-09-07T06:37:11.8669449Z [6513/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-09-07T06:37:11.8726891Z [6514/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-09-07T06:37:11.8784519Z [6515/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-09-07T06:37:11.9111109Z [6516/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-09-07T06:37:11.9230707Z [6517/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-09-07T06:37:11.9304764Z [6518/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-09-07T06:37:11.9469910Z [6519/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-09-07T06:37:11.9582353Z [6520/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-09-07T06:37:11.9734152Z [6521/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-09-07T06:37:11.9982179Z [6522/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-09-07T06:37:12.0049186Z [6523/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-09-07T06:37:12.0127792Z [6524/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-09-07T06:37:12.0187004Z [6525/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-09-07T06:37:12.0386405Z [6526/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-09-07T06:37:12.0493496Z [6527/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-09-07T06:37:12.0602779Z [6528/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-09-07T06:37:12.0907316Z [6529/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-09-07T06:37:12.0957243Z [6530/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-09-07T06:37:12.1043163Z [6531/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-09-07T06:37:12.1149267Z [6532/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-09-07T06:37:12.1358568Z [6533/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-09-07T06:37:12.1583858Z [6534/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-09-07T06:37:12.1717571Z [6535/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u32-acc2.c.obj 2025-09-07T06:37:12.2028889Z [6536/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u64-acc2.c.obj 2025-09-07T06:37:12.2088387Z [6537/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u64-acc4.c.obj 2025-09-07T06:37:12.2209427Z [6538/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-09-07T06:37:12.2269145Z [6539/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-09-07T06:37:12.2475683Z [6540/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-09-07T06:37:12.2738515Z [6541/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-09-07T06:37:12.2837377Z [6542/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-09-07T06:37:12.3111621Z [6543/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-09-07T06:37:12.3174435Z [6544/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-09-07T06:37:12.3648350Z [6545/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-09-07T06:37:12.3708722Z [6546/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-09-07T06:37:12.3825142Z [6547/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-09-07T06:37:12.3884774Z [6548/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-09-07T06:37:12.3975596Z [6549/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-09-07T06:37:12.4223836Z [6550/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-09-07T06:37:12.4332466Z [6551/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-09-07T06:37:12.4810431Z [6552/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-09-07T06:37:12.4825063Z [6553/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-09-07T06:37:12.4965861Z [6554/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-09-07T06:37:12.5028222Z [6555/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-09-07T06:37:12.5118747Z [6556/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-09-07T06:37:12.5443347Z [6557/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-09-07T06:37:12.5637098Z [6558/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-09-07T06:37:12.5921985Z [6559/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-09-07T06:37:12.5980986Z [6560/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-09-07T06:37:12.6190294Z [6561/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-09-07T06:37:12.6256186Z [6562/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-09-07T06:37:12.6364457Z [6563/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-09-07T06:37:12.6755155Z [6564/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-09-07T06:37:12.7107806Z [6565/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-09-07T06:37:12.7175271Z [6566/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-09-07T06:37:12.7238922Z [6567/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-09-07T06:37:12.7346076Z [6568/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-09-07T06:37:12.7454709Z [6569/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-09-07T06:37:12.7519321Z [6570/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-09-07T06:37:12.8033315Z [6571/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-09-07T06:37:12.8360182Z [6572/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-09-07T06:37:12.8431825Z [6573/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-09-07T06:37:12.8499755Z [6574/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-09-07T06:37:12.8578713Z [6575/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-09-07T06:37:12.8667258Z [6576/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-09-07T06:37:12.8738562Z [6577/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-09-07T06:37:12.9206416Z [6578/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-09-07T06:37:12.9696893Z [6579/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-09-07T06:37:12.9782634Z [6580/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-09-07T06:37:12.9896375Z [6581/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-09-07T06:37:12.9909298Z [6582/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-09-07T06:37:12.9986784Z [6583/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-09-07T06:37:13.0048077Z [6584/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u16.c.obj 2025-09-07T06:37:13.0392239Z [6585/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u32.c.obj 2025-09-07T06:37:13.0960462Z [6586/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u48.c.obj 2025-09-07T06:37:13.1032644Z [6587/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-lut16-p3-perm-u64.c.obj 2025-09-07T06:37:13.1126400Z [6588/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-09-07T06:37:13.1190249Z [6589/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-09-07T06:37:13.1252784Z [6590/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-09-07T06:37:13.1315483Z [6591/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-09-07T06:37:13.1578024Z [6592/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-09-07T06:37:13.2463769Z [6593/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-09-07T06:37:13.2485127Z [6594/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-09-07T06:37:13.2548767Z [6595/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-09-07T06:37:13.2561384Z [6596/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-09-07T06:37:13.2573865Z [6597/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-09-07T06:37:13.2585533Z [6598/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-09-07T06:37:13.2801350Z [6599/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-09-07T06:37:13.3464219Z [6600/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-09-07T06:37:13.3518776Z [6601/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-09-07T06:37:13.3577229Z [6602/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-09-07T06:37:13.3675188Z [6603/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-09-07T06:37:13.3736948Z [6604/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-09-07T06:37:13.3750606Z [6605/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-09-07T06:37:13.3802630Z [6606/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-09-07T06:37:13.4370362Z [6607/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-09-07T06:37:13.4386467Z [6608/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-09-07T06:37:13.4498343Z [6609/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-09-07T06:37:13.4556629Z [6610/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-09-07T06:37:13.4971248Z [6611/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u16.c.obj 2025-09-07T06:37:13.5032799Z [6612/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u32.c.obj 2025-09-07T06:37:13.5048004Z [6613/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u48.c.obj 2025-09-07T06:37:13.5617520Z [6614/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u16.c.obj 2025-09-07T06:37:13.5677680Z [6615/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-u64.c.obj 2025-09-07T06:37:13.5748043Z [6616/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u32.c.obj 2025-09-07T06:37:13.5767254Z [6617/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u48.c.obj 2025-09-07T06:37:13.6150149Z [6618/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-u64.c.obj 2025-09-07T06:37:13.6259352Z [6619/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u16.c.obj 2025-09-07T06:37:13.6352865Z [6620/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u32.c.obj 2025-09-07T06:37:13.6812860Z [6621/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u48.c.obj 2025-09-07T06:37:13.6919876Z [6622/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-div-u64.c.obj 2025-09-07T06:37:13.7086397Z [6623/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u32.c.obj 2025-09-07T06:37:13.7099539Z [6624/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u16.c.obj 2025-09-07T06:37:13.7328695Z [6625/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u48.c.obj 2025-09-07T06:37:13.7417356Z [6626/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-u64.c.obj 2025-09-07T06:37:13.7646269Z [6627/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u16.c.obj 2025-09-07T06:37:13.8010621Z [6628/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u32.c.obj 2025-09-07T06:37:13.8222167Z [6629/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u48.c.obj 2025-09-07T06:37:13.8306625Z [6630/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u16.c.obj 2025-09-07T06:37:13.8368057Z [6631/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u32.c.obj 2025-09-07T06:37:13.8630438Z [6632/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u48.c.obj 2025-09-07T06:37:13.8646176Z [6633/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-u64.c.obj 2025-09-07T06:37:13.8878049Z [6634/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-09-07T06:37:13.9363080Z [6635/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-09-07T06:37:13.9565192Z [6636/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-09-07T06:37:13.9577627Z [6637/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1-prfm.c.obj 2025-09-07T06:37:13.9591388Z [6638/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-09-07T06:37:13.9734898Z [6639/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-09-07T06:37:13.9750719Z [6640/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8-prfm.c.obj 2025-09-07T06:37:13.9981999Z [6641/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4-prfm.c.obj 2025-09-07T06:37:14.0713649Z [6642/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8-prfm.c.obj 2025-09-07T06:37:14.0726493Z [6643/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1-prfm.c.obj 2025-09-07T06:37:14.0738137Z [6644/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-09-07T06:37:14.0794335Z [6645/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-09-07T06:37:14.0868406Z [6646/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-09-07T06:37:14.0882381Z [6647/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-09-07T06:37:14.1120129Z [6648/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-09-07T06:37:14.1834090Z [6649/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-09-07T06:37:14.1919513Z [6650/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-09-07T06:37:14.1933412Z [6651/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-09-07T06:37:14.1985051Z [6652/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-09-07T06:37:14.2052183Z [6653/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-09-07T06:37:14.2115232Z [6654/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-09-07T06:37:14.2234647Z [6655/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-09-07T06:37:14.2994468Z [6656/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-09-07T06:37:14.3084094Z [6657/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-09-07T06:37:14.3130788Z [6658/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-09-07T06:37:14.3199000Z [6659/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-09-07T06:37:14.3270972Z [6660/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-09-07T06:37:14.3495998Z [6661/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-09-07T06:37:14.3571424Z [6662/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-09-07T06:37:14.4257889Z [6663/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-09-07T06:37:14.4323109Z [6664/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-09-07T06:37:14.4553976Z [6665/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-09-07T06:37:14.4605311Z [6666/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-09-07T06:37:14.4659729Z [6667/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-09-07T06:37:14.4721729Z [6668/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-09-07T06:37:14.4737574Z [6669/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-09-07T06:37:14.5498700Z [6670/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-09-07T06:37:14.5566934Z [6671/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-09-07T06:37:14.5760990Z [6672/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-09-07T06:37:14.5938285Z [6673/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-2x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.6020042Z [6674/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-3x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.6196899Z [6675/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-4x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.6248460Z [6676/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-5x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.6890666Z [6677/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-6x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.7034837Z [6678/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc4w-gemm-8x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.7215783Z [6679/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.7362284Z [6680/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.7503366Z [6681/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.7655507Z [6682/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.7747523Z [6683/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.8282532Z [6684/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.8515633Z [6685/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.8694123Z [6686/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.8837742Z [6687/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.9015866Z [6688/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.9067442Z [6689/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.9231500Z [6690/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-7x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.9670821Z [6691/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x16-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:14.9870207Z [6692/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-09-07T06:37:14.9944084Z [6693/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-8x32-minmax-avx512skx-broadcast.c.obj 2025-09-07T06:37:15.0121511Z [6694/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-09-07T06:37:15.0284672Z [6695/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-09-07T06:37:15.0297846Z [6696/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-09-07T06:37:15.0445194Z [6697/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-09-07T06:37:15.0806212Z [6698/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-09-07T06:37:15.1339031Z [6699/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.1401869Z [6700/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.1561332Z [6701/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.1672982Z [6702/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:15.1796958Z [6703/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:15.1852761Z [6704/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.2179263Z [6705/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.2822056Z [6706/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.2878866Z [6707/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.2945775Z [6708/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.3150567Z [6709/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.3263822Z [6710/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:15.3345699Z [6711/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:15.3578155Z [6712/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.4322952Z [6713/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.4384725Z [6714/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.4401397Z [6715/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.4600203Z [6716/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:15.4680067Z [6717/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:15.4766153Z [6718/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.5098527Z [6719/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.5836576Z [6720/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.6099905Z [6721/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.6119246Z [6722/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:15.6172687Z [6723/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:15.6198845Z [6724/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.6252860Z [6725/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.6661722Z [6726/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.7321979Z [6727/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.7620420Z [6728/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.7692053Z [6729/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.7747889Z [6730/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.7761471Z [6731/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.7914543Z [6732/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.8223047Z [6733/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.8783656Z [6734/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.9088322Z [6735/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.9281421Z [6736/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512skx-madd-prfm.c.obj 2025-09-07T06:37:15.9332305Z [6737/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.9382718Z [6738/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512skx-madd.c.obj 2025-09-07T06:37:15.9395444Z [6739/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:15.9579253Z [6740/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:16.0157171Z [6741/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:16.0559400Z [6742/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:16.0643289Z [6743/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:16.0696788Z [6744/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:16.0766079Z [6745/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:16.0854098Z [6746/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:16.0927576Z [6747/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:16.1476019Z [6748/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512skx-prfm.c.obj 2025-09-07T06:37:16.1824455Z [6749/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:16.1937417Z [6750/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx.c.obj 2025-09-07T06:37:16.2134706Z [6751/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.2196497Z [6752/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.2210102Z [6753/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.2264811Z [6754/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.2760509Z [6755/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.3201750Z [6756/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.3252929Z [6757/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.3358294Z [6758/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-09-07T06:37:16.3375291Z [6759/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.3438861Z [6760/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-09-07T06:37:16.3451728Z [6761/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-09-07T06:37:16.4055828Z [6762/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.4515696Z [6763/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.4567214Z [6764/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.4673087Z [6765/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.4685700Z [6766/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.4737781Z [6767/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.4801107Z [6768/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.5346819Z [6769/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-dwconv\gen\qs8-qc8w-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.5991987Z [6770/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.6042607Z [6771/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:16.6130889Z [6772/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.6144947Z [6773/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.6207207Z [6774/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:16.6301098Z [6775/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.6642953Z [6776/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.7345998Z [6777/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.7396747Z [6778/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:16.7453823Z [6779/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:16.7466404Z [6780/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.7672034Z [6781/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:16.7760967Z [6782/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-09-07T06:37:16.7868565Z [6783/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-09-07T06:37:16.8442966Z [6784/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-09-07T06:37:16.8532037Z [6785/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-09-07T06:37:16.8658342Z [6786/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-09-07T06:37:16.8825946Z [6787/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-09-07T06:37:16.8910865Z [6788/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.9136304Z [6789/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.9218117Z [6790/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.9722198Z [6791/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:16.9795816Z [6792/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:17.0049326Z [6793/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:17.0159774Z [6794/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:17.0223421Z [6795/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-09-07T06:37:17.0322910Z [6796/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-09-07T06:37:17.0447115Z [6797/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-09-07T06:37:17.1009766Z [6798/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-09-07T06:37:17.1215669Z [6799/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.1439343Z [6800/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:17.1660062Z [6801/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.1681814Z [6802/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.1806219Z [6803/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:17.1922057Z [6804/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.2544235Z [6805/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:17.2610756Z [6806/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.2806263Z [6807/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.2977455Z [6808/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-09-07T06:37:17.3068063Z [6809/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.3233525Z [6810/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-09-07T06:37:17.3367456Z [6811/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-09-07T06:37:17.3455128Z [6812/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-09-07T06:37:17.3727924Z [6813/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-09-07T06:37:17.3744740Z [6814/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-09-07T06:37:17.3914437Z [6815/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-09-07T06:37:17.4086935Z [6816/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-09-07T06:37:17.4099264Z [6817/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-09-07T06:37:17.4323832Z [6818/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-09-07T06:37:17.4885104Z [6819/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.5175228Z [6820/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.5196616Z [6821/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.5399409Z [6822/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.5515304Z [6823/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.5527973Z [6824/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.5748050Z [6825/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.6224064Z [6826/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.6955097Z [6827/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.7016443Z [6828/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.7453476Z [6829/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.7694409Z [6830/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.7720626Z [6831/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.7782642Z [6832/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.7794231Z [6833/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.8292756Z [6834/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.8979812Z [6835/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:17.9983569Z [6836/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:17.9997923Z [6837/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.0055983Z [6838/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.0069117Z [6839/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.0084122Z [6840/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.0412771Z [6841/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.0594865Z [6842/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.1498162Z [6843/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.1511933Z [6844/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.1564740Z [6845/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.1621607Z [6846/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.1798608Z [6847/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.1897319Z [6848/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.1952313Z [6849/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.2843245Z [6850/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.3037938Z [6851/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.3090273Z [6852/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.3312293Z [6853/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.3324517Z [6854/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.3404519Z [6855/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.3519246Z [6856/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.4479746Z [6857/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.4570382Z [6858/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.4584939Z [6859/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.4765577Z [6860/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.4838172Z [6861/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.4897643Z [6862/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.5311563Z [6863/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.5920997Z [6864/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.5970269Z [6865/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.6021303Z [6866/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.6125100Z [6867/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.6232157Z [6868/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.6347127Z [6869/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-4x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.6747502Z [6870/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.7422192Z [6871/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.7437198Z [6872/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.7490168Z [6873/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-5x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.7574724Z [6874/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.7637993Z [6875/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.7742564Z [6876/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.8098946Z [6877/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-7x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.8922196Z [6878/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.8934956Z [6879/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.8989734Z [6880/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.9094908Z [6881/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-8x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.9162067Z [6882/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:18.9264828Z [6883/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:18.9589693Z [6884/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.0333076Z [6885/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-9x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.0393144Z [6886/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.0446997Z [6887/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.0546801Z [6888/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.0811940Z [6889/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.0891196Z [6890/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.1160201Z [6891/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.1825733Z [6892/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-12x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.1893472Z [6893/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.1966947Z [6894/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.2047623Z [6895/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.2285253Z [6896/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-gemm\gen\qd8-f32-qc8w-gemm-14x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.2385645Z [6897/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.2629979Z [6898/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.3329482Z [6899/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.3390493Z [6900/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.3524540Z [6901/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.3540184Z [6902/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.3685233Z [6903/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.3847904Z [6904/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.4093171Z [6905/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.4778507Z [6906/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.4846563Z [6907/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.4996879Z [6908/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.5078598Z [6909/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.5176824Z [6910/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.5309019Z [6911/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.5605723Z [6912/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.6205898Z [6913/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.6287349Z [6914/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.6502166Z [6915/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.6822197Z [6916/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.6843717Z [6917/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.6856388Z [6918/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.6982014Z [6919/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.7920417Z [6920/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.7977327Z [6921/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.8227588Z [6922/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.8321888Z [6923/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.8339678Z [6924/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.8402649Z [6925/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.8458307Z [6926/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.9378628Z [6927/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.9465953Z [6928/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc8w-igemm\gen\qd8-f32-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:19.9731883Z [6929/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.9803901Z [6930/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:19.9957870Z [6931/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:19.9974104Z [6932/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-1x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:19.9988618Z [6933/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-4x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.1041834Z [6934/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.1055926Z [6935/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.1164764Z [6936/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.1343933Z [6937/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.1357998Z [6938/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-5x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.1413879Z [6939/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.1426927Z [6940/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-7x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.2519979Z [6941/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.2534914Z [6942/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.2888281Z [6943/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.2900645Z [6944/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.2970117Z [6945/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.2985495Z [6946/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-8x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.3431209Z [6947/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.3889137Z [6948/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-9x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.3954738Z [6949/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.4266682Z [6950/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.4388978Z [6951/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.4450852Z [6952/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.4506537Z [6953/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-10x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.4841364Z [6954/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.5331653Z [6955/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.5445370Z [6956/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-12x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.5761291Z [6957/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c4-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.5813179Z [6958/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c4-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.5926623Z [6959/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c8-minmax-fp32-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.5982752Z [6960/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-gemm\gen\qs8-qc8w-gemm-14x16c8-minmax-fp32-avx512vnni.c.obj 2025-09-07T06:37:20.6429069Z [6961/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.6786897Z [6962/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.6855578Z [6963/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.7240714Z [6964/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.7254498Z [6965/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.7393242Z [6966/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.7447896Z [6967/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.7946926Z [6968/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.8315149Z [6969/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.8329342Z [6970/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.8715894Z [6971/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.8831533Z [6972/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.8909760Z [6973/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.9166929Z [6974/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:20.9287495Z [6975/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.9698314Z [6976/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:20.9828924Z [6977/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.0157694Z [6978/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.0209162Z [6979/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:21.0482693Z [6980/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.0574393Z [6981/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:21.0757484Z [6982/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.1156011Z [6983/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:21.1363771Z [6984/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.1595864Z [6985/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:21.1654462Z [6986/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.1990574Z [6987/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:21.2048439Z [6988/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.2463453Z [6989/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:21.2710180Z [6990/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.2764839Z [6991/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni-prfm.c.obj 2025-09-07T06:37:21.2858598Z [6992/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-09-07T06:37:21.3083995Z [6993/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-09-07T06:37:21.3155051Z [6994/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-09-07T06:37:21.3253002Z [6995/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-09-07T06:37:21.4016445Z [6996/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.4199414Z [6997/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.4257618Z [6998/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-5x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.4325545Z [6999/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.4561986Z [7000/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.4618341Z [7001/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-7x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.4702487Z [7002/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.5457551Z [7003/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.5729063Z [7004/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.5795041Z [7005/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-10x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.5812657Z [7006/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-9x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.6107304Z [7007/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.6223280Z [7008/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-12x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.6283554Z [7009/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qb4w-gemm\gen\qd8-f32-qb4w-gemm-14x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.6930080Z [7010/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.7222204Z [7011/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.7283928Z [7012/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.7297855Z [7013/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.7582741Z [7014/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-4x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.7734646Z [7015/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.7803014Z [7016/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.8429708Z [7017/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.8667062Z [7018/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-5x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.8788159Z [7019/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.8801041Z [7020/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.9046410Z [7021/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.9443188Z [7022/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:21.9522035Z [7023/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-7x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:21.9837111Z [7024/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.0137787Z [7025/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.0315862Z [7026/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.0445275Z [7027/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.0549858Z [7028/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.1044463Z [7029/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.1121401Z [7030/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-9x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.1341674Z [7031/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.1678066Z [7032/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.1866931Z [7033/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.1932102Z [7034/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-10x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.2090553Z [7035/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.2823900Z [7036/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.4559020Z [7037/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.4608451Z [7038/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-12x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.4799960Z [7039/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnnigfni-prfm.c.obj 2025-09-07T06:37:22.4853512Z [7040/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c8-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.4904672Z [7041/7565] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qd8-f32-qc4w-gemm\gen\qd8-f32-qc4w-gemm-14x16c4-minmax-avx512vnnigfni.c.obj 2025-09-07T06:37:22.6612769Z [7042/7565] Linking CXX static library lib\gtest_main.lib 2025-09-07T06:37:22.7615909Z [7043/7565] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-09-07T06:37:23.1454227Z [7044/7565] Linking CXX static library lib\gmock.lib 2025-09-07T06:37:23.1780133Z [7045/7565] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-09-07T06:37:23.7136496Z [7046/7565] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-09-07T06:37:24.2500765Z [7047/7565] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-09-07T06:37:24.2754480Z [7048/7565] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-09-07T06:37:24.3030397Z [7049/7565] Building CXX object c10\test\CMakeFiles\c10_AllocatorConfig_test.dir\core\AllocatorConfig_test.cpp.obj 2025-09-07T06:37:24.3361695Z [7050/7565] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-09-07T06:37:24.3607587Z [7051/7565] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-09-07T06:37:24.6542174Z [7052/7565] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-09-07T06:37:24.6597950Z [7053/7565] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-09-07T06:37:24.6950174Z [7054/7565] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-09-07T06:37:24.7235291Z [7055/7565] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-09-07T06:37:24.7317720Z [7056/7565] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-09-07T06:37:25.0047578Z [7057/7565] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-09-07T06:37:25.0317307Z [7058/7565] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-09-07T06:37:25.0327583Z [7059/7565] Linking CXX static library lib\benchmark.lib 2025-09-07T06:37:25.0730788Z [7060/7565] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-09-07T06:37:25.0878411Z [7061/7565] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-09-07T06:37:25.1819674Z [7062/7565] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-09-07T06:37:25.2699983Z [7063/7565] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-09-07T06:37:25.4059077Z [7064/7565] Building C object third_party\ittapi\CMakeFiles\jitprofiling.dir\src\ittnotify\jitprofiling.c.obj 2025-09-07T06:37:25.4324200Z [7065/7565] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-09-07T06:37:25.4473972Z [7066/7565] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-09-07T06:37:25.4658866Z [7067/7565] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-09-07T06:37:25.4731726Z [7068/7565] Building CXX object c10\test\CMakeFiles\c10_Enumerate_test.dir\util\Enumerate_test.cpp.obj 2025-09-07T06:37:25.5860465Z [7069/7565] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-09-07T06:37:25.6733153Z [7070/7565] Building CXX object c10\test\CMakeFiles\c10_IntrusiveList_test.dir\util\IntrusiveList_test.cpp.obj 2025-09-07T06:37:25.7764291Z [7071/7565] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-09-07T06:37:25.8153429Z [7072/7565] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-09-07T06:37:25.8236594Z [7073/7565] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-09-07T06:37:25.8581157Z [7074/7565] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-09-07T06:37:25.8819682Z [7075/7565] Building CXX object c10\test\CMakeFiles\c10_Semaphore_test.dir\util\Semaphore_test.cpp.obj 2025-09-07T06:37:25.9690123Z [7076/7565] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-09-07T06:37:26.0545472Z [7077/7565] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-09-07T06:37:26.1709781Z [7078/7565] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-09-07T06:37:26.1912488Z [7079/7565] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-09-07T06:37:26.2118582Z [7080/7565] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-09-07T06:37:26.2854482Z [7081/7565] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-09-07T06:37:26.2871409Z [7082/7565] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-09-07T06:37:26.4048148Z [7083/7565] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-09-07T06:37:26.4868003Z [7084/7565] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-09-07T06:37:26.5377396Z [7085/7565] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-09-07T06:37:26.5707786Z [7086/7565] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-09-07T06:37:26.5849513Z [7087/7565] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-09-07T06:37:26.7421342Z [7088/7565] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-09-07T06:37:26.7770887Z [7089/7565] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-09-07T06:37:26.7851454Z [7090/7565] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-09-07T06:37:26.8495723Z [7091/7565] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-09-07T06:37:26.9473976Z [7092/7565] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-09-07T06:37:26.9759021Z [7093/7565] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-09-07T06:37:27.0076275Z [7094/7565] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-09-07T06:37:27.0077355Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with [[nodiscard]] attribute 2025-09-07T06:37:27.0078464Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): note: the template instantiation context (the oldest one first) is 2025-09-07T06:37:27.0080600Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see reference to class template instantiation 'testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>' being compiled 2025-09-07T06:37:27.0084256Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(694): note: while compiling class template member function 'bool testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register(const char *,testing::internal::CodeLocation,const char *,const char *,int,const std::vector> &)' 2025-09-07T06:37:27.0088571Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see the first reference to 'testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register' in 'void __cdecl `anonymous namespace'::`dynamic initializer for 'gtest_OptionalTest_Empty_registered_''(void)' 2025-09-07T06:37:27.0094354Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(711): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register::TestClass>' being compiled 2025-09-07T06:37:27.0099749Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(491): note: see reference to class template instantiation '`anonymous-namespace'::OptionalTest_Empty_Test' being compiled 2025-09-07T06:37:27.0101815Z with 2025-09-07T06:37:27.0102126Z [ 2025-09-07T06:37:27.0103979Z T=testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register::Type 2025-09-07T06:37:27.0105985Z ] 2025-09-07T06:37:27.0107845Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: while compiling class template member function 'void `anonymous-namespace'::OptionalTest_Empty_Test::TestBody(void)' 2025-09-07T06:37:27.0109500Z with 2025-09-07T06:37:27.0109812Z [ 2025-09-07T06:37:27.1113694Z T=testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register::Type 2025-09-07T06:37:27.1115419Z ] 2025-09-07T06:37:27.1116103Z [7095/7565] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-09-07T06:37:27.1956075Z [7096/7565] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-09-07T06:37:27.2036223Z [7097/7565] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-09-07T06:37:27.2408423Z [7098/7565] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-09-07T06:37:27.3426198Z [7099/7565] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-09-07T06:37:27.3510816Z [7100/7565] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-09-07T06:37:27.4936346Z [7101/7565] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-09-07T06:37:27.5695816Z [7102/7565] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-09-07T06:37:28.6483142Z [7103/7565] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_stream.dir\impl\CUDAAssertionsTest_catches_stream.cu.obj 2025-09-07T06:37:28.6952931Z CUDAAssertionsTest_catches_stream.cu 2025-09-07T06:37:28.6953800Z tmpxft_0000110c_00000000-7_CUDAAssertionsTest_catches_stream.cudafe1.cpp 2025-09-07T06:37:28.6955692Z [7104/7565] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.dir\impl\CUDAAssertionsTest_catches_thread_and_block_and_device.cu.obj 2025-09-07T06:37:28.7930150Z CUDAAssertionsTest_catches_thread_and_block_and_device.cu 2025-09-07T06:37:28.7931304Z tmpxft_00001700_00000000-7_CUDAAssertionsTest_catches_thread_and_block_and_device.cudafe1.cpp 2025-09-07T06:37:28.7932928Z [7105/7565] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_1_var_test.dir\impl\CUDAAssertionsTest_1_var_test.cu.obj 2025-09-07T06:37:28.8531734Z CUDAAssertionsTest_1_var_test.cu 2025-09-07T06:37:28.8532512Z tmpxft_00000494_00000000-7_CUDAAssertionsTest_1_var_test.cudafe1.cpp 2025-09-07T06:37:28.8534823Z [7106/7565] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.dir\impl\CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu.obj 2025-09-07T06:37:28.8563080Z CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu 2025-09-07T06:37:28.8564214Z tmpxft_00000cc0_00000000-7_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cudafe1.cpp 2025-09-07T06:37:28.8565502Z [7107/7565] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-09-07T06:37:28.8726287Z [7108/7565] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_from_2_processes.dir\impl\CUDAAssertionsTest_from_2_processes.cu.obj 2025-09-07T06:37:28.9475268Z CUDAAssertionsTest_from_2_processes.cu 2025-09-07T06:37:28.9475790Z tmpxft_000016b0_00000000-7_CUDAAssertionsTest_from_2_processes.cudafe1.cpp 2025-09-07T06:37:28.9476737Z [7109/7565] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.dir\impl\CUDAAssertionsTest_multiple_writes_from_same_block.cu.obj 2025-09-07T06:37:28.9610894Z CUDAAssertionsTest_multiple_writes_from_same_block.cu 2025-09-07T06:37:28.9611684Z tmpxft_00000568_00000000-7_CUDAAssertionsTest_multiple_writes_from_same_block.cudafe1.cpp 2025-09-07T06:37:28.9612734Z [7110/7565] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.dir\impl\CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu.obj 2025-09-07T06:37:28.9680638Z CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu 2025-09-07T06:37:28.9681317Z tmpxft_00001468_00000000-7_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cudafe1.cpp 2025-09-07T06:37:28.9682143Z [7111/7565] Building CXX object c10\cuda\test\CMakeFiles\c10_cuda_CUDATest.dir\impl\CUDATest.cpp.obj 2025-09-07T06:37:28.9933108Z [7112/7565] Building CXX object caffe2\CMakeFiles\caffe2_nvrtc.dir\__\aten\src\ATen\cuda\nvrtc_stub\ATenNVRTC.cpp.obj 2025-09-07T06:37:29.3664286Z [7113/7565] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-09-07T06:37:29.4957773Z [7114/7565] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-09-07T06:37:29.5151622Z [7115/7565] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-09-07T06:37:29.5702743Z [7116/7565] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-09-07T06:37:29.5703868Z C:\actions-runner\_work\pytorch\pytorch\torch/headeronly/cpu/vec/vec_half.h(16): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:37:29.5705469Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:37:31.9942090Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:37:31.9943418Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-09-07T06:37:31.9944472Z [7117/7565] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-09-07T06:37:32.0214219Z [7118/7565] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-09-07T06:37:32.0434459Z [7119/7565] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-09-07T06:37:32.3673949Z [7120/7565] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-09-07T06:37:32.4470623Z [7121/7565] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-09-07T06:37:32.5309936Z [7122/7565] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-09-07T06:37:32.6108073Z [7123/7565] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-09-07T06:37:34.9358906Z [7124/7565] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-09-07T06:37:35.0589255Z [7125/7565] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-09-07T06:37:35.0861484Z [7126/7565] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-09-07T06:37:35.3942838Z [7127/7565] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-09-07T06:37:35.6195363Z [7128/7565] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-09-07T06:37:35.6932724Z [7129/7565] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-09-07T06:37:35.7823121Z [7130/7565] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-09-07T06:37:38.0264373Z [7131/7565] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-09-07T06:37:38.3434619Z [7132/7565] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-09-07T06:37:38.3666718Z [7133/7565] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-09-07T06:37:38.4394680Z [7134/7565] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-09-07T06:37:38.6428777Z [7135/7565] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-09-07T06:37:38.6694712Z [7136/7565] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-09-07T06:37:38.7767346Z [7137/7565] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-09-07T06:37:39.0289508Z [7138/7565] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-09-07T06:37:41.3476354Z [7139/7565] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-09-07T06:37:41.4448735Z [7140/7565] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-09-07T06:37:41.5159068Z [7141/7565] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-09-07T06:37:41.6544300Z [7142/7565] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-09-07T06:37:41.7862258Z [7143/7565] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-09-07T06:37:41.8363813Z [7144/7565] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-09-07T06:37:42.0404697Z [7145/7565] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-09-07T06:37:42.8203947Z [7146/7565] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-09-07T06:37:43.5168948Z [7147/7565] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-09-07T06:37:44.3903653Z [7148/7565] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-09-07T06:37:44.5347119Z [7149/7565] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-09-07T06:37:44.7518345Z [7150/7565] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-09-07T06:37:44.8384629Z [7151/7565] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-09-07T06:37:45.5543245Z [7152/7565] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-09-07T06:37:46.2257224Z [7153/7565] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-09-07T06:37:46.6322578Z [7154/7565] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-09-07T06:37:47.3930609Z [7155/7565] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-09-07T06:37:47.5018081Z [7156/7565] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-09-07T06:37:47.5268742Z [7157/7565] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-09-07T06:37:47.8218311Z [7158/7565] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-09-07T06:37:47.8794440Z [7159/7565] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-09-07T06:37:48.2959551Z [7160/7565] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-09-07T06:37:48.5204790Z [7161/7565] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-09-07T06:37:48.5939845Z [7162/7565] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-09-07T06:37:48.6827217Z [7163/7565] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-09-07T06:37:48.7868363Z [7164/7565] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-09-07T06:37:48.8440621Z [7165/7565] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-09-07T06:37:48.9987379Z [7166/7565] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-09-07T06:37:49.1686612Z [7167/7565] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-09-07T06:37:49.2211876Z [7168/7565] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-09-07T06:37:49.4918915Z [7169/7565] Building CXX object caffe2\CMakeFiles\make_boxed_from_unboxed_functor_test.dir\__\aten\src\ATen\core\boxing\impl\make_boxed_from_unboxed_functor_test.cpp.obj 2025-09-07T06:37:49.5005836Z [7170/7565] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-09-07T06:37:52.9221775Z [7171/7565] Building CXX object caffe2\CMakeFiles\cuda_apply_test.dir\__\aten\src\ATen\test\cuda_apply_test.cpp.obj 2025-09-07T06:37:52.9790288Z [7172/7565] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-09-07T06:37:53.0115000Z [7173/7565] Building CUDA object caffe2\CMakeFiles\cuda_atomic_ops_test.dir\__\aten\src\ATen\test\cuda_atomic_ops_test.cu.obj 2025-09-07T06:37:53.0379504Z cuda_atomic_ops_test.cu 2025-09-07T06:37:53.0380089Z tmpxft_00000b34_00000000-7_cuda_atomic_ops_test.cudafe1.cpp 2025-09-07T06:37:53.0381209Z [7174/7565] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-09-07T06:37:53.0757590Z [7175/7565] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-09-07T06:37:53.1448421Z [7176/7565] Building CXX object caffe2\CMakeFiles\cuda_allocator_test.dir\__\aten\src\ATen\test\cuda_allocator_test.cpp.obj 2025-09-07T06:37:53.2053745Z [7177/7565] Building CXX object caffe2\CMakeFiles\cuda_caching_host_allocator_test.dir\__\aten\src\ATen\test\cuda_caching_host_allocator_test.cpp.obj 2025-09-07T06:37:53.9887366Z [7178/7565] Building CXX object caffe2\CMakeFiles\cuda_device_test.dir\__\aten\src\ATen\test\cuda_device_test.cpp.obj 2025-09-07T06:37:54.1093229Z [7179/7565] Building CXX object caffe2\CMakeFiles\cuda_exchange_device_test.dir\__\aten\src\ATen\test\cuda_exchange_device_test.cpp.obj 2025-09-07T06:37:55.1312797Z [7180/7565] Building CUDA object caffe2\CMakeFiles\cuda_complex_math_test.dir\__\aten\src\ATen\test\cuda_complex_math_test.cu.obj 2025-09-07T06:37:55.7250468Z cuda_complex_math_test.cu 2025-09-07T06:37:55.7251178Z tmpxft_00001550_00000000-7_cuda_complex_math_test.cudafe1.cpp 2025-09-07T06:37:55.7252355Z [7181/7565] Building CUDA object caffe2\CMakeFiles\cuda_complex_test.dir\__\aten\src\ATen\test\cuda_complex_test.cu.obj 2025-09-07T06:37:56.4950050Z cuda_complex_test.cu 2025-09-07T06:37:56.4950630Z tmpxft_000015ac_00000000-7_cuda_complex_test.cudafe1.cpp 2025-09-07T06:37:56.4951666Z [7182/7565] Building CUDA object caffe2\CMakeFiles\cuda_cub_test.dir\__\aten\src\ATen\test\cuda_cub_test.cu.obj 2025-09-07T06:37:56.7308790Z cuda_cub_test.cu 2025-09-07T06:37:56.7309443Z tmpxft_00000af8_00000000-7_cuda_cub_test.cudafe1.cpp 2025-09-07T06:37:56.7311767Z [7183/7565] Building CXX object caffe2\CMakeFiles\cuda_dlconvertor_test.dir\__\aten\src\ATen\test\cuda_dlconvertor_test.cpp.obj 2025-09-07T06:37:57.8463010Z [7184/7565] Building CUDA object caffe2\CMakeFiles\cuda_integer_divider_test.dir\__\aten\src\ATen\test\cuda_integer_divider_test.cu.obj 2025-09-07T06:37:57.8464152Z cuda_integer_divider_test.cu 2025-09-07T06:37:57.8466317Z tmpxft_00001654_00000000-7_cuda_integer_divider_test.cudafe1.cpp 2025-09-07T06:37:57.8468035Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-09-07T06:37:57.8471233Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\xmemory(700): note: the template instantiation context (the oldest one first) is 2025-09-07T06:37:57.8478575Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(181): note: see reference to class template instantiation 'IntDividerTester' being compiled 2025-09-07T06:37:57.8488850Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(86): note: while compiling class template member function 'void IntDividerTester::addTestCase(Value,Value,int)' 2025-09-07T06:37:57.8493470Z with 2025-09-07T06:37:57.8494178Z [ 2025-09-07T06:37:57.8494664Z Value=unsigned __int64 2025-09-07T06:37:57.8495256Z ] 2025-09-07T06:37:57.8496840Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(188): note: see the first reference to 'IntDividerTester::addTestCase' in 'testUint64Divider' 2025-09-07T06:37:57.8499947Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(92): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::emplace_back(Value &,unsigned __int64 &&,int &)' being compiled 2025-09-07T06:37:57.8501958Z with 2025-09-07T06:37:57.8502265Z [ 2025-09-07T06:37:57.8502607Z _Ty=TestCase, 2025-09-07T06:37:57.8503124Z Value=unsigned __int64 2025-09-07T06:37:57.8503540Z ] 2025-09-07T06:37:57.8508125Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(858): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(Value &,unsigned __int64 &&,int &)' being compiled 2025-09-07T06:37:57.8510284Z with 2025-09-07T06:37:57.8510588Z [ 2025-09-07T06:37:57.8510928Z _Ty=TestCase, 2025-09-07T06:37:57.8511443Z Value=unsigned __int64 2025-09-07T06:37:57.8511879Z ] 2025-09-07T06:37:57.8514041Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(776): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_back_with_unused_capacity(Value &,unsigned __int64 &&,int &)' being compiled 2025-09-07T06:37:57.8516314Z with 2025-09-07T06:37:57.8516616Z [ 2025-09-07T06:37:57.8516948Z _Ty=TestCase, 2025-09-07T06:37:57.8517621Z Value=unsigned __int64 2025-09-07T06:37:57.8518067Z ] 2025-09-07T06:37:58.3917663Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include\vector(794): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,Value&,unsigned __int64,int&>(_Alloc &,_Objty *const ,Value &,unsigned __int64 &&,int &)' being compiled 2025-09-07T06:37:58.3919999Z with 2025-09-07T06:37:58.3920344Z [ 2025-09-07T06:37:58.3920761Z _Alloc=std::allocator>, 2025-09-07T06:37:58.3921441Z _Ty=TestCase, 2025-09-07T06:37:58.3934053Z Value=unsigned __int64, 2025-09-07T06:37:58.3934585Z _Objty=TestCase 2025-09-07T06:37:58.3935030Z ] 2025-09-07T06:37:58.3936118Z [7185/7565] Building CXX object caffe2\CMakeFiles\cuda_allocatorTraceTracker_test.dir\__\aten\src\ATen\test\cuda_allocatorTraceTracker_test.cpp.obj 2025-09-07T06:37:59.2553619Z [7186/7565] Building CXX object caffe2\CMakeFiles\cuda_stream_test.dir\__\aten\src\ATen\test\cuda_stream_test.cpp.obj 2025-09-07T06:37:59.9276116Z [7187/7565] Building CXX object caffe2\CMakeFiles\cuda_reportMemoryUsage_test.dir\__\aten\src\ATen\test\cuda_reportMemoryUsage_test.cpp.obj 2025-09-07T06:38:01.3269035Z [7188/7565] Building CUDA object caffe2\CMakeFiles\cuda_distributions_test.dir\__\aten\src\ATen\test\cuda_distributions_test.cu.obj 2025-09-07T06:38:01.4211554Z cuda_distributions_test.cu 2025-09-07T06:38:01.4212281Z tmpxft_000009f4_00000000-7_cuda_distributions_test.cudafe1.cpp 2025-09-07T06:38:01.4213349Z [7189/7565] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-09-07T06:38:01.5372182Z [7190/7565] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-09-07T06:38:01.6414017Z [7191/7565] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-09-07T06:38:01.8857334Z [7192/7565] Building CUDA object caffe2\CMakeFiles\cuda_generator_test.dir\__\aten\src\ATen\test\cuda_generator_test.cu.obj 2025-09-07T06:38:01.9518029Z cuda_generator_test.cu 2025-09-07T06:38:01.9518636Z tmpxft_00001560_00000000-7_cuda_generator_test.cudafe1.cpp 2025-09-07T06:38:01.9519754Z [7193/7565] Building CUDA object caffe2\CMakeFiles\cuda_half_test.dir\__\aten\src\ATen\test\cuda_half_test.cu.obj 2025-09-07T06:38:02.2760175Z cuda_half_test.cu 2025-09-07T06:38:02.2760533Z tmpxft_00001648_00000000-7_cuda_half_test.cudafe1.cpp 2025-09-07T06:38:02.2761209Z [7194/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-09-07T06:38:02.3828411Z [7195/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\source_range_test.cpp.obj 2025-09-07T06:38:03.1690508Z [7196/7565] Building CXX object caffe2\CMakeFiles\cuda_cudnn_test.dir\__\aten\src\ATen\test\cuda_cudnn_test.cpp.obj 2025-09-07T06:38:03.3035717Z [7197/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-09-07T06:38:03.3973852Z [7198/7565] Building CUDA object caffe2\CMakeFiles\cuda_optional_test.dir\__\aten\src\ATen\test\cuda_optional_test.cu.obj 2025-09-07T06:38:03.9885050Z cuda_optional_test.cu 2025-09-07T06:38:03.9885654Z tmpxft_00000348_00000000-7_cuda_optional_test.cudafe1.cpp 2025-09-07T06:38:03.9887100Z [7199/7565] Building CUDA object caffe2\CMakeFiles\cuda_packedtensoraccessor_test.dir\__\aten\src\ATen\test\cuda_packedtensoraccessor_test.cu.obj 2025-09-07T06:38:04.4022731Z cuda_packedtensoraccessor_test.cu 2025-09-07T06:38:04.4023308Z tmpxft_000015c8_00000000-7_cuda_packedtensoraccessor_test.cudafe1.cpp 2025-09-07T06:38:04.4023912Z [7200/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-09-07T06:38:04.5243969Z [7201/7565] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-09-07T06:38:04.7471476Z [7202/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-09-07T06:38:04.9726637Z [7203/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-09-07T06:38:05.3534194Z [7204/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-09-07T06:38:05.9811628Z [7205/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-09-07T06:38:06.3551849Z [7206/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-09-07T06:38:06.4816433Z [7207/7565] Building CUDA object caffe2\CMakeFiles\cuda_vectorized_test.dir\__\aten\src\ATen\test\cuda_vectorized_test.cu.obj 2025-09-07T06:38:06.6550384Z cuda_vectorized_test.cu 2025-09-07T06:38:06.6550902Z tmpxft_00001688_00000000-7_cuda_vectorized_test.cudafe1.cpp 2025-09-07T06:38:06.6551460Z [7208/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-09-07T06:38:06.9732596Z [7209/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-09-07T06:38:07.4751416Z [7210/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-09-07T06:38:07.6102368Z [7211/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-09-07T06:38:07.8208267Z [7212/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-09-07T06:38:07.8781017Z [7213/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-09-07T06:38:08.1146033Z [7214/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-09-07T06:38:08.5897087Z [7215/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-09-07T06:38:08.6696105Z [7216/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-09-07T06:38:08.8139253Z [7217/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-09-07T06:38:10.7552937Z [7218/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-09-07T06:38:10.7920312Z [7219/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-09-07T06:38:11.0405547Z [7220/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-09-07T06:38:11.5073427Z [7221/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-09-07T06:38:11.7231921Z [7222/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-09-07T06:38:12.0181997Z [7223/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-09-07T06:38:12.0323692Z [7224/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-09-07T06:38:12.1788049Z [7225/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-09-07T06:38:12.4565002Z [7226/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lexer.cpp.obj 2025-09-07T06:38:12.5148605Z [7227/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-09-07T06:38:12.6837918Z [7228/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-09-07T06:38:12.9708196Z [7229/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-09-07T06:38:13.6625994Z [7230/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-09-07T06:38:14.1506658Z [7231/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-09-07T06:38:14.4370583Z [7232/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-09-07T06:38:14.7168954Z [7233/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-09-07T06:38:15.1219199Z [7234/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-09-07T06:38:15.4146410Z [7235/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-09-07T06:38:15.6172575Z [7236/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-09-07T06:38:15.9111305Z [7237/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-09-07T06:38:15.9498478Z [7238/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-09-07T06:38:16.5039354Z [7239/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-09-07T06:38:16.6507697Z [7240/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-09-07T06:38:16.9217891Z [7241/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-09-07T06:38:17.4776749Z [7242/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-09-07T06:38:17.5702886Z [7243/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-09-07T06:38:17.6225529Z [7244/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-09-07T06:38:17.6445031Z [7245/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-09-07T06:38:17.9214317Z [7246/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_te.cpp.obj 2025-09-07T06:38:18.1093674Z [7247/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-09-07T06:38:18.4469833Z [7248/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-09-07T06:38:18.5806732Z [7249/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-09-07T06:38:18.5849456Z [7250/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-09-07T06:38:18.6050650Z [7251/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-09-07T06:38:18.9323397Z [7252/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-09-07T06:38:18.9493232Z [7253/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\common\main.cpp.obj 2025-09-07T06:38:19.6464367Z [7254/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_alias_analyzer.cpp.obj 2025-09-07T06:38:19.9164276Z [7255/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_frame.cpp.obj 2025-09-07T06:38:19.9336692Z [7256/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_planner.cpp.obj 2025-09-07T06:38:20.0034786Z [7257/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_file_util.cpp.obj 2025-09-07T06:38:20.5161821Z [7258/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph_signature.cpp.obj 2025-09-07T06:38:20.7387338Z [7259/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-09-07T06:38:20.7661464Z [7260/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_function_schema.cpp.obj 2025-09-07T06:38:20.8294821Z [7261/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-09-07T06:38:20.9111141Z [7262/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph.cpp.obj 2025-09-07T06:38:21.1233854Z [7263/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_layout_planner_algorithm.cpp.obj 2025-09-07T06:38:21.2142378Z [7264/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_mpmc_queue.cpp.obj 2025-09-07T06:38:21.5060069Z [7265/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_itree.cpp.obj 2025-09-07T06:38:21.6574753Z [7266/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_placement.cpp.obj 2025-09-07T06:38:21.9494494Z [7267/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_op_kernel.cpp.obj 2025-09-07T06:38:21.9827057Z [7268/7565] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-09-07T06:38:22.0671765Z [7269/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_c10_kernel.cpp.obj 2025-09-07T06:38:22.0864361Z [7270/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_pass_manager.cpp.obj 2025-09-07T06:38:22.4360864Z [7271/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_serialization.cpp.obj 2025-09-07T06:38:22.5729441Z [7272/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_tensor_meta.cpp.obj 2025-09-07T06:38:22.6239780Z [7273/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_static_dispatch_kernel_registration.cpp.obj 2025-09-07T06:38:23.0173423Z [7274/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_triton_kernel_manager_registration.cpp.obj 2025-09-07T06:38:23.1198113Z [7275/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-09-07T06:38:23.6009953Z [7276/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\ModelRunner.cpp.obj 2025-09-07T06:38:23.6122797Z [7277/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Graph.cpp.obj 2025-09-07T06:38:23.6146885Z [7278/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-09-07T06:38:23.8492182Z [7279/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_layout_planner.cpp.obj 2025-09-07T06:38:24.0031306Z [7280/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphPasses.cpp.obj 2025-09-07T06:38:24.3014996Z [7281/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-09-07T06:38:24.5048197Z [7282/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphUtils.cpp.obj 2025-09-07T06:38:24.5939493Z [7283/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\OpKernel.cpp.obj 2025-09-07T06:38:24.6069284Z [7284/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Serialization.cpp.obj 2025-09-07T06:38:24.6855606Z [7285/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\common\FileUtil.cpp.obj 2025-09-07T06:38:25.2738447Z [7286/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-09-07T06:38:25.3216182Z [7287/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_static_kernel_ops.cpp.obj 2025-09-07T06:38:25.3771272Z [7288/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_weights.cpp.obj 2025-09-07T06:38:25.4727192Z [7289/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-09-07T06:38:25.5072591Z [7290/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\detail\ITree.cpp.obj 2025-09-07T06:38:25.5631689Z [7291/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-09-07T06:38:25.6010346Z [7292/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-09-07T06:38:25.7094484Z [7293/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-09-07T06:38:25.8384422Z [7294/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-09-07T06:38:26.1403778Z [7295/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Weights.cpp.obj 2025-09-07T06:38:26.2737710Z [7296/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-09-07T06:38:26.4200781Z [7297/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-09-07T06:38:26.4646035Z [7298/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-09-07T06:38:26.5244501Z [7299/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-09-07T06:38:26.6638206Z [7300/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Executor.cpp.obj 2025-09-07T06:38:27.0626972Z [7301/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-09-07T06:38:27.2727644Z [7302/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-09-07T06:38:27.3458149Z [7303/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-09-07T06:38:27.3975311Z [7304/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-09-07T06:38:27.4936066Z [7305/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-09-07T06:38:27.6031204Z [7306/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-09-07T06:38:28.0197564Z [7307/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-09-07T06:38:28.2094040Z [7308/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\passes\SubgraphRewriter.cpp.obj 2025-09-07T06:38:28.2258021Z [7309/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\passes\pass_manager\GraphPasses.cpp.obj 2025-09-07T06:38:28.3148165Z [7310/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\passes\pass_manager\PassManager.cpp.obj 2025-09-07T06:38:28.3871638Z [7311/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\triton\CpuTritonKernelManager.cpp.obj 2025-09-07T06:38:28.9003363Z [7312/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-09-07T06:38:28.9247932Z [7313/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\triton\CudaTritonKernelManager.cpp.obj 2025-09-07T06:38:29.1703434Z [7314/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\DelegateExecutor.cpp.obj 2025-09-07T06:38:29.2717778Z [7315/7565] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-09-07T06:38:29.7331424Z [7316/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\TritonKernel.cpp.obj 2025-09-07T06:38:29.7393773Z [7317/7565] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-09-07T06:38:29.7636775Z [7318/7565] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-09-07T06:38:30.0804511Z [7319/7565] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-09-07T06:38:30.5703096Z [7320/7565] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\KernelHandlerRegistry.cpp.obj 2025-09-07T06:38:31.0986181Z [7321/7565] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-09-07T06:38:32.4354037Z [7322/7565] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-09-07T06:38:32.8659335Z [7323/7565] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooAsyncTest.dir\ProcessGroupGlooAsyncTest.cpp.obj 2025-09-07T06:38:33.0045157Z [7324/7565] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-09-07T06:38:33.0372589Z [7325/7565] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-09-07T06:38:33.2836840Z [7326/7565] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-09-07T06:38:33.7852532Z [7327/7565] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-09-07T06:38:34.2817284Z [7328/7565] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-09-07T06:38:34.6376329Z [7329/7565] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-09-07T06:38:35.5875484Z [7330/7565] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-09-07T06:38:36.1322183Z [7331/7565] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-09-07T06:38:36.2058365Z [7332/7565] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-09-07T06:38:36.2608136Z [7333/7565] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-09-07T06:38:36.4281372Z [7334/7565] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-09-07T06:38:36.7746545Z [7335/7565] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-09-07T06:38:38.1945288Z [7336/7565] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-09-07T06:38:38.7183285Z [7337/7565] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-09-07T06:38:39.3608442Z [7338/7565] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-09-07T06:38:39.3980135Z [7339/7565] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-09-07T06:38:39.4441346Z [7340/7565] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-09-07T06:38:39.7438838Z [7341/7565] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-09-07T06:38:39.9272821Z [7342/7565] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-09-07T06:38:41.3812783Z [7343/7565] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-09-07T06:38:41.8328935Z [7344/7565] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-09-07T06:38:42.5039323Z [7345/7565] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-09-07T06:38:42.6347667Z [7346/7565] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-09-07T06:38:42.7150980Z [7347/7565] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-09-07T06:38:42.9011245Z [7348/7565] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-09-07T06:38:43.2720497Z [7349/7565] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-09-07T06:38:44.6086662Z [7350/7565] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-09-07T06:38:45.0136204Z [7351/7565] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-09-07T06:38:45.6337332Z [7352/7565] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-09-07T06:38:45.7861820Z [7353/7565] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-09-07T06:38:45.8791408Z [7354/7565] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-09-07T06:38:45.9195214Z [7355/7565] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-09-07T06:38:46.3836887Z [7356/7565] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-09-07T06:38:47.8320822Z [7357/7565] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-09-07T06:38:48.1562874Z [7358/7565] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-09-07T06:38:48.6488644Z [7359/7565] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-09-07T06:38:48.9359126Z [7360/7565] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-09-07T06:38:49.0192907Z [7361/7565] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-09-07T06:38:49.0534213Z [7362/7565] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-09-07T06:38:49.3428808Z [7363/7565] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-09-07T06:38:49.4154954Z [7364/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-09-07T06:38:50.2857234Z [7365/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-09-07T06:38:50.3594174Z [7366/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-09-07T06:38:51.0102501Z [7367/7565] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-09-07T06:38:51.1479230Z [7368/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-09-07T06:38:51.2260789Z [7369/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-09-07T06:38:51.2693631Z [7370/7565] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-09-07T06:38:51.3827457Z [7371/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-09-07T06:38:51.6716482Z [7372/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-09-07T06:38:51.7256782Z [7373/7565] Building CXX object test_api\CMakeFiles\test_api.dir\parallel.cpp.obj 2025-09-07T06:38:51.8411773Z [7374/7565] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-09-07T06:38:52.0084706Z [7375/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-09-07T06:38:52.1205157Z [7376/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-09-07T06:38:52.2074909Z [7377/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-09-07T06:38:52.3744105Z [7378/7565] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-09-07T06:38:54.4985830Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-09-07T06:38:54.4987587Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-09-07T06:38:54.4988974Z [7379/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-09-07T06:38:54.7462533Z [7380/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-09-07T06:38:54.8353527Z [7381/7565] Linking C static library lib\cpuinfo_internals.lib 2025-09-07T06:38:54.9100669Z [7382/7565] Linking CXX static library lib\libprotobuf-lite.lib 2025-09-07T06:38:54.9803637Z [7383/7565] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-09-07T06:38:54.9940933Z [7384/7565] Linking CXX static library lib\gmock_main.lib 2025-09-07T06:38:55.0252462Z [7385/7565] Linking CXX static library lib\benchmark_main.lib 2025-09-07T06:38:55.0328886Z [7386/7565] Linking C static library lib\libjitprofiling.lib 2025-09-07T06:38:55.0681175Z [7387/7565] Linking CXX static library lib\fmt.lib 2025-09-07T06:38:55.3542318Z [7388/7565] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-09-07T06:38:55.4002155Z [7389/7565] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-09-07T06:38:55.4017219Z [7390/7565] Linking CXX executable bin\c10_AllocatorConfig_test.exe 2025-09-07T06:38:55.5945343Z [7391/7565] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-09-07T06:38:55.5960751Z [7392/7565] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-09-07T06:38:55.6046252Z [7393/7565] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-09-07T06:38:55.6056473Z [7394/7565] Linking CXX executable bin\c10_Device_test.exe 2025-09-07T06:38:55.6469132Z [7395/7565] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-09-07T06:38:55.7730072Z [7396/7565] Linking CXX executable bin\c10_Scalar_test.exe 2025-09-07T06:38:55.7741546Z [7397/7565] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-09-07T06:38:55.7900266Z [7398/7565] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-09-07T06:38:55.7911371Z [7399/7565] Linking CXX executable bin\c10_SymInt_test.exe 2025-09-07T06:38:55.8224016Z [7400/7565] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-09-07T06:38:55.8657372Z [7401/7565] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-09-07T06:38:55.9766606Z [7402/7565] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-09-07T06:38:55.9903196Z [7403/7565] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-09-07T06:38:56.0072563Z [7404/7565] Linking CXX executable bin\c10_cow_test.exe 2025-09-07T06:38:56.0219149Z [7405/7565] Linking CXX executable bin\c10_Bitset_test.exe 2025-09-07T06:38:56.0394414Z [7406/7565] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-09-07T06:38:56.1216292Z [7407/7565] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-09-07T06:38:56.1444944Z [7408/7565] Linking CXX executable bin\c10_Half_test.exe 2025-09-07T06:38:56.1482953Z [7409/7565] Linking CXX executable bin\c10_Enumerate_test.exe 2025-09-07T06:38:56.1928740Z [7410/7565] Linking CXX executable bin\c10_IntrusiveList_test.exe 2025-09-07T06:38:56.1939513Z [7411/7565] Linking CXX executable bin\c10_LeftRight_test.exe 2025-09-07T06:38:56.2102296Z [7412/7565] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-09-07T06:38:56.3784752Z [7413/7565] Linking CXX executable bin\c10_Semaphore_test.exe 2025-09-07T06:38:56.3801759Z [7414/7565] Linking CXX executable bin\c10_Synchronized_test.exe 2025-09-07T06:38:56.3811826Z [7415/7565] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-09-07T06:38:56.3985583Z [7416/7565] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-09-07T06:38:56.4122029Z [7417/7565] Linking CXX executable bin\c10_TypeList_test.exe 2025-09-07T06:38:56.4159915Z [7418/7565] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-09-07T06:38:56.5650625Z [7419/7565] Linking CXX executable bin\c10_bfloat16_test.exe 2025-09-07T06:38:56.5661310Z [7420/7565] Linking CXX executable bin\c10_accumulate_test.exe 2025-09-07T06:38:56.5991694Z [7421/7565] Linking CXX executable bin\c10_bit_cast_test.exe 2025-09-07T06:38:56.6001557Z [7422/7565] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-09-07T06:38:56.6150891Z [7423/7565] Linking CXX executable bin\c10_complex_test.exe 2025-09-07T06:38:56.6315059Z [7424/7565] Linking CXX executable bin\c10_complex_math_test.exe 2025-09-07T06:38:56.7652760Z [7425/7565] Linking CXX executable bin\c10_error_test.exe 2025-09-07T06:38:56.7663484Z [7426/7565] Linking CXX executable bin\c10_exception_test.exe 2025-09-07T06:38:56.7813779Z [7427/7565] Linking CXX executable bin\c10_generic_math_test.exe 2025-09-07T06:38:56.7983836Z [7428/7565] Linking CXX executable bin\c10_irange_test.exe 2025-09-07T06:38:56.8586392Z [7429/7565] Linking CXX executable bin\c10_flags_test.exe 2025-09-07T06:38:56.8720936Z [7430/7565] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-09-07T06:38:56.9275644Z [7431/7565] Linking CXX executable bin\c10_lazy_test.exe 2025-09-07T06:38:56.9420786Z [7432/7565] Linking CXX executable bin\c10_logging_test.exe 2025-09-07T06:38:56.9919705Z [7433/7565] Linking CXX executable bin\c10_optional_test.exe 2025-09-07T06:38:57.0049853Z [7434/7565] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-09-07T06:38:57.0988520Z [7435/7565] Linking CXX executable bin\c10_registry_test.exe 2025-09-07T06:38:57.1373261Z [7436/7565] Linking CXX executable bin\c10_ssize_test.exe 2025-09-07T06:38:57.1386807Z [7437/7565] Linking CXX executable bin\c10_string_util_test.exe 2025-09-07T06:38:57.1723638Z [7438/7565] Linking CXX executable bin\c10_small_vector_test.exe 2025-09-07T06:38:57.2028585Z [7439/7565] Linking CXX executable bin\c10_tempfile_test.exe 2025-09-07T06:38:57.2038580Z [7440/7565] Linking CXX executable bin\c10_string_view_test.exe 2025-09-07T06:38:57.2959985Z [7441/7565] Linking CXX executable bin\c10_typeid_test.exe 2025-09-07T06:38:57.3423258Z [7442/7565] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-09-07T06:38:57.3819087Z [7443/7565] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe 2025-09-07T06:38:57.3949060Z [7444/7565] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_stream.exe 2025-09-07T06:38:57.3972568Z [7445/7565] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_1_var_test.exe 2025-09-07T06:38:57.3994516Z [7446/7565] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_from_2_processes.exe 2025-09-07T06:38:57.4630901Z [7447/7565] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe 2025-09-07T06:38:57.5493247Z [7448/7565] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe 2025-09-07T06:38:57.5796603Z [7449/7565] Linking CXX executable bin\c10_cuda_CUDATest.exe 2025-09-07T06:38:57.6321129Z [7450/7565] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe 2025-09-07T06:38:57.6360541Z [7451/7565] Linking C shared library bin\torch_global_deps.dll 2025-09-07T06:38:57.7530046Z [7452/7565] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-09-07T06:38:57.7692479Z [7453/7565] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-09-07T06:38:57.7835839Z [7454/7565] Linking C executable sleef\bin\addSuffix.exe 2025-09-07T06:38:57.8416339Z [7455/7565] Linking CXX shared library bin\caffe2_nvrtc.dll 2025-09-07T06:38:57.8730313Z [7456/7565] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-09-07T06:38:59.2478843Z [7457/7565] Linking C static library lib\microkernels-all.lib 2025-09-07T06:43:09.9547462Z [7458/7565] Linking CXX shared library bin\torch_cpu.dll 2025-09-07T06:43:10.4587538Z [7459/7565] Linking CXX executable bin\BackoffTest.exe 2025-09-07T06:43:10.4606877Z [7460/7565] Linking CXX executable bin\FileStoreTest.exe 2025-09-07T06:43:10.4608648Z [7461/7565] Linking CXX executable bin\TCPStoreTest.exe 2025-09-07T06:43:45.4175994Z [7462/7565] Linking CXX shared library bin\torch_cuda.dll 2025-09-07T06:43:45.5890616Z [7463/7565] Linking CXX shared library bin\torch.dll 2025-09-07T06:43:45.6274351Z [7464/7565] Linking CXX shared library bin\c10d_cuda_test.dll 2025-09-07T06:43:45.8614923Z [7465/7565] Linking CXX shared library bin\shm.dll 2025-09-07T06:43:46.0279747Z [7466/7565] Linking CXX executable bin\Dimname_test.exe 2025-09-07T06:43:46.3191208Z [7467/7565] Linking CXX shared library bin\jitbackend_test.dll 2025-09-07T06:43:46.4164351Z [7468/7565] Linking CXX executable bin\Dict_test.exe 2025-09-07T06:43:46.5612555Z [7469/7565] Linking CXX shared library bin\backend_with_compiler.dll 2025-09-07T06:43:46.6128336Z [7470/7565] Linking CXX executable bin\MaybeOwned_test.exe 2025-09-07T06:43:46.8160644Z [7471/7565] Linking CXX executable bin\NamedTensor_test.exe 2025-09-07T06:43:46.9786556Z [7472/7565] Linking CXX executable bin\apply_utils_test.exe 2025-09-07T06:43:47.1145893Z [7473/7565] Linking CXX executable bin\atest.exe 2025-09-07T06:43:47.1611607Z [7474/7565] Linking CXX executable bin\basic.exe 2025-09-07T06:43:47.2662125Z [7475/7565] Linking CXX executable bin\broadcast_test.exe 2025-09-07T06:43:47.4386469Z [7476/7565] Linking CXX executable bin\cpu_allocator_test.exe 2025-09-07T06:43:47.9257718Z [7477/7565] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-09-07T06:43:48.0089687Z [7478/7565] Linking CXX executable bin\cpu_generator_test.exe 2025-09-07T06:43:48.1401559Z [7479/7565] Linking CXX executable bin\dlconvertor_test.exe 2025-09-07T06:43:48.4746685Z [7480/7565] Linking CXX executable bin\extension_backend_test.exe 2025-09-07T06:43:48.4934541Z [7481/7565] Linking CXX executable bin\half_test.exe 2025-09-07T06:43:48.8450159Z [7482/7565] Linking CXX executable bin\ivalue_test.exe 2025-09-07T06:43:48.8873209Z [7483/7565] Linking CXX executable bin\lazy_tensor_test.exe 2025-09-07T06:43:48.9337971Z [7484/7565] Linking CXX executable bin\math_kernel_test.exe 2025-09-07T06:43:49.2837815Z [7485/7565] Linking CXX executable bin\memory_format_test.exe 2025-09-07T06:43:49.3285714Z [7486/7565] Linking CXX executable bin\memory_overlapping_test.exe 2025-09-07T06:43:49.3360418Z [7487/7565] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-09-07T06:43:49.5175067Z [7488/7565] Linking CXX executable bin\cpu_rng_test.exe 2025-09-07T06:43:49.6380708Z [7489/7565] Linking CXX executable bin\operator_name_test.exe 2025-09-07T06:43:49.7671981Z [7490/7565] Linking CXX executable bin\native_test.exe 2025-09-07T06:43:49.7683996Z [7491/7565] Linking CXX executable bin\operators_test.exe 2025-09-07T06:43:49.9171771Z [7492/7565] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-09-07T06:43:50.3032849Z [7493/7565] Linking CXX executable bin\pow_test.exe 2025-09-07T06:43:50.3053267Z [7494/7565] Linking CXX executable bin\reduce_ops_test.exe 2025-09-07T06:43:50.3074877Z [7495/7565] Linking CXX executable bin\quantized_test.exe 2025-09-07T06:43:50.3253246Z [7496/7565] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-09-07T06:43:50.4853544Z [7497/7565] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-09-07T06:43:50.4895087Z [7498/7565] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-09-07T06:43:50.6383153Z [7499/7565] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-09-07T06:43:50.7733505Z [7500/7565] Linking CXX executable bin\StorageUtils_test.exe 2025-09-07T06:43:50.8267547Z [7501/7565] Linking CXX executable bin\scalar_tensor_test.exe 2025-09-07T06:43:50.8355468Z [7502/7565] Linking CXX executable bin\stride_properties_test.exe 2025-09-07T06:43:50.8527618Z [7503/7565] Linking CXX executable bin\scalar_test.exe 2025-09-07T06:43:51.1915553Z [7504/7565] Linking CXX executable bin\test_parallel.exe 2025-09-07T06:43:51.2610808Z [7505/7565] Linking CXX executable bin\type_ptr_test.exe 2025-09-07T06:43:51.3113872Z [7506/7565] Linking CXX executable bin\thread_init_test.exe 2025-09-07T06:43:51.3349589Z [7507/7565] Linking CXX executable bin\undefined_tensor_test.exe 2025-09-07T06:43:51.3942864Z [7508/7565] Linking CXX executable bin\verify_api_visibility.exe 2025-09-07T06:43:51.5417790Z [7509/7565] Linking CXX executable bin\type_test.exe 2025-09-07T06:43:51.9509962Z [7510/7565] Linking CXX executable bin\weakref_test.exe 2025-09-07T06:43:51.9630410Z [7511/7565] Linking CXX executable bin\xla_tensor_test.exe 2025-09-07T06:43:51.9850999Z [7512/7565] Linking CXX executable bin\wrapdim_test.exe 2025-09-07T06:43:51.9862463Z [7513/7565] Linking CXX executable bin\tensor_iterator_test.exe 2025-09-07T06:43:52.0497618Z [7514/7565] Linking CXX executable bin\legacy_vmap_test.exe 2025-09-07T06:43:52.1337991Z [7515/7565] Linking CXX executable bin\IListRef_test.exe 2025-09-07T06:43:52.6247976Z [7516/7565] Linking CXX executable bin\List_test.exe 2025-09-07T06:43:52.6265901Z [7517/7565] Linking CXX executable bin\KernelFunction_test.exe 2025-09-07T06:43:52.7070372Z [7518/7565] Linking CXX executable bin\kernel_stackbased_test.exe 2025-09-07T06:43:52.9457608Z [7519/7565] Linking CXX executable bin\CppSignature_test.exe 2025-09-07T06:43:53.0937797Z [7520/7565] Linking CXX executable bin\backend_fallback_test.exe 2025-09-07T06:43:53.2140002Z [7521/7565] Linking CXX executable bin\op_allowlist_test.exe 2025-09-07T06:43:53.6314848Z [7522/7565] Linking CXX executable bin\kernel_function_test.exe 2025-09-07T06:43:53.9376613Z [7523/7565] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-09-07T06:43:54.0663745Z [7524/7565] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-09-07T06:43:54.0815143Z [7525/7565] Linking CXX executable bin\cuda_allocator_test.exe 2025-09-07T06:43:54.0826640Z [7526/7565] Linking CXX executable bin\inline_container_test.exe 2025-09-07T06:43:54.2943576Z [7527/7565] Linking CXX executable bin\cuda_apply_test.exe 2025-09-07T06:43:54.4380803Z [7528/7565] Linking CXX executable bin\kernel_lambda_test.exe 2025-09-07T06:43:54.6138087Z [7529/7565] Linking CXX executable bin\cuda_atomic_ops_test.exe 2025-09-07T06:43:54.6652263Z [7530/7565] Linking CXX executable bin\cuda_complex_math_test.exe 2025-09-07T06:43:54.7262847Z [7531/7565] Linking CXX executable bin\cuda_caching_host_allocator_test.exe 2025-09-07T06:43:54.8321149Z [7532/7565] Linking CXX executable bin\cuda_complex_test.exe 2025-09-07T06:43:54.8818997Z [7533/7565] Linking CXX executable bin\cuda_cub_test.exe 2025-09-07T06:43:54.9893922Z [7534/7565] Linking CXX executable bin\cuda_device_test.exe 2025-09-07T06:43:55.0569820Z [7535/7565] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-09-07T06:43:55.2617170Z [7536/7565] Linking CXX executable bin\cuda_exchange_device_test.exe 2025-09-07T06:43:55.4511636Z [7537/7565] Linking CXX executable bin\cuda_dlconvertor_test.exe 2025-09-07T06:43:55.5075865Z [7538/7565] Linking CXX executable bin\cuda_distributions_test.exe 2025-09-07T06:43:55.5236367Z [7539/7565] Linking CXX executable bin\cuda_integer_divider_test.exe 2025-09-07T06:43:55.5421117Z [7540/7565] Linking CXX executable bin\cuda_generator_test.exe 2025-09-07T06:43:55.5583629Z [7541/7565] Linking CXX executable bin\cuda_half_test.exe 2025-09-07T06:43:55.8522968Z [7542/7565] Linking CXX executable bin\cuda_allocatorTraceTracker_test.exe 2025-09-07T06:43:55.9096454Z [7543/7565] Linking CXX executable bin\cuda_vectorized_test.exe 2025-09-07T06:43:55.9116341Z [7544/7565] Linking CXX executable bin\cuda_optional_test.exe 2025-09-07T06:43:55.9273498Z [7545/7565] Linking CXX executable bin\cuda_packedtensoraccessor_test.exe 2025-09-07T06:43:55.9338366Z [7546/7565] Linking CXX executable bin\cuda_reportMemoryUsage_test.exe 2025-09-07T06:43:55.9680348Z [7547/7565] Linking CXX executable bin\cuda_stream_test.exe 2025-09-07T06:43:56.2324796Z [7548/7565] Linking CXX shared library bin\aoti_custom_ops.dll 2025-09-07T06:43:56.2919479Z [7549/7565] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-09-07T06:43:56.5921879Z [7550/7565] Linking CXX executable bin\ProcessGroupGlooAsyncTest.exe 2025-09-07T06:43:56.5934422Z [7551/7565] Linking CXX executable bin\cuda_cudnn_test.exe 2025-09-07T06:43:56.8521825Z [7552/7565] Linking CXX executable bin\parallel_benchmark.exe 2025-09-07T06:43:56.9586530Z [7553/7565] Linking CXX executable bin\test_nativert.exe 2025-09-07T06:43:57.1757337Z [7554/7565] Linking CXX executable bin\test_lazy.exe 2025-09-07T06:43:57.8913955Z [7555/7565] Linking CXX executable bin\test_api.exe 2025-09-07T06:43:58.1362304Z [7556/7565] Linking CXX shared library bin\torchbind_test.dll 2025-09-07T06:43:59.2245629Z [7557/7565] Linking CXX executable bin\test_jit.exe 2025-09-07T06:44:00.0935336Z [7558/7565] Linking CXX executable bin\op_registration_test.exe 2025-09-07T06:44:14.3376920Z [7559/7565] Linking CXX shared library bin\torch_python.dll 2025-09-07T06:44:14.5717841Z [7560/7565] Linking CXX shared module functorch\functorch.pyd 2025-09-07T06:44:14.5726669Z [7561/7565] Linking CXX shared library bin\nnapi_backend.dll 2025-09-07T06:44:14.5735317Z [7561/7565] Install the project... 2025-09-07T06:44:14.5962658Z -- Install configuration: "Release" 2025-09-07T06:45:12.1055072Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-09-07T06:45:12.1599646Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\config\_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-09-07T06:45:12.1600474Z !! 2025-09-07T06:45:12.1600625Z 2025-09-07T06:45:12.1600764Z ******************************************************************************** 2025-09-07T06:45:12.1601655Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-09-07T06:45:12.1602354Z 2025-09-07T06:45:12.1602577Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-09-07T06:45:12.1603071Z or your builds will no longer be supported. 2025-09-07T06:45:12.1603305Z 2025-09-07T06:45:12.1603750Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-09-07T06:45:12.1604361Z ******************************************************************************** 2025-09-07T06:45:12.1604597Z 2025-09-07T06:45:12.1604680Z !! 2025-09-07T06:45:12.1604916Z corresp(dist, value, root_dir) 2025-09-07T06:45:12.4366429Z -- Checkout nccl release tag: v2.27.5-1 2025-09-07T06:45:12.4403677Z running bdist_wheel 2025-09-07T06:45:13.9925958Z running build 2025-09-07T06:45:13.9926273Z running build_py 2025-09-07T06:45:14.0031273Z creating build\lib.win-amd64-cpython-39\functorch 2025-09-07T06:45:14.0036327Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-09-07T06:45:14.0058168Z creating build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0061193Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0102725Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0126377Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0170855Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0216632Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0238309Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0250008Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0261092Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0307096Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0336302Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0348756Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0359787Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0376779Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0396399Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0408387Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0420266Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0438112Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0444320Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.0469594Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.1804995Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.1817604Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.1843722Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.1859106Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.1969844Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.1986844Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2019272Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2060297Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2073022Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2085144Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2098644Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2104799Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2144911Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2226377Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2249021Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2253459Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2644330Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2681415Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2694806Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.2700549Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.3021975Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.3042446Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.3055807Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.3068346Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:14.3249339Z creating build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3252354Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3265670Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3284667Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3354271Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3373913Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3399816Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3425596Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3444878Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3457190Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3485436Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3496618Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3563936Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3582062Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3600509Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3612743Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-09-07T06:45:14.3620542Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-09-07T06:45:14.3623970Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-09-07T06:45:14.3637676Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-09-07T06:45:14.3640701Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-09-07T06:45:14.3659898Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-09-07T06:45:14.3673283Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-09-07T06:45:14.3679474Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-09-07T06:45:14.3706231Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-09-07T06:45:14.3720043Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-09-07T06:45:14.3723034Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-09-07T06:45:14.3735335Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-09-07T06:45:14.3747220Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-09-07T06:45:14.3761072Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-09-07T06:45:14.3774152Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-09-07T06:45:14.3779571Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-09-07T06:45:14.3784855Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-09-07T06:45:14.3797782Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-09-07T06:45:14.3800515Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-09-07T06:45:14.3806952Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-09-07T06:45:14.3809835Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-09-07T06:45:14.3817246Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-09-07T06:45:14.3820012Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-09-07T06:45:14.3826745Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-09-07T06:45:14.3839458Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-09-07T06:45:14.3851201Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-09-07T06:45:14.3854456Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-09-07T06:45:14.3861676Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-09-07T06:45:14.3864636Z copying torch\accelerator\memory.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-09-07T06:45:14.3876306Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-09-07T06:45:14.3897316Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-09-07T06:45:14.3910524Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-09-07T06:45:14.3914927Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-09-07T06:45:14.3935248Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-09-07T06:45:14.3954852Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-09-07T06:45:14.3961705Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-09-07T06:45:14.3964472Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-09-07T06:45:14.3980065Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.3983191Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.3995898Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4008729Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4035338Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4082342Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4132451Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4144973Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4169778Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4203040Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4215894Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4241635Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4253380Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-09-07T06:45:14.4273364Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-09-07T06:45:14.4276223Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-09-07T06:45:14.4289924Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-09-07T06:45:14.4292785Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-09-07T06:45:14.4304589Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-09-07T06:45:14.4317800Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-09-07T06:45:14.4338833Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-09-07T06:45:14.4341912Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-09-07T06:45:14.4353788Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-09-07T06:45:14.4359415Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-09-07T06:45:14.4362127Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-09-07T06:45:14.4378623Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4381475Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4394115Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4413876Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4433141Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4445945Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4478927Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4501478Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4514405Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4532158Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4544861Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4551100Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4563800Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4585231Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4598272Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4618511Z copying torch\cuda\_pin_memory_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4632157Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4652925Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4666761Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-09-07T06:45:14.4711622Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4715109Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4727447Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4745745Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4768368Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4781037Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4814596Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4916180Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4929184Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4935541Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4948523Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4969685Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.4997104Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5010165Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5023615Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5036551Z copying torch\distributed\_C_stubs.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5048921Z copying torch\distributed\_dist2.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5061840Z copying torch\distributed\_distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5075097Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5102249Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5115177Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5127379Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5169862Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-09-07T06:45:14.5203741Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5207498Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5220133Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5265954Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5288780Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5304658Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5316558Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5331307Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5353370Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5366017Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5379664Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5391330Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5403820Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5415767Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5448568Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5468876Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5480981Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5493586Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5505973Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5518704Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5531038Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5543647Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5556200Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5578510Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5598500Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5610875Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5623679Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5637031Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5649661Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5662275Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5675589Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5694741Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5706919Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5728553Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5741546Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5753550Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5765252Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5778185Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5794011Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5829025Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5840506Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5852267Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5864377Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5895308Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5907158Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5919219Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5942753Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5966949Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5980296Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-09-07T06:45:14.5998004Z creating build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6001114Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6007296Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6019883Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6032573Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6076763Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6240464Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6382913Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6421474Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6441435Z copying torch\export\_leakage_detection_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6454279Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6465518Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6477780Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6490148Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6515409Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6561724Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6583338Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6602802Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6615443Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-09-07T06:45:14.6636916Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-09-07T06:45:14.6640374Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-09-07T06:45:14.6679712Z creating build\lib.win-amd64-cpython-39\torch\func 2025-09-07T06:45:14.6683667Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-09-07T06:45:14.6693808Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-09-07T06:45:14.6698409Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-09-07T06:45:14.6724330Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.6727670Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.6740311Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.6746368Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7010437Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7043997Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7066962Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7086443Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7119187Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7139752Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7160263Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7181827Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7201103Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7215024Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7227705Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7246641Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7258956Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7271430Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7307272Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7318886Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-09-07T06:45:14.7362679Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7365659Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7383760Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7408941Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7420757Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7441956Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7454340Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7466272Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7478609Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7490925Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7503616Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7516359Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7529031Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7541788Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7547653Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7560336Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7579291Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7591763Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7597653Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7609807Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7627992Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7654088Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7695543Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7707893Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7749704Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7761946Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7796169Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:14.7809234Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-09-07T06:45:14.7812173Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-09-07T06:45:14.7881005Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-09-07T06:45:14.7894007Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-09-07T06:45:14.7941588Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-09-07T06:45:14.7982678Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-09-07T06:45:14.7995623Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-09-07T06:45:14.7998701Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-09-07T06:45:14.8016726Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-09-07T06:45:14.8019539Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-09-07T06:45:14.8031189Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-09-07T06:45:14.8043174Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-09-07T06:45:14.8056149Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-09-07T06:45:14.8059008Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-09-07T06:45:14.8076669Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-09-07T06:45:14.8088545Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-09-07T06:45:14.8102575Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-09-07T06:45:14.8105320Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-09-07T06:45:14.8117819Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-09-07T06:45:14.8139961Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-09-07T06:45:14.8157734Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-09-07T06:45:14.8170277Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-09-07T06:45:14.8199296Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-09-07T06:45:14.9277520Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-09-07T06:45:14.9280231Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-09-07T06:45:14.9301999Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9305008Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9317070Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9515511Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9629758Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9641407Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9670361Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9712367Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9725421Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:14.9739084Z creating build\lib.win-amd64-cpython-39\torch\numa 2025-09-07T06:45:14.9742258Z copying torch\numa\binding.py -> build\lib.win-amd64-cpython-39\torch\numa 2025-09-07T06:45:14.9772737Z copying torch\numa\__init__.py -> build\lib.win-amd64-cpython-39\torch\numa 2025-09-07T06:45:14.9782333Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9785294Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9797339Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9809220Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9814700Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9830548Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9836183Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9842376Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9854045Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9859933Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9865794Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9871562Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9883687Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9889571Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9895507Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9901697Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9907659Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9913356Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9919058Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9924529Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9936679Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9952543Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9965386Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-09-07T06:45:14.9999143Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0002214Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0028543Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0048359Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0077282Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0098336Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0117999Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0137886Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0167449Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0222427Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0243601Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0280527Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0300791Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0326349Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0346730Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0372942Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0387075Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0413287Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0434299Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0446859Z copying torch\optim\_muon.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0458793Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-09-07T06:45:15.0474281Z creating build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0477749Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0489885Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0502159Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0529388Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0540577Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0590026Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0608305Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0625654Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0637522Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0649711Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0661016Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0672490Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0684590Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0696283Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0708399Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-09-07T06:45:15.0725203Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0729633Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0744554Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0772600Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0778936Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0813684Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0842986Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0856700Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-09-07T06:45:15.0877750Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0880990Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0894321Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0901025Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0923565Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0936203Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0948911Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0961001Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0978869Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.0999184Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1011466Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1017715Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1029502Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1060535Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1061323Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1070845Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1089548Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-09-07T06:45:15.1103442Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-09-07T06:45:15.1106379Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-09-07T06:45:15.1115452Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-09-07T06:45:15.1117384Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-09-07T06:45:15.1139060Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-09-07T06:45:15.1158745Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-09-07T06:45:15.1180363Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-09-07T06:45:15.1227486Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-09-07T06:45:15.1695720Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-09-07T06:45:15.1717319Z creating build\lib.win-amd64-cpython-39\torch\special 2025-09-07T06:45:15.1720349Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-09-07T06:45:15.1751940Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-09-07T06:45:15.1756339Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-09-07T06:45:15.1796074Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-09-07T06:45:15.1814778Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-09-07T06:45:15.1827154Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-09-07T06:45:15.1873846Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.1876719Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.1895944Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.1915442Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.1955115Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.1978479Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2011381Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2228789Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2240837Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2252826Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2266443Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2292611Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2305465Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2318592Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2338614Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2344511Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2362244Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2375267Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2399508Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2411559Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2424623Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2437473Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2465582Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2478547Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2491707Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2505697Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2523750Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2668362Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2681449Z copying torch\utils\_dtype_abbrs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2693993Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2706034Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2726079Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2748259Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2760343Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2780001Z copying torch\utils\_helion.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2785931Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2798398Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2804328Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2822319Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2848405Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2888748Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2900222Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2905923Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2928163Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2940357Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2945993Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2964192Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:15.2977780Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-09-07T06:45:15.2980997Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-09-07T06:45:15.2993484Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-09-07T06:45:15.3006384Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-09-07T06:45:15.3018473Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-09-07T06:45:15.3031443Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-09-07T06:45:15.3043638Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-09-07T06:45:15.3079988Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-09-07T06:45:15.3083324Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-09-07T06:45:15.3097532Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-09-07T06:45:15.3101087Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-09-07T06:45:15.3115439Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-09-07T06:45:15.3143809Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-09-07T06:45:15.3150708Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-09-07T06:45:15.3154293Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-09-07T06:45:15.3243517Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-09-07T06:45:15.3255780Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-09-07T06:45:15.3279575Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-09-07T06:45:15.3307184Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-09-07T06:45:15.3310139Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-09-07T06:45:15.3322604Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-09-07T06:45:15.3335734Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3338874Z copying torch\_dynamo\aot_compile.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3350988Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3363306Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3411634Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3423054Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3434407Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3466037Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3478655Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3519015Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3530989Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3549737Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3588607Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3601359Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3612946Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3651464Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3678023Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3697967Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3710489Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3757175Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3777384Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3833564Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3855405Z copying torch\_dynamo\functional_export.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3874394Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3885897Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3904490Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3923486Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.3941663Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4027988Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4040363Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4052683Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4065048Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4078236Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4277401Z copying torch\_dynamo\package.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4304124Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4334020Z copying torch\_dynamo\precompile_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4346870Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4360228Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4372403Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4403773Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4436474Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4469665Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4556784Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4580154Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4598790Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4620755Z copying torch\_dynamo\test_dont_skip_tracing_functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4640994Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4653804Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4729104Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4741750Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4821477Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4847144Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:15.4866685Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.4871094Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.4912247Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.4926437Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.4959372Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.4989267Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.5002115Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.5035314Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.5055496Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.5068200Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-09-07T06:45:15.5085987Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.5089144Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.5134786Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.5706233Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6564102Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6590909Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6604646Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6618558Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6632330Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6645076Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6658774Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6713865Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6725918Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6748054Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6770101Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6831386Z copying torch\_functorch\predispatch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6842640Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6861980Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6868034Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6879911Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6900388Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6924406Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6947330Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-09-07T06:45:15.6959618Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.6963507Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.6976132Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7000620Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7035661Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7047045Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7066954Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7079777Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7093024Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7106024Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7144612Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7156528Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7168263Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7187909Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7209026Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7221787Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7234949Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7262894Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7276811Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7295970Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7309053Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7354137Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7386380Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7421040Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7434179Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7445969Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-09-07T06:45:15.7469585Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7472894Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7485272Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7497817Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7531701Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7552280Z copying torch\_inductor\await_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7565625Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7579106Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7600224Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7683899Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7724068Z copying torch\_inductor\comms_debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7737215Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7760415Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7774095Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7807494Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7863677Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7882811Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7902587Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7915460Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7953500Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.7972114Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8024388Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8051677Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8108111Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8120560Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8132374Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8157878Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8182791Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8322872Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8339730Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8353382Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8366212Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8378608Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8398363Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8424672Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8437108Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8500836Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8506460Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8520354Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8557067Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8708249Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8722372Z copying torch\_inductor\kernel_inputs.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8736924Z copying torch\_inductor\kernel_template_choice.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8752467Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8790818Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8899125Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8926015Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8938011Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.8970229Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9003410Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9016556Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9042542Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9061288Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9080802Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9126571Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9157305Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9171182Z copying torch\_inductor\remote_gemm_autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9176915Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9279629Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9345312Z copying torch\_inductor\shape_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9371238Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9401400Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9415426Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9429138Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9449753Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9472862Z copying torch\_inductor\tiling_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9494026Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9513269Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9581209Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9594626Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9614186Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9626172Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:15.9647182Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9650388Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9662391Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9674861Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9680378Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9732598Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9751838Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9765435Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9785836Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9795010Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9808381Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9814305Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-09-07T06:45:15.9836013Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9839148Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9851679Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9877477Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9890664Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9920007Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9932301Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9961106Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9985047Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:15.9997271Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:16.0016548Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-09-07T06:45:16.0023957Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-09-07T06:45:16.0027278Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-09-07T06:45:16.0038906Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-09-07T06:45:16.0050970Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-09-07T06:45:16.0083787Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-09-07T06:45:16.0104938Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-09-07T06:45:16.0124353Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0127386Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0142206Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0153969Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0173099Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0184662Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0220079Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0232060Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0244407Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0256679Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0291915Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0306372Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0329301Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0348581Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0365394Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0384536Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0395861Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0416554Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-09-07T06:45:16.0424610Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-09-07T06:45:16.0428121Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-09-07T06:45:16.0445745Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-09-07T06:45:16.0456941Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-09-07T06:45:16.0468736Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-09-07T06:45:16.0481016Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-09-07T06:45:16.0540379Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-09-07T06:45:16.0637513Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-09-07T06:45:16.0704234Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-09-07T06:45:16.0745948Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-09-07T06:45:16.0749043Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-09-07T06:45:16.0777351Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-09-07T06:45:16.0790508Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-09-07T06:45:16.0892573Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-09-07T06:45:16.0895802Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-09-07T06:45:16.0909427Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-09-07T06:45:16.0922386Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-09-07T06:45:16.0939634Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.0942714Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.0971384Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.1039580Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.1059616Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.1087761Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.1134792Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.1154929Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.1168453Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-09-07T06:45:16.1175983Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-09-07T06:45:16.1178959Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-09-07T06:45:16.1185374Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-09-07T06:45:16.1188817Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-09-07T06:45:16.1203672Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-09-07T06:45:16.1206727Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-09-07T06:45:16.1233414Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-09-07T06:45:16.1261593Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-09-07T06:45:16.1270266Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-09-07T06:45:16.1274710Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-09-07T06:45:16.1289109Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-09-07T06:45:16.1299921Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1303142Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1329784Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1342646Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1365710Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1404652Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1425020Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1439456Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1453683Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1484443Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1510699Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1523979Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1537094Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1555396Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1568379Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1589490Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1602637Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1616757Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1630724Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-09-07T06:45:16.1644983Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-09-07T06:45:16.1648444Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-09-07T06:45:16.1662608Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-09-07T06:45:16.1665855Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-09-07T06:45:16.1680171Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-09-07T06:45:16.1683055Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-09-07T06:45:16.1691169Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-09-07T06:45:16.1705441Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-09-07T06:45:16.1727148Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-09-07T06:45:16.1746646Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-09-07T06:45:16.1750037Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-09-07T06:45:16.1757646Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-09-07T06:45:16.1760633Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-09-07T06:45:16.1773778Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-09-07T06:45:16.1781229Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-09-07T06:45:16.1783997Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-09-07T06:45:16.1790880Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-09-07T06:45:16.1793749Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-09-07T06:45:16.1801663Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:16.1804884Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:16.1832766Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:16.1844720Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:16.1867913Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:16.1884969Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:16.1889410Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:16.1898037Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:16.1902603Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:16.1922186Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:16.1935639Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:16.1949057Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:16.1961966Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:16.1979204Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:16.1982642Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:16.1995794Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:16.2003668Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-09-07T06:45:16.2006934Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-09-07T06:45:16.2028618Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-09-07T06:45:16.2032463Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-09-07T06:45:16.2045841Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-09-07T06:45:16.2059699Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-09-07T06:45:16.2071689Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-09-07T06:45:16.2079799Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-09-07T06:45:16.2083174Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-09-07T06:45:16.2095902Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-09-07T06:45:16.2103973Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-09-07T06:45:16.2107288Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-09-07T06:45:16.2128065Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-09-07T06:45:16.2148062Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-09-07T06:45:16.2154663Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-09-07T06:45:16.2157473Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-09-07T06:45:16.2166339Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2169434Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2182181Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2201545Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2228402Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2240772Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2275713Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2288139Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2300396Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2312781Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2333948Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2348706Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-09-07T06:45:16.2364833Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-09-07T06:45:16.2379606Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-09-07T06:45:16.2389321Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:16.2392888Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:16.2412573Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:16.2425032Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:16.2458137Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:16.2472240Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:16.2475335Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:16.2488175Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:16.2500588Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:16.2521049Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:16.2534537Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:16.2548008Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:16.2554866Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-09-07T06:45:16.2557970Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-09-07T06:45:16.2571160Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-09-07T06:45:16.2594429Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-09-07T06:45:16.2601260Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-09-07T06:45:16.2604331Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-09-07T06:45:16.2616326Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-09-07T06:45:16.2624648Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2628318Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2654948Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2809100Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2829664Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2841286Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2880101Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2892557Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2905041Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2930092Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2943171Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-09-07T06:45:16.2950341Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-09-07T06:45:16.2953390Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-09-07T06:45:16.2965673Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-09-07T06:45:16.2976932Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-09-07T06:45:16.3002660Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-09-07T06:45:16.3009494Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-09-07T06:45:16.3024757Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-09-07T06:45:16.3037246Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-09-07T06:45:16.3049551Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-09-07T06:45:16.3071650Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-09-07T06:45:16.3084115Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-09-07T06:45:16.3090586Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-09-07T06:45:16.3094065Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-09-07T06:45:16.3101044Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-09-07T06:45:16.3104847Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-09-07T06:45:16.3247925Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-09-07T06:45:16.3254552Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-09-07T06:45:16.3258286Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-09-07T06:45:16.3270951Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-09-07T06:45:16.3278595Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:16.3447772Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:16.3460408Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:16.3473977Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:16.3496242Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:16.3504444Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3507946Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3604953Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3617118Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3649380Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3661313Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3673389Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3692966Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3716005Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:16.3723659Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-09-07T06:45:16.3727346Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-09-07T06:45:16.3734666Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:16.3738747Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:16.3752053Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:16.3764889Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:16.3783260Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3788110Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3813295Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3835397Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3848333Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3882437Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3902154Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3914119Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3926732Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3940477Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3953059Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3971814Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.3990529Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-09-07T06:45:16.4005324Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4008434Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4041018Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4103687Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4123904Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4138432Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4162410Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4197846Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4204873Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4217731Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4230877Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4243675Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4327528Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4340874Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4353623Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4371916Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4397215Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4423263Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4448051Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4480725Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-09-07T06:45:16.4489550Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4492747Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4505181Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4517513Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4535769Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4553512Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4566104Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4586183Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4612303Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4631688Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4656582Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4669003Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-09-07T06:45:16.4676524Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4679849Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4691983Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4704418Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4727734Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4740482Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4781669Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4803808Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4838393Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4851243Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-09-07T06:45:16.4860083Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:16.4863152Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:16.4903571Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:16.4929847Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:16.4952793Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:16.4979859Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:16.4986063Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-09-07T06:45:16.4989276Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-09-07T06:45:16.5008669Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-09-07T06:45:16.5017148Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-09-07T06:45:16.5020224Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-09-07T06:45:16.5033439Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-09-07T06:45:16.5045534Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-09-07T06:45:16.5058989Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-09-07T06:45:16.5061561Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-09-07T06:45:16.5068070Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-09-07T06:45:16.5070941Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-09-07T06:45:16.5092154Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-09-07T06:45:16.5095057Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-09-07T06:45:16.5107002Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-09-07T06:45:16.5126246Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-09-07T06:45:16.5129163Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-09-07T06:45:16.5142182Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-09-07T06:45:16.5154927Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-09-07T06:45:16.5161340Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-09-07T06:45:16.5164073Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-09-07T06:45:16.5176840Z creating build\lib.win-amd64-cpython-39\torch\backends\miopen 2025-09-07T06:45:16.5179688Z copying torch\backends\miopen\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\miopen 2025-09-07T06:45:16.5192597Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-09-07T06:45:16.5195300Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-09-07T06:45:16.5209450Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-09-07T06:45:16.5212275Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-09-07T06:45:16.5226495Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-09-07T06:45:16.5230238Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-09-07T06:45:16.5255566Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-09-07T06:45:16.5258411Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-09-07T06:45:16.5272086Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-09-07T06:45:16.5275310Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-09-07T06:45:16.5282428Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-09-07T06:45:16.5285545Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-09-07T06:45:16.5301027Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-09-07T06:45:16.5305242Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-09-07T06:45:16.5328332Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-09-07T06:45:16.5332560Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-09-07T06:45:16.5361634Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-09-07T06:45:16.5367912Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-09-07T06:45:16.5371751Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-09-07T06:45:16.5385414Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-09-07T06:45:16.5388423Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-09-07T06:45:16.5401265Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-09-07T06:45:16.5407291Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-09-07T06:45:16.5410054Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-09-07T06:45:16.5422195Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-09-07T06:45:16.5469437Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-09-07T06:45:16.5475238Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-09-07T06:45:16.5478636Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-09-07T06:45:16.5490792Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-09-07T06:45:16.5502097Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-09-07T06:45:16.5515294Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-09-07T06:45:16.5518370Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-09-07T06:45:16.5531074Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-09-07T06:45:16.5536603Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-09-07T06:45:16.5548683Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-09-07T06:45:16.5561167Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-09-07T06:45:16.5564491Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-09-07T06:45:16.5577032Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-09-07T06:45:16.5583598Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-09-07T06:45:16.5586518Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-09-07T06:45:16.5606291Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5609927Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5622663Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5643553Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5670906Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5694193Z copying torch\distributed\checkpoint\hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5708147Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5721442Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5727656Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5747806Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5761204Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5781480Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5803787Z copying torch\distributed\checkpoint\quantized_hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5817938Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5832678Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5852348Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5890547Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5924217Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5937260Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5957723Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5970697Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.5997848Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6010986Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6024205Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6047385Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6071671Z copying torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6092816Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6105799Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6118132Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6131117Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6144629Z copying torch\distributed\checkpoint\_hf_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6157579Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6171149Z copying torch\distributed\checkpoint\_pg_transport.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6201941Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6214792Z copying torch\distributed\checkpoint\_state_dict_stager.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6228302Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6363493Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6387329Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6392909Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-09-07T06:45:16.6406913Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-09-07T06:45:16.6409852Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-09-07T06:45:16.6430558Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-09-07T06:45:16.6454280Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6457704Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6477799Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6532287Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6551782Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6577097Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6605239Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6618608Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6631276Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6657381Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6719361Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6731971Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6759157Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6771915Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6819026Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6858363Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6881232Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6910210Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6925635Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6941698Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6955783Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6979797Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-09-07T06:45:16.6993318Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-09-07T06:45:16.6996876Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-09-07T06:45:16.7008936Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-09-07T06:45:16.7015954Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-09-07T06:45:16.7019649Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-09-07T06:45:16.7032808Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-09-07T06:45:16.7053830Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7056956Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7069419Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7086992Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7110586Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7123918Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7138392Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7151478Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7164590Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7178118Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7196060Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7209168Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7222610Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7361736Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7374686Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7415869Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7421803Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:16.7437216Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7440249Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7459768Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7526796Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7559561Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7587798Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7593968Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7628884Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7641260Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7654174Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7667191Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-09-07T06:45:16.7676837Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7680229Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7707556Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7732979Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7745634Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7768402Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7788644Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7801639Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7815943Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7829392Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7841937Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-09-07T06:45:16.7857080Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.7860246Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.7866819Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.7887264Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.7925761Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.7949676Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.7969887Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.7988653Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8007249Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8105440Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8125848Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8152866Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8165187Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8178118Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8197647Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-09-07T06:45:16.8220106Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-09-07T06:45:16.8223511Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-09-07T06:45:16.8235070Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-09-07T06:45:16.8248750Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-09-07T06:45:16.8261599Z copying torch\distributed\_composable\replicate_with_fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-09-07T06:45:16.8283749Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-09-07T06:45:16.8291716Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8294577Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8307550Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8325174Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8337359Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8350475Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8375759Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8390801Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-09-07T06:45:16.8400524Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-09-07T06:45:16.8403726Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-09-07T06:45:16.8410663Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-09-07T06:45:16.8414152Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-09-07T06:45:16.8433750Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-09-07T06:45:16.8437061Z copying torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-09-07T06:45:16.8464435Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-09-07T06:45:16.8522600Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-09-07T06:45:16.8525515Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-09-07T06:45:16.8531101Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-09-07T06:45:16.8543817Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-09-07T06:45:16.8558249Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8561265Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8572777Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8584925Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8610411Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8633217Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8646010Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8673396Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8686684Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8740882Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8767156Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8780273Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-09-07T06:45:16.8788694Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8792060Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8814508Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8826704Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8853278Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8866650Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8879437Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8898295Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8924996Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8938199Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:16.8952603Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:16.8966630Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:16.8980806Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:16.8993351Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:16.9015054Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:16.9021139Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-09-07T06:45:16.9024329Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-09-07T06:45:16.9036363Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-09-07T06:45:16.9042381Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-09-07T06:45:16.9045494Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-09-07T06:45:16.9058444Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-09-07T06:45:16.9065975Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-09-07T06:45:16.9069093Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-09-07T06:45:16.9089048Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-09-07T06:45:16.9096139Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-09-07T06:45:16.9100127Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-09-07T06:45:16.9112858Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-09-07T06:45:16.9120771Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9124437Z copying torch\distributed\checkpoint\_experimental\barriers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9138419Z copying torch\distributed\checkpoint\_experimental\builder.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9151613Z copying torch\distributed\checkpoint\_experimental\checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9165588Z copying torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9189088Z copying torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9202408Z copying torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9215205Z copying torch\distributed\checkpoint\_experimental\config.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:16.9227705Z copying torch\distributed\checkpoint\_experimental\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:17.0357824Z copying torch\distributed\checkpoint\_experimental\types.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:17.0358988Z copying torch\distributed\checkpoint\_experimental\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:17.0360036Z copying torch\distributed\checkpoint\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:17.0360806Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-09-07T06:45:17.0361516Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-09-07T06:45:17.0362237Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-09-07T06:45:17.0362916Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-09-07T06:45:17.0363746Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-09-07T06:45:17.0364591Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-09-07T06:45:17.0365381Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-09-07T06:45:17.0366120Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-09-07T06:45:17.0367044Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-09-07T06:45:17.0367797Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:17.0368585Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:17.0369628Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:17.0370642Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:17.0371677Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:17.0372452Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0373173Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0374138Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0375298Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0376306Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0377312Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0378324Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0379302Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0380228Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0381256Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0382236Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0383222Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0384191Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-09-07T06:45:17.0384889Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-09-07T06:45:17.0385549Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-09-07T06:45:17.0386470Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-09-07T06:45:17.0392138Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-09-07T06:45:17.0420171Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-09-07T06:45:17.0442610Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-09-07T06:45:17.0456944Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-09-07T06:45:17.0460913Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-09-07T06:45:17.0473822Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-09-07T06:45:17.0487276Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-09-07T06:45:17.0500657Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-09-07T06:45:17.0507005Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-09-07T06:45:17.0535836Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-09-07T06:45:17.0544245Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-09-07T06:45:17.0548325Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-09-07T06:45:17.0584524Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-09-07T06:45:17.0618366Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-09-07T06:45:17.0638960Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-09-07T06:45:17.0653011Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:17.0667481Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:17.0685361Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:17.0691495Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:17.0705826Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:17.0709562Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:17.0722332Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:17.0740646Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:17.0748488Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-09-07T06:45:17.0752157Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-09-07T06:45:17.0764831Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-09-07T06:45:17.0777332Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-09-07T06:45:17.0791586Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0794866Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0807704Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0827844Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0856290Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0868871Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0894777Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0921528Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0947354Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0967470Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:17.0974278Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-09-07T06:45:17.0977400Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-09-07T06:45:17.0997036Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-09-07T06:45:17.1003243Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-09-07T06:45:17.1006073Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-09-07T06:45:17.1024940Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-09-07T06:45:17.1030891Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-09-07T06:45:17.1034106Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-09-07T06:45:17.1047605Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-09-07T06:45:17.1053645Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-09-07T06:45:17.1056826Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-09-07T06:45:17.1069042Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-09-07T06:45:17.1075946Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-09-07T06:45:17.1079247Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-09-07T06:45:17.1105013Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-09-07T06:45:17.1118430Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-09-07T06:45:17.1132241Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-09-07T06:45:17.1161513Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-09-07T06:45:17.1164767Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-09-07T06:45:17.1198148Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-09-07T06:45:17.1211738Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-09-07T06:45:17.1241699Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-09-07T06:45:17.1261820Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-09-07T06:45:17.1276229Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1279827Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1292531Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1312103Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1325196Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1340477Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1362085Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1406329Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1418998Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-09-07T06:45:17.1427820Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1430800Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1450078Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1461789Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1473761Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1502838Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1515160Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1542353Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1569480Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1594216Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1606749Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1634604Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1654532Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-09-07T06:45:17.1661856Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-09-07T06:45:17.1664990Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-09-07T06:45:17.1671111Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-09-07T06:45:17.1677958Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-09-07T06:45:17.1680959Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-09-07T06:45:17.1688052Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-09-07T06:45:17.1691147Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-09-07T06:45:17.1710566Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-09-07T06:45:17.1726776Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1730578Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1763376Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1776262Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1789357Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1807323Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1831398Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1852252Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1865009Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:17.1887408Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-09-07T06:45:17.1890264Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-09-07T06:45:17.1902314Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-09-07T06:45:17.1916870Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:17.1919969Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:17.1933863Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:17.1946440Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:17.1959843Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:17.1983370Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:17.1986624Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:17.1999850Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:17.2012618Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:17.2025736Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:17.2039450Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:17.2064714Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:17.2081525Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:17.2086560Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:17.3669540Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:17.3689611Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:17.3718147Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:17.3725281Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-09-07T06:45:17.3729085Z copying torch\export\experimental\_utils.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-09-07T06:45:17.3742212Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-09-07T06:45:17.3763945Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-09-07T06:45:17.3766500Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-09-07T06:45:17.3780868Z creating build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-09-07T06:45:17.3790129Z copying torch\export\pt2_archive\constants.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-09-07T06:45:17.3807880Z copying torch\export\pt2_archive\_package.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-09-07T06:45:17.3835628Z copying torch\export\pt2_archive\_package_weights.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-09-07T06:45:17.3848306Z copying torch\export\pt2_archive\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-09-07T06:45:17.3869757Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3873943Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3898196Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3909833Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3930185Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3953697Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3965178Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3976808Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.3993747Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4011339Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4023752Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4068186Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4092378Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4098647Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4111134Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4123764Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4273222Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4306507Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4319702Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4346874Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4365206Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4377195Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4396340Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4410709Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-09-07T06:45:17.4419403Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4422685Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4440581Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4452509Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4471094Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4491737Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4503769Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4685373Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4698281Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4710490Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4723139Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4750681Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4770730Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4790993Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4816227Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4836588Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4855035Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4879103Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4899418Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-09-07T06:45:17.4908565Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.4911744Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.4930520Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.4967345Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.4997890Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.5003553Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.5032307Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.5046454Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.5058395Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:17.5066026Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5069708Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5082126Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5112611Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5125323Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5142709Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5160160Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5172644Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5184956Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-09-07T06:45:17.5193830Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:17.5197179Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:17.5216739Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:17.5229639Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:17.5242261Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:17.5254791Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:17.5270006Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:17.5280499Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-09-07T06:45:17.5286322Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-09-07T06:45:17.5467019Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-09-07T06:45:17.5473075Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-09-07T06:45:17.5480379Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-09-07T06:45:17.5486744Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-09-07T06:45:17.5489604Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-09-07T06:45:17.5513648Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-09-07T06:45:17.5525052Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-09-07T06:45:17.5537876Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-09-07T06:45:17.5554560Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-09-07T06:45:17.5557652Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-09-07T06:45:17.5568985Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-09-07T06:45:17.5575618Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-09-07T06:45:17.5578525Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-09-07T06:45:17.5590052Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-09-07T06:45:17.5602411Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-09-07T06:45:17.5626963Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-09-07T06:45:17.5643783Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-09-07T06:45:17.5656257Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-09-07T06:45:17.5670825Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-09-07T06:45:17.5674538Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-09-07T06:45:17.5687113Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-09-07T06:45:17.5693834Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-09-07T06:45:17.5696768Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-09-07T06:45:17.5711670Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-09-07T06:45:17.5715022Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-09-07T06:45:17.5727929Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-09-07T06:45:17.5735233Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5738935Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5763420Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5776189Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5782168Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5795383Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5811879Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5824522Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5846256Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-09-07T06:45:17.5860239Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-09-07T06:45:17.5865076Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-09-07T06:45:17.5878651Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-09-07T06:45:17.5899395Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-09-07T06:45:17.5954563Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-09-07T06:45:17.5990575Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-09-07T06:45:17.5996706Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-09-07T06:45:17.5999497Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-09-07T06:45:17.6011788Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-09-07T06:45:17.6051609Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-09-07T06:45:17.6062391Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-09-07T06:45:17.6075366Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-09-07T06:45:17.6078298Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-09-07T06:45:17.6083815Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-09-07T06:45:17.6089487Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-09-07T06:45:17.6092475Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-09-07T06:45:17.6108760Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6111721Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6152113Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6164375Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6191619Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6213634Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6238962Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6280025Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6292457Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6310998Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6322563Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6335704Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6354998Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6370131Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6385943Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6440517Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6503973Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6523586Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6543506Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6555961Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6590917Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6681305Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6705488Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6736316Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6748904Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6766315Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6779362Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-09-07T06:45:17.6795163Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.6798374Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.6811567Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.6830145Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.6884624Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.6906099Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.7130259Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.7142628Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.7154717Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-09-07T06:45:17.7168096Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-09-07T06:45:17.7170893Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-09-07T06:45:17.7183845Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-09-07T06:45:17.7186968Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-09-07T06:45:17.7193757Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-09-07T06:45:17.7196935Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-09-07T06:45:17.7202263Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-09-07T06:45:17.7217102Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7220591Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7236078Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7249319Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7261740Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7273789Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7302108Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7322685Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7350290Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7384104Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7403679Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7417143Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7430557Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7449008Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7460574Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7473115Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7484934Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-09-07T06:45:17.7504009Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-09-07T06:45:17.7511711Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-09-07T06:45:17.7523777Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-09-07T06:45:17.7531109Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-09-07T06:45:17.7533854Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-09-07T06:45:17.7539429Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-09-07T06:45:17.7545888Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-09-07T06:45:17.7549048Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-09-07T06:45:17.7555572Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-09-07T06:45:17.7558335Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-09-07T06:45:17.7565178Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:17.7568263Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:17.7580526Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:17.7586137Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:17.7591798Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:17.7603742Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:17.7606533Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:17.7613745Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:17.7616859Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:17.7622911Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:17.7628899Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:17.7634805Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:17.7641717Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:17.7644550Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:17.7650195Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:17.7656696Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-09-07T06:45:17.7659416Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-09-07T06:45:17.7672381Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-09-07T06:45:17.7675330Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-09-07T06:45:17.7681184Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-09-07T06:45:17.7687450Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-09-07T06:45:17.7693499Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-09-07T06:45:17.7707246Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-09-07T06:45:17.7710651Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-09-07T06:45:17.7716990Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-09-07T06:45:17.7724571Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-09-07T06:45:17.7727662Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-09-07T06:45:17.7733684Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-09-07T06:45:17.7739879Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-09-07T06:45:17.7747430Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-09-07T06:45:17.7750206Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-09-07T06:45:17.7759173Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7762361Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7768836Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7774953Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7781180Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7787817Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7804256Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7811265Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7817561Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7829640Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7842713Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7848664Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-09-07T06:45:17.7863870Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-09-07T06:45:17.7871721Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-09-07T06:45:17.7880980Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:17.7884627Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:17.7893408Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:17.7901566Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:17.7914585Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:17.7931744Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-09-07T06:45:17.7934728Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-09-07T06:45:17.7940642Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-09-07T06:45:17.7947134Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-09-07T06:45:17.7953264Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-09-07T06:45:17.7959893Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-09-07T06:45:17.7965562Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-09-07T06:45:17.7981986Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.7985999Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.7997320Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8016150Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8033637Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8046986Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8067168Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8078962Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8091442Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8103516Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8123120Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-09-07T06:45:17.8130201Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-09-07T06:45:17.8133425Z copying torch\onnx\ops\_dtype_mappings.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-09-07T06:45:17.8145368Z copying torch\onnx\ops\_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-09-07T06:45:17.8157646Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-09-07T06:45:17.8169973Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-09-07T06:45:17.8190499Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-09-07T06:45:17.8193438Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-09-07T06:45:17.8205561Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-09-07T06:45:17.8214411Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8217789Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8230309Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8256408Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8269441Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8286013Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8291937Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8334669Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8346368Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8359625Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8373480Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8379194Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8385283Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8398881Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8410784Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8422854Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8441601Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8454325Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8468835Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8499642Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8512650Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8524587Z copying torch\onnx\_internal\exporter\_type_casting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8537362Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8549995Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-09-07T06:45:17.8557129Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-09-07T06:45:17.8560285Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-09-07T06:45:17.8572678Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-09-07T06:45:17.8584136Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-09-07T06:45:17.8594777Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8602847Z copying torch\onnx\_internal\torchscript_exporter\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8614753Z copying torch\onnx\_internal\torchscript_exporter\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8627091Z copying torch\onnx\_internal\torchscript_exporter\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8644130Z copying torch\onnx\_internal\torchscript_exporter\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8689657Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8715573Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8749013Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8761741Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8787649Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8800296Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8812183Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8824027Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8836866Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8849517Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8856197Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8891987Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8907103Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.8923372Z copying torch\onnx\_internal\torchscript_exporter\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.9031247Z copying torch\onnx\_internal\torchscript_exporter\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.9075408Z copying torch\onnx\_internal\torchscript_exporter\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.9093992Z copying torch\onnx\_internal\torchscript_exporter\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.9105109Z copying torch\onnx\_internal\torchscript_exporter\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.9117434Z copying torch\onnx\_internal\torchscript_exporter\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.9130738Z copying torch\onnx\_internal\torchscript_exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:17.9137573Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:17.9145462Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:17.9158617Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:17.9171131Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:17.9178990Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:17.9187242Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:17.9199657Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:17.9212615Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:17.9225575Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:17.9271052Z copying torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:17.9386982Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:17.9394193Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-09-07T06:45:17.9397614Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-09-07T06:45:17.9439967Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-09-07T06:45:17.9447196Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-09-07T06:45:17.9450038Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-09-07T06:45:17.9469549Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-09-07T06:45:17.9473053Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-09-07T06:45:17.9484758Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-09-07T06:45:17.9490421Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-09-07T06:45:17.9506192Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-09-07T06:45:17.9514393Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9517632Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9523206Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9528579Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9533961Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9539866Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9551237Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9563281Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9568976Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9581662Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9587591Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9599571Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9611012Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-09-07T06:45:17.9617645Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-09-07T06:45:17.9620750Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-09-07T06:45:17.9638662Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-09-07T06:45:17.9652418Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9660128Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9680307Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9699477Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9716135Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9735941Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9773851Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9814016Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9826357Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9839471Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9873584Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:17.9886964Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0562274Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0575902Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0681772Z copying torch\testing\_internal\common_mps.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0701603Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0784519Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0847780Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0866781Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0926884Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0946669Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.0962620Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1070272Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1089475Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1108273Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1120448Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1133089Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1145439Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1158226Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1164023Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1175503Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1187742Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1200520Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1219908Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1244900Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1269278Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1280471Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1292398Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1304087Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1316649Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1332234Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1344085Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1371405Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1384284Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-09-07T06:45:18.1391381Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-09-07T06:45:18.1394615Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-09-07T06:45:18.1403693Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-09-07T06:45:18.1408131Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-09-07T06:45:18.1416497Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-09-07T06:45:18.1424434Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-09-07T06:45:18.1437111Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1441845Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1456256Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1470200Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1495639Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1690088Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1702688Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1715258Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1760584Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1772640Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-09-07T06:45:18.1779448Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-09-07T06:45:18.1782629Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-09-07T06:45:18.2139622Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-09-07T06:45:18.2146507Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-09-07T06:45:18.2149584Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-09-07T06:45:18.2215999Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-09-07T06:45:18.2228539Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-09-07T06:45:18.2240291Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-09-07T06:45:18.2247893Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-09-07T06:45:18.2250978Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-09-07T06:45:18.2263903Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-09-07T06:45:18.2276201Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-09-07T06:45:18.2282322Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-09-07T06:45:18.2312728Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-09-07T06:45:18.2325253Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-09-07T06:45:18.2333093Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-09-07T06:45:18.2336703Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-09-07T06:45:18.2342958Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-09-07T06:45:18.2349184Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-09-07T06:45:18.2355618Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-09-07T06:45:18.2359087Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-09-07T06:45:18.2366975Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2370506Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2427273Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2441726Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2460316Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2473636Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2485538Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2592571Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2604512Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:18.2610593Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-09-07T06:45:18.2613474Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-09-07T06:45:18.2625786Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-09-07T06:45:18.2632245Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-09-07T06:45:18.2635748Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-09-07T06:45:18.2654721Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-09-07T06:45:18.2661020Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-09-07T06:45:18.2664382Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-09-07T06:45:18.2685201Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-09-07T06:45:18.2692129Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:18.2695533Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:18.2709702Z copying torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:18.2722933Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:18.2729852Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:18.2733512Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:18.2746716Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:18.2777188Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:18.2789614Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:18.2796181Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:18.2800019Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:18.2812420Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:18.2824949Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:18.2839837Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.2843202Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.2863182Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.2919285Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.2955174Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.2967812Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.2992529Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.3015460Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.3041169Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:18.3048266Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-09-07T06:45:18.3050873Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-09-07T06:45:18.3057412Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-09-07T06:45:18.3060439Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-09-07T06:45:18.3067939Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-09-07T06:45:18.3071079Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-09-07T06:45:18.3075960Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-09-07T06:45:18.3089351Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3092324Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3097973Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3137016Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3160782Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3177591Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3189184Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3200670Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3212251Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-09-07T06:45:18.3226574Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-09-07T06:45:18.3229666Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-09-07T06:45:18.3241011Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-09-07T06:45:18.3761319Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-09-07T06:45:18.3787995Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-09-07T06:45:18.3918585Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-09-07T06:45:18.3928530Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-09-07T06:45:18.3933275Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-09-07T06:45:18.3946745Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-09-07T06:45:18.3953673Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-09-07T06:45:18.3956814Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-09-07T06:45:18.4096650Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-09-07T06:45:18.4104285Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-09-07T06:45:18.4107540Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-09-07T06:45:18.4112957Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-09-07T06:45:18.4120685Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4123624Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4148628Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4172864Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4184780Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4202471Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4221986Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4230523Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4244016Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4256470Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-09-07T06:45:18.4263694Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-09-07T06:45:18.4267081Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-09-07T06:45:18.4286948Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-09-07T06:45:18.4293411Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-09-07T06:45:18.4296806Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-09-07T06:45:18.4309303Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-09-07T06:45:18.4317219Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4320251Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4353099Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4365863Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4378478Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4398198Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4417222Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4430469Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4444197Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4458634Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4484956Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-09-07T06:45:18.4492116Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-09-07T06:45:18.4495749Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-09-07T06:45:18.4507739Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-09-07T06:45:18.4519611Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-09-07T06:45:18.4532375Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-09-07T06:45:18.4538095Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-09-07T06:45:18.4554366Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-09-07T06:45:18.4561634Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:18.4565047Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:18.4578134Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:18.4591159Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:18.4604187Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:18.4622325Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:18.4633938Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:18.4642016Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4645309Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4659103Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4672508Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4685629Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4698797Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4718621Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4736823Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4756790Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4769129Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:18.4775991Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:18.4779677Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:18.4805954Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:18.4813129Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:18.4816580Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:18.4836366Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:18.4849825Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:18.4880362Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:18.4899055Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:18.4919013Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:18.4927889Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-09-07T06:45:18.4931251Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-09-07T06:45:18.4945607Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-09-07T06:45:18.4958550Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-09-07T06:45:18.4970449Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-09-07T06:45:18.4982205Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-09-07T06:45:18.4997989Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-09-07T06:45:18.5012126Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:18.5015378Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:18.5028387Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:18.5041062Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:18.5056977Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:18.5069322Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:18.5077793Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5080811Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5093735Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5106788Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5126875Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5142449Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5154385Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5166627Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5178924Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5190276Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5202262Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5214145Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5226466Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-09-07T06:45:18.5240379Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-09-07T06:45:18.5243641Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-09-07T06:45:18.5256640Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-09-07T06:45:18.5268913Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-09-07T06:45:18.5281478Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-09-07T06:45:18.5293800Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-09-07T06:45:18.5312005Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-09-07T06:45:18.5320425Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-09-07T06:45:18.5323789Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-09-07T06:45:18.5336630Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-09-07T06:45:18.5350873Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-09-07T06:45:18.5364204Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-09-07T06:45:18.5377413Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5380917Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5393998Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5407903Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5428744Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5455933Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5469427Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5482105Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5494012Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5499595Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5512021Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5524658Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-09-07T06:45:18.5532329Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5535492Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5548452Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5560470Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5572000Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5588741Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5600568Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5613139Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5624480Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5637485Z copying torch\_dynamo\polyfills\struct.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5643261Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5655632Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5667434Z copying torch\_dynamo\polyfills\_collections.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5758070Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-09-07T06:45:18.5771780Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-09-07T06:45:18.5774875Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-09-07T06:45:18.5801614Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-09-07T06:45:18.5820290Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-09-07T06:45:18.5838594Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-09-07T06:45:18.5848237Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.5852563Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.5872540Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6605192Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6662106Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6680564Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6712451Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6745699Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6764288Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6809007Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6871091Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6891467Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6903681Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6934973Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.6977360Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7011544Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7030644Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7042298Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7053994Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7091514Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7140121Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7160805Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7204467Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-09-07T06:45:18.7219665Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-09-07T06:45:18.7222810Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-09-07T06:45:18.7235778Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-09-07T06:45:18.7243682Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-09-07T06:45:18.7256068Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-09-07T06:45:18.7265066Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7268423Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7280492Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7292655Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7312187Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7324569Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7386809Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7406216Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7418420Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7431296Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7452270Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7469219Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7485241Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7501253Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7516242Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-09-07T06:45:18.7524019Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-09-07T06:45:18.7527231Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-09-07T06:45:18.7541106Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-09-07T06:45:18.7552573Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-09-07T06:45:18.7559200Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:18.7562182Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:18.7744958Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:18.7757760Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:18.7777685Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:18.7858415Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:18.7871257Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:18.7883882Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7887227Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7893272Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7905510Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7918849Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7930778Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7942646Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7954929Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7960781Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7973098Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7984835Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.7997579Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8010511Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8016255Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8022043Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8028068Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8033852Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8041110Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8047214Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8060716Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8067583Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8073348Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8275090Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8281434Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8288075Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8301375Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8308780Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8319984Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8326423Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8332760Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8339171Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8345608Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8352305Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8360301Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8366990Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8373343Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8387390Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8393551Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-09-07T06:45:18.8410319Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:18.8413556Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:18.8427584Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:18.8444019Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:18.8470221Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:18.8483018Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:18.8494779Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8498001Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8531224Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8556290Z copying torch\_functorch\_aot_autograd\descriptors.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8585102Z copying torch\_functorch\_aot_autograd\frontend_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8598423Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8617375Z copying torch\_functorch\_aot_autograd\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8629465Z copying torch\_functorch\_aot_autograd\graph_capture.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8648464Z copying torch\_functorch\_aot_autograd\graph_capture_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8679745Z copying torch\_functorch\_aot_autograd\graph_compile.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8716649Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8735362Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8747470Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8800945Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8832820Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8845174Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8868922Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8891977Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-09-07T06:45:18.8901090Z creating build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-09-07T06:45:18.8904725Z copying torch\_inductor\analysis\device_info.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-09-07T06:45:18.8917557Z copying torch\_inductor\analysis\profile_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-09-07T06:45:18.8937217Z copying torch\_inductor\analysis\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-09-07T06:45:18.8948998Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-09-07T06:45:18.8952730Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-09-07T06:45:18.8968174Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-09-07T06:45:18.8984258Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-09-07T06:45:18.9006140Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-09-07T06:45:18.9019821Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-09-07T06:45:18.9032101Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9035809Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9065986Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9246805Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9299592Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9405769Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9428084Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9457077Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9498501Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9517760Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9558819Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9570662Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9592036Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9613023Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9675624Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9702222Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9723257Z copying torch\_inductor\codegen\cpp_wrapper_mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9736621Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9749129Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9762294Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9783154Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9816903Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9837432Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9864438Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9876367Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9896977Z copying torch\_inductor\codegen\python_wrapper_mtia.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9909084Z copying torch\_inductor\codegen\segmented_tree.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9921501Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9972368Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:18.9994269Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0006664Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0099312Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0261642Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0275297Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0288404Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0361934Z copying torch\_inductor\codegen\wrapper_fxir.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0381536Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-09-07T06:45:19.0388251Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-09-07T06:45:19.0391463Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-09-07T06:45:19.0404277Z copying torch\_inductor\compile_worker\tracked_process_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-09-07T06:45:19.0417462Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-09-07T06:45:19.0429390Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-09-07T06:45:19.0442354Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-09-07T06:45:19.0458070Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0461142Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0479959Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0498745Z copying torch\_inductor\fx_passes\bucketing.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0517929Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0547637Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0563035Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0578772Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0592689Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0607715Z copying torch\_inductor\fx_passes\fsdp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0620687Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0647539Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0682252Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0708061Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0735378Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0781674Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0816475Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0829440Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0849159Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0888130Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0908114Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.0982096Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.1135489Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.1149528Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.1342323Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-09-07T06:45:19.1349594Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1352710Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1366893Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1387129Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1413126Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1426376Z copying torch\_inductor\kernel\mm_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1453516Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1466250Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-09-07T06:45:19.1476565Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-09-07T06:45:19.1481561Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-09-07T06:45:19.1490335Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-09-07T06:45:19.1505944Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-09-07T06:45:19.1515740Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1520193Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1541043Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1554173Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1566334Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1587392Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1599892Z copying torch\_inductor\runtime\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1612768Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1625255Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1659810Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1683358Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1694064Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1705647Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1722706Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1774865Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-09-07T06:45:19.1782797Z creating build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1785999Z copying torch\_inductor\template_heuristics\aten.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1797817Z copying torch\_inductor\template_heuristics\base.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1809612Z copying torch\_inductor\template_heuristics\contiguous_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1820958Z copying torch\_inductor\template_heuristics\decompose_k.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1842258Z copying torch\_inductor\template_heuristics\gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1848262Z copying torch\_inductor\template_heuristics\registry.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1860124Z copying torch\_inductor\template_heuristics\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1905048Z copying torch\_inductor\template_heuristics\triton_addmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1917388Z copying torch\_inductor\template_heuristics\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics 2025-09-07T06:45:19.1926176Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:19.1929491Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:19.1941757Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:19.1954414Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:19.1985709Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:19.2006490Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:19.2018826Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:19.2027698Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2030809Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2044072Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2056381Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2075406Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2096236Z copying torch\_inductor\codegen\cuda\cutlass_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2108123Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2120027Z copying torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2132404Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2152225Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2165033Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2204488Z copying torch\_inductor\codegen\cuda\serialization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2226893Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-09-07T06:45:19.2234548Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:19.2238044Z copying torch\_inductor\codegen\cutedsl\cutedsl_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:19.2252018Z copying torch\_inductor\codegen\cutedsl\cutedsl_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:19.2265148Z copying torch\_inductor\codegen\cutedsl\cutedsl_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:19.2290748Z copying torch\_inductor\codegen\cutedsl\cutedsl_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:19.2306932Z copying torch\_inductor\codegen\cutedsl\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:19.2314640Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia 2025-09-07T06:45:19.2318399Z copying torch\_inductor\codegen\mtia\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia 2025-09-07T06:45:19.2330253Z copying torch\_inductor\codegen\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia 2025-09-07T06:45:19.2338912Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2342458Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2362524Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2375386Z copying torch\_inductor\codegen\rocm\ck_tile_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2387714Z copying torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2563043Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2588823Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2600481Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2613127Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2624547Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2638821Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2657928Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2672822Z copying torch\_inductor\codegen\rocm\rocm_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2678747Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-09-07T06:45:19.2685139Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-09-07T06:45:19.2688334Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-09-07T06:45:19.2699324Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-09-07T06:45:19.2705833Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:19.2709333Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:19.2728458Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:19.2749491Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:19.2765331Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-09-07T06:45:19.2768216Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-09-07T06:45:19.2774337Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:19.2777503Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:19.2783661Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:19.2789543Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:19.2796107Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-09-07T06:45:19.2799171Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-09-07T06:45:19.2806039Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-09-07T06:45:19.2809225Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-09-07T06:45:19.2814928Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-09-07T06:45:19.2826532Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2829723Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2840396Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2851051Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2869991Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2881448Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2893868Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2906492Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2918858Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2931424Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.2958237Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3096233Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3121770Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3144751Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3167947Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3179822Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3191981Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3209992Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3221752Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3234357Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3255716Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3268591Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3281547Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3296443Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3309327Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3322503Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3335824Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3349447Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3363218Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:19.3371082Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-09-07T06:45:19.3374264Z copying torch\_inductor\kernel\flex\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-09-07T06:45:19.3510922Z copying torch\_inductor\kernel\flex\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-09-07T06:45:19.3530600Z copying torch\_inductor\kernel\flex\flex_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-09-07T06:45:19.3543409Z copying torch\_inductor\kernel\flex\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-09-07T06:45:19.3555701Z copying torch\_inductor\kernel\flex\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex 2025-09-07T06:45:19.3570261Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-09-07T06:45:19.3574015Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-09-07T06:45:19.3610678Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-09-07T06:45:19.3617804Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-09-07T06:45:19.3620624Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-09-07T06:45:19.3642592Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-09-07T06:45:19.3645397Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-09-07T06:45:19.3651803Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-09-07T06:45:19.3663955Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-09-07T06:45:19.3676849Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-09-07T06:45:19.3680329Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-09-07T06:45:19.3708401Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-09-07T06:45:19.3711855Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-09-07T06:45:19.3731519Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-09-07T06:45:19.3743987Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-09-07T06:45:19.3751467Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-09-07T06:45:19.3754995Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-09-07T06:45:19.3767491Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-09-07T06:45:19.3775516Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3779006Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3806317Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3825721Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3838761Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3850594Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3879250Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3885411Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3897139Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3931078Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3943812Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3963367Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3976625Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3991491Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-09-07T06:45:19.3998777Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-09-07T06:45:19.4002361Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-09-07T06:45:19.4140685Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-09-07T06:45:19.4152087Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-09-07T06:45:19.4163697Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-09-07T06:45:19.4196724Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-09-07T06:45:19.4215780Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-09-07T06:45:19.4229042Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-09-07T06:45:19.4238448Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-09-07T06:45:19.4251509Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-09-07T06:45:19.4257396Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-09-07T06:45:19.4273430Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-09-07T06:45:19.4276512Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-09-07T06:45:19.4289267Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-09-07T06:45:19.4302365Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-09-07T06:45:19.4309297Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-09-07T06:45:19.4312368Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-09-07T06:45:19.4326463Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-09-07T06:45:19.4346523Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-09-07T06:45:19.4367245Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-09-07T06:45:19.4373813Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-09-07T06:45:19.4377277Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-09-07T06:45:19.4389837Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-09-07T06:45:19.4402378Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-09-07T06:45:19.4415117Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-09-07T06:45:20.3414398Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:20.3455660Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:20.4590569Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-09-07T06:45:20.4595450Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4598466Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4609535Z copying torch\bin\ProcessGroupGlooAsyncTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4619884Z copying torch\bin\ProcessGroupGlooTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4640739Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4672243Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4682605Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4770754Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4827951Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4856537Z copying torch\bin\test_nativert.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-09-07T06:45:20.4883012Z creating build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.4886065Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.4896282Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.4907561Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.4918067Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.4991878Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5001607Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5012227Z copying torch\test\c10_AllocatorConfig_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5022589Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5032855Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5042484Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5052965Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5062658Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5072353Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5083279Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5093311Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5103013Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5115095Z copying torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.5125338Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7552760Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7565801Z copying torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7580506Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7592977Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7604376Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7614704Z copying torch\test\c10_cuda_CUDATest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7625042Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7645872Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7656560Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7667353Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7678143Z copying torch\test\c10_Enumerate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7688351Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7698306Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7708709Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7718945Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7740476Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7751501Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7761270Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7771512Z copying torch\test\c10_IntrusiveList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7781610Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7795630Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7813120Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7822899Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7854637Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7900663Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7911784Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7926089Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7940346Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7956638Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7968433Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7979804Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.7990788Z copying torch\test\c10_Semaphore_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8007241Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8017621Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8032851Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8043081Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8052405Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8062526Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8072316Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8082257Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8101268Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8111382Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8121227Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8131104Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8141313Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8151490Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8161288Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8171125Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8181882Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8207496Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8220640Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8235165Z copying torch\test\cuda_allocatorTraceTracker_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8246111Z copying torch\test\cuda_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8257766Z copying torch\test\cuda_apply_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8268626Z copying torch\test\cuda_atomic_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8280420Z copying torch\test\cuda_caching_host_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8291987Z copying torch\test\cuda_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8304567Z copying torch\test\cuda_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8315954Z copying torch\test\cuda_cub_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8327894Z copying torch\test\cuda_cudnn_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8339498Z copying torch\test\cuda_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8350605Z copying torch\test\cuda_distributions_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8364059Z copying torch\test\cuda_dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8375335Z copying torch\test\cuda_exchange_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8386293Z copying torch\test\cuda_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8398324Z copying torch\test\cuda_half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8420688Z copying torch\test\cuda_integer_divider_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8431576Z copying torch\test\cuda_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8443207Z copying torch\test\cuda_packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8454557Z copying torch\test\cuda_reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8465917Z copying torch\test\cuda_stream_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8477528Z copying torch\test\cuda_vectorized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8488764Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8500246Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8511181Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8521429Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8532128Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8543242Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8554081Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8564617Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8576872Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8587560Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8602151Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8626950Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8641005Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8653492Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8664697Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8674355Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8686605Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8700370Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8713931Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8724372Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8735763Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8745781Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8756043Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8766122Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8777109Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8788078Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8798323Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8808250Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8827975Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8857124Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8867375Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8878831Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8889363Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8900700Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8910849Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8921244Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8931613Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8941898Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8951931Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8963267Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8974257Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8984974Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.8995684Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.9007376Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.9018680Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.9041796Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.9053249Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.9066226Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-09-07T06:45:20.9082395Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:20.9097361Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:20.9111614Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:20.9133379Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:20.9146865Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-09-07T06:45:20.9153279Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:20.9166278Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:20.9192795Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9195828Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9208995Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9222616Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9228766Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9235140Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9253684Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9266277Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9285438Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9298203Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9311405Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9324025Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9336720Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9342980Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9349349Z copying torch\_C\_jit_tree_views.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9362563Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9375773Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9382204Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9395163Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9407596Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9414089Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9427156Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9439829Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9964522Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:20.9983979Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-09-07T06:45:21.0167570Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-09-07T06:45:21.0171196Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-09-07T06:45:21.0177498Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-09-07T06:45:21.0191677Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-09-07T06:45:21.0204985Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-09-07T06:45:21.0210844Z creating build\lib.win-amd64-cpython-39\torch\_C\_export 2025-09-07T06:45:21.0213873Z copying torch\_C\_export\pt2_archive_constants.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-09-07T06:45:21.0229532Z copying torch\_C\_export\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-09-07T06:45:21.0234588Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-09-07T06:45:21.0238191Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-09-07T06:45:21.0244150Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:21.0247133Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:21.0254082Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:21.0260203Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-09-07T06:45:21.0263736Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-09-07T06:45:21.0270775Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-09-07T06:45:21.0284174Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-09-07T06:45:21.0297388Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-09-07T06:45:21.0310313Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-09-07T06:45:21.0313454Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-09-07T06:45:21.0319639Z creating build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0322618Z copying torch\include\advisor-annotate.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0330543Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0338608Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0345355Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0352141Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0370396Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0377104Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0385019Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0392130Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0398967Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0405949Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0413053Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0419837Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0426269Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0433658Z copying torch\include\ittnotify-zca.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0440682Z copying torch\include\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0450601Z copying torch\include\jitprofiling.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0458619Z copying torch\include\libittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0465608Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0472660Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0480186Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0488518Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0498540Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:21.0507855Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0520063Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0527116Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0533925Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0540850Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0548961Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0565645Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0572311Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0578957Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0586273Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0592221Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0598701Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0605305Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0612003Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0620168Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0626934Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0633978Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0640608Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0648363Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0655095Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0673100Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0679452Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0686380Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0692992Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0699509Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0706251Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0712723Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0719920Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0726901Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0733247Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0751145Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0757341Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0764157Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0770533Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0777677Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0784503Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0791666Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0798901Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0804939Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0811314Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0817542Z copying torch\include\ATen\DTensorState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0824048Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0841092Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0847547Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0853982Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0861136Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0867858Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0874450Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0881994Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0890070Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0896880Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0903520Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0921567Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0927897Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0935246Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0942206Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0949030Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0963736Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0970800Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0978207Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0986558Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.0993541Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1020510Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1027629Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1035000Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1041927Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1048913Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1056461Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1063595Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1071838Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1083568Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1103411Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1111319Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1118834Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1125248Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1133658Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1141968Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1148825Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1155502Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1162100Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1168361Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1186234Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1192529Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1199225Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1240815Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1247774Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1276236Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1290731Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1297076Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1303542Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1309774Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1316292Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1322391Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1328529Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1334735Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1341161Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1347861Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1354609Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1361248Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1367150Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1373720Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1379760Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1391570Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1398788Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1406396Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1414395Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1421826Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1429487Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1436438Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1443655Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1450875Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1458804Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1466554Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1473445Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1480505Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1487397Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1494314Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1501572Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1508558Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1533064Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1540547Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-09-07T06:45:21.1558785Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1562138Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1569447Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1577082Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1586393Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1606131Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1613868Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1622229Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1629402Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1635771Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1642665Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1649058Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1655937Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1663193Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1669458Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1675885Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1682158Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1688841Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1695806Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1701990Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1756129Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1762173Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1768642Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1785464Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1791626Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1797924Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1804198Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1810647Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1818099Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1825167Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1831733Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1838424Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1844808Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1850996Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1874186Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1880610Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1887386Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1894091Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1901526Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1909939Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1916700Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1924600Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1937913Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1944441Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1951289Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1957965Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1974529Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1980969Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1987802Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.1994207Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2000682Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2007221Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2013804Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2020434Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2026905Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2033055Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2049707Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2056109Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2062261Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2068833Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2075417Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2081519Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2087856Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2095202Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2106299Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2120640Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2154151Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2180009Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2186760Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2193014Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2199591Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2205941Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2212419Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2218788Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2224963Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-09-07T06:45:21.2230561Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-09-07T06:45:21.2233495Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-09-07T06:45:21.2240072Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-09-07T06:45:21.2246418Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-09-07T06:45:21.2253106Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-09-07T06:45:21.2270370Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-09-07T06:45:21.2275934Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:21.2278795Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:21.2285487Z copying torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:21.2293009Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:21.2299598Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:21.2317223Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:21.2322427Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2325320Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2331746Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2339047Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2345855Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2362365Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2369032Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2375527Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-09-07T06:45:21.2380950Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-09-07T06:45:21.2384115Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-09-07T06:45:21.2391530Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-09-07T06:45:21.2397698Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-09-07T06:45:21.2404855Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-09-07T06:45:21.2422325Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-09-07T06:45:21.2425071Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-09-07T06:45:21.2431322Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-09-07T06:45:21.2437667Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-09-07T06:45:21.2443860Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2446861Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2453211Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2459783Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2466947Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2484984Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2491689Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2499621Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2506939Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2513946Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2520912Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2527815Z copying torch\include\ATen\cpu\vec\vec_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-09-07T06:45:21.2534147Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2537480Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2544781Z copying torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2552468Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2559632Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2577382Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2587834Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2598442Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:21.2607156Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:21.2611303Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:21.2618353Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:21.2626178Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:21.2633293Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:21.2652149Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:21.2660157Z copying torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:21.2665723Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2668688Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2674809Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2680823Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2687505Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2705033Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2711868Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2718853Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2725785Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2732679Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2739500Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2746807Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2753625Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2761296Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2767732Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:21.2774652Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2777776Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2784263Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2790810Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2807789Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2814943Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2822072Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2829209Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2835788Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2842607Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2849258Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2855896Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2863009Z copying torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2870229Z copying torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:21.2876436Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-09-07T06:45:21.2879481Z copying torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-09-07T06:45:21.2886712Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2889689Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2896199Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2905308Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2913170Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2931166Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2938073Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2945902Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2954126Z copying torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2961666Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2969967Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2977686Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:21.2984873Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.2987968Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.2994910Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3001993Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3008740Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3015842Z copying torch\include\ATen\cuda\CUDAConfig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3033426Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3040128Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3047058Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3054203Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3060835Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3068143Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3075591Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3083024Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3091501Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3101354Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3111169Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3118135Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3125767Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3133386Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3139744Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3156722Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3163574Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3169657Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3175935Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3182053Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3188503Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:21.3194567Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:21.3197491Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:21.3204658Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:21.3210924Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:21.3217174Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:21.3233250Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3236013Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3243631Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3250524Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3256875Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3273606Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3279956Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3286435Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-09-07T06:45:21.3292042Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-09-07T06:45:21.3295004Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-09-07T06:45:21.3301227Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-09-07T06:45:21.3307614Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-09-07T06:45:21.3313434Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-09-07T06:45:21.3353400Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-09-07T06:45:21.3363598Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-09-07T06:45:21.3369125Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3372056Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3378321Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3384735Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3401555Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3408614Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3415548Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3422822Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3430737Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3437689Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3444776Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3451700Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-09-07T06:45:21.3458050Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3461675Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3468645Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3475472Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3492511Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3499812Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3506994Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3520285Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3527197Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3534356Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3541295Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3548022Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3555386Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3562609Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-09-07T06:45:21.3569115Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-09-07T06:45:21.3573501Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-09-07T06:45:21.3580670Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-09-07T06:45:21.3588558Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-09-07T06:45:21.3609443Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-09-07T06:45:21.3617563Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-09-07T06:45:21.3621478Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-09-07T06:45:21.3627772Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-09-07T06:45:21.3630739Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-09-07T06:45:21.3637770Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-09-07T06:45:21.3644701Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-09-07T06:45:21.3651488Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-09-07T06:45:21.3665857Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-09-07T06:45:21.3672663Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-09-07T06:45:21.3677650Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3680545Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3686897Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3693348Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3701886Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3716981Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3723383Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3729928Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3735996Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3742303Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3749170Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3756162Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-09-07T06:45:21.3761736Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3764647Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3771132Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3777276Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3783547Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3801382Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3807569Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3814035Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3820453Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3826562Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3833194Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3839670Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3846015Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3852045Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3858870Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3865258Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3871602Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3877702Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3883869Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3890528Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3897284Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3904080Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3921800Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3929466Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3936482Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3943276Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3950679Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3957918Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3965090Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3971899Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3979072Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3985524Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.3992458Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4009527Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4016382Z copying torch\include\ATen\native\GroupedMMUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4023397Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4030879Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4038168Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4045390Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4052490Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4059540Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4066417Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4073629Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4080828Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4100702Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4111141Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4118844Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4128464Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4135666Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4142198Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4149495Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4155811Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4163017Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4169233Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4186361Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4194768Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4200516Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4206613Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4212918Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4219233Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4225565Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4231636Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4238134Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4244983Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4252028Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4279423Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4286451Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4293477Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4300405Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4307343Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4314388Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4322502Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4329524Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4336885Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4343964Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4351101Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4368372Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4375337Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4383353Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4390703Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4397742Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4405090Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4412076Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4419419Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4426870Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4444465Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4451403Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4459109Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4466956Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4473372Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4480260Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4486591Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4493040Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4499753Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4506361Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4512878Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4519681Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4526518Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4548018Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-09-07T06:45:21.4553959Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:21.4559874Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:21.4566828Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:21.4574305Z copying torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:21.4580262Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4583296Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4590194Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4598125Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4605387Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4622383Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4628534Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4635443Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4642227Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4648489Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4654740Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4661313Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4668335Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4674736Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4681055Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4687251Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4693883Z copying torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4700247Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4706832Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4712995Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4719423Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4735631Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4741887Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4748637Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4755468Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4762021Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4768171Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4774808Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4781170Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4787828Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4794941Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4812473Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4819587Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4825663Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-09-07T06:45:21.4831401Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4834306Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4841039Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4847559Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4853668Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4870488Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4877434Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4905274Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4913100Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4921494Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4929856Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4936762Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4943768Z copying torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4950701Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4957654Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4964701Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4972288Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4979292Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4986285Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.4993106Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.5006369Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.6275765Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.6282015Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.6288185Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.6294827Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.6301010Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.6307387Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:21.6313121Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-09-07T06:45:21.6316007Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-09-07T06:45:21.6321976Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-09-07T06:45:21.6328011Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-09-07T06:45:21.6334623Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-09-07T06:45:21.6339921Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-09-07T06:45:21.6355616Z copying torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-09-07T06:45:21.6361916Z copying torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-09-07T06:45:21.6367306Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-09-07T06:45:21.6370263Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-09-07T06:45:21.6376977Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-09-07T06:45:21.6383440Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-09-07T06:45:21.6389098Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:21.6393421Z copying torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:21.6400092Z copying torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:21.6406294Z copying torch\include\ATen\native\mkldnn\xpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:21.6412507Z copying torch\include\ATen\native\mkldnn\xpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:21.6418757Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:21.6422534Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:21.6430215Z copying torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:21.6437325Z copying torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:21.6444315Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:21.6451301Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:21.6458020Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:21.6477485Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6480016Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6486334Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6492767Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6499593Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6519296Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6526703Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6534519Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-09-07T06:45:21.6540326Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:21.6543940Z copying torch\include\ATen\native\mps\kernels\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:21.6586191Z copying torch\include\ATen\native\mps\kernels\Pooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:21.6593294Z copying torch\include\ATen\native\mps\kernels\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:21.6598922Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-09-07T06:45:21.6602521Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-09-07T06:45:21.6611060Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-09-07T06:45:21.6620807Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-09-07T06:45:21.6638270Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-09-07T06:45:21.6645383Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-09-07T06:45:21.6652680Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-09-07T06:45:21.6659237Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-09-07T06:45:21.6662105Z copying torch\include\ATen\native\mtia\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-09-07T06:45:21.6668532Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-09-07T06:45:21.6671524Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-09-07T06:45:21.6677793Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-09-07T06:45:21.6685014Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-09-07T06:45:21.6703364Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-09-07T06:45:21.6710373Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-09-07T06:45:21.6715731Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6719821Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6726497Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6732898Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6751059Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6757414Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6764624Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6771158Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6776788Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-09-07T06:45:21.6782467Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6785312Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6791858Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6798068Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6804533Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6823650Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6830196Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6836153Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6842612Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6849016Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6855426Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6861452Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6867849Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6875492Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6881542Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6888020Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6894560Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:21.6900067Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-09-07T06:45:21.6903010Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-09-07T06:45:21.6908629Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-09-07T06:45:21.6911554Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-09-07T06:45:21.6918538Z copying torch\include\ATen\native\transformers\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-09-07T06:45:21.6925475Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-09-07T06:45:21.6943976Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-09-07T06:45:21.6947118Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-09-07T06:45:21.6952975Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-09-07T06:45:21.6956563Z copying torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-09-07T06:45:21.6963609Z copying torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-09-07T06:45:21.6969663Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:21.6973279Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:21.6980499Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:21.6987550Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:21.7007548Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:21.7016050Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:21.7022197Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:21.7025419Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:21.7034241Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:21.7042120Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:21.7057324Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7060728Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7067789Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7075005Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7083494Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7101960Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7111403Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7121344Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:21.7130201Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7133538Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7142225Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7149769Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7167442Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7175495Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7184076Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7190455Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:21.7195766Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-09-07T06:45:21.7198908Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-09-07T06:45:21.7207180Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-09-07T06:45:21.7213382Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-09-07T06:45:21.7216618Z copying torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-09-07T06:45:21.7221861Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:21.7225014Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:21.7231592Z copying torch\include\ATen\native\transformers\hip\aotriton_versions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:21.7238113Z copying torch\include\ATen\native\transformers\hip\gemm_kernel_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:21.7243374Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-09-07T06:45:21.7257649Z copying torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-09-07T06:45:21.7264008Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-09-07T06:45:21.7267182Z copying torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-09-07T06:45:21.7273175Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-09-07T06:45:21.7275902Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-09-07T06:45:21.7281998Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-09-07T06:45:21.7288335Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-09-07T06:45:21.7293830Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7296583Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7302693Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7309469Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7315643Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7333773Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7340086Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7346555Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7352916Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7359177Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7366206Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7373324Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7380034Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7387254Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7394970Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7402865Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7409823Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7416681Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7424029Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7431010Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7438699Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7456951Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7464018Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7471315Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7477958Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7484961Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7492159Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7499918Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7507463Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7514715Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7532474Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7539638Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7546975Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7555484Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7562693Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7569965Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7576918Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7584171Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7603405Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7611692Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7621839Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7629844Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7637665Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7645424Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7652314Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7659787Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7666608Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7674574Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7681063Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7708690Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7715355Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7722288Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7728926Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7736097Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7742507Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7749662Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7756140Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7764183Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7771534Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7779435Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7797545Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7804836Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7812836Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7819959Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7827710Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7835595Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7842776Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7860504Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7867863Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7875503Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7883032Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7890860Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7908545Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7918058Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7928791Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7939034Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7948319Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7955562Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7963414Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7970839Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7978349Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7985183Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7991958Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.7999659Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8006411Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8016147Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8022955Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8031881Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8036690Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8043431Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8049901Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8056349Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8063272Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8070384Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8077594Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8084472Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8102011Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8109511Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8115658Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8122214Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8128821Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8135415Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8142105Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8149030Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8155606Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8162171Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8168628Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8191015Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8200470Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8210936Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8220517Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8230404Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8239512Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8246835Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8254164Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8261278Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8268502Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8275478Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8293756Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8300262Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8306864Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8313593Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8320735Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8327214Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8335186Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8349734Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8352120Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8358687Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8364905Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8372226Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8379113Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8385828Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8392642Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8399359Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8405460Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8411745Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8418137Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8424552Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8430952Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8437399Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8444068Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8450339Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8456818Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8463912Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8470924Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8478441Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8486420Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8494399Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8513451Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8520067Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8526941Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8533564Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8539907Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8547376Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8554329Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8561444Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8567945Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8574807Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8581246Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8625467Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8635193Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8643556Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8650679Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8658557Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8666007Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8673446Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8680171Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8687217Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8693872Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8701163Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8707737Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8714319Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8721547Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8728082Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8734708Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8741204Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8748414Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8754785Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8761633Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8768397Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8775178Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8781538Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8788227Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8794802Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8801259Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8807540Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8814706Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8821446Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8833993Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8840645Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8848245Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8853997Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8860603Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8867406Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8874059Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8880600Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8887122Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8893453Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8899877Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8906777Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8913639Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8920296Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8927125Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8934001Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8940691Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8947267Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8954520Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8961284Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8968038Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8974517Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8981001Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8987578Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.8994102Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9000779Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9007245Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9013755Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9020123Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9026457Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9033425Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9041006Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9048329Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9055390Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9067175Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9074715Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9081897Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9089307Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9097004Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9104340Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9125896Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9135729Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9145735Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9154028Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9162579Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9170280Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9178007Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9185500Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9192614Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9199874Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9206193Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9214121Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9220443Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9227063Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9233519Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9239910Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9247707Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9254373Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9260874Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9267628Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9274225Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9281129Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9287402Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9294480Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9301428Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9308053Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9314690Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9321312Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9327317Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9333798Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9340555Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9347254Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9353846Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9360624Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9367054Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9373968Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9380750Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9387267Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9393862Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9400407Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9407066Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9413740Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9420469Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9427075Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9434429Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9442032Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9449139Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9456654Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9464629Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9472525Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9479499Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9486242Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9493293Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9500082Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9507147Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9513993Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9521362Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9528474Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9534937Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9541769Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9548749Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9555425Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9561992Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9568743Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9576168Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9583254Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9591755Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9599238Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9606155Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9619724Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9662849Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9670318Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9678239Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9685455Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9692199Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9698687Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9705760Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9712712Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9719138Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9725568Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9733476Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9739714Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9746752Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9753855Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9760439Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9780496Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9787499Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9794285Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9800839Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9814004Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9820363Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9827113Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9834261Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9841279Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9847820Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9854448Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9860970Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9874353Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9880944Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9887622Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9894432Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9900867Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9907455Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9914056Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9920691Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9927632Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9934547Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9941070Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9947965Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9954520Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9960729Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9967285Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9974286Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9981117Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9988743Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:21.9995147Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0001718Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0007913Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0014453Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0021044Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0027296Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0034493Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0042397Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0049436Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0056750Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0064393Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0071822Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0079359Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0086565Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0101220Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0108364Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0115811Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0123147Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0131635Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0143537Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0153713Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0163932Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0171838Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0179409Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0187917Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0194452Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0202021Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0208991Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0216254Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0223231Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0235781Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0242872Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0250104Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0256892Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0263632Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0270798Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0277382Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0284569Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0296894Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0303933Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0311104Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0317955Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0330544Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0337112Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0344041Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0350795Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0376484Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0383936Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0390574Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0397218Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0409990Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0416699Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0423409Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0430093Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0444249Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0450948Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0457373Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0464080Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0476763Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0483555Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0490934Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0497788Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0511863Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0518736Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0525135Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0531653Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0538369Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0545464Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0552484Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0559400Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0572063Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0579054Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0619537Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0626286Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0634051Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0640680Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0650935Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0659537Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0677154Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0687773Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0698347Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0708139Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0716211Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0723477Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0730887Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0738551Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0745255Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0752290Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0760138Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0766706Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0773540Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0780241Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0788816Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0796150Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0802933Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0829120Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0835875Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0843422Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0851134Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0858559Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0866304Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0874232Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0881874Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0889245Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0896826Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0905762Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0913378Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0920838Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0928655Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0936293Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0943662Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0951568Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0959506Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0966961Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0974508Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0992599Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.0999921Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1008271Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1015721Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1023020Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1030066Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1037006Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1044259Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1052018Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1059634Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1067259Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1074475Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1082817Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1090214Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1097625Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1105002Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1113384Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1121125Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1128862Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1138424Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1146442Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1154790Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1162481Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1169123Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1176366Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1183102Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1191153Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1204405Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1211206Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1219076Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1225993Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1238976Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1245445Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1252017Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1259080Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1265838Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1272748Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1281853Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1288997Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1296725Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1304018Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1311904Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1319318Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1332881Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1340631Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1348429Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1355781Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1363105Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1370661Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1378292Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1386035Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1393479Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1401064Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1408102Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1416097Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1423721Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1430929Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1438278Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1445553Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1453337Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1461168Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1468777Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1476840Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1484571Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1492080Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1505573Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1513936Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1520311Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1527175Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1535152Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1542162Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1549092Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1556039Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1563156Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1570112Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1577262Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1585104Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1591997Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1599352Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1613524Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1620107Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1627949Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1634480Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1647893Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1654687Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1661381Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1668905Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1676662Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1683539Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1690225Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1697363Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1704446Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1711184Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1717507Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1723984Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1739590Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1748675Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1758500Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1768314Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1785111Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1792799Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1800052Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1807255Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1822689Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1830368Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1837466Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1844181Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1851569Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1858617Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1865724Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1872587Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1887127Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1894093Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1901096Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1907857Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1914467Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1920995Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1927496Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1934170Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1946878Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1954013Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1961261Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1967615Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1985388Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1991963Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.1999007Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2005699Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2012268Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2018975Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2025228Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2031787Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2038126Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2044806Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2051262Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2058401Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2076650Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2084309Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2091275Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2112930Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2120144Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2127801Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2135227Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2144755Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2155425Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2165923Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2175667Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2183565Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2200421Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2207117Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2214404Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2221261Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2228819Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2235257Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2241878Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2248694Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2261760Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2268671Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2275076Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2281394Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2288280Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2295052Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2301304Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2308199Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2314900Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2321338Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2327708Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2334392Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2341027Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2347461Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2353882Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2360677Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2367426Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2373798Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2380380Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2387363Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2393888Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2400627Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2407406Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2414039Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2427178Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2433549Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2440630Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2447507Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2454462Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2461443Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2469003Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2474989Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2481696Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2488910Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2495449Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2502353Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2508994Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2516084Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2522808Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2529745Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2536671Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2543242Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2550418Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2557266Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2563684Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2570249Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2576499Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2583134Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2596195Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2602696Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2609184Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2616589Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2629432Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2635957Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2669827Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2679762Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2696332Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2706344Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2747865Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2755344Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2767467Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2775096Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2781689Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2788351Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2802370Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2809131Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2815709Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2822294Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2835829Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2842458Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2849096Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2856512Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2862979Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2869806Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2876099Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2882779Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2889156Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2895574Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2902318Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2908695Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2921557Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2928588Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2934988Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2941443Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2948359Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2955414Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2962031Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2968650Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2975479Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2982059Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2988698Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.2995495Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3002113Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3008668Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3015632Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3022425Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3029556Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3036161Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3042907Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3049307Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3062168Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3069143Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3075602Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3082190Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3089979Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3096381Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3102946Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3109664Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3116191Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3122923Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3129650Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3136264Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3143176Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3149820Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3156950Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3163827Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3176384Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3183497Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3190240Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3196515Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3209093Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3215324Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3221885Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3228810Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3235474Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3242203Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3249328Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3255890Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3263207Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3270283Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3277133Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3283564Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3296965Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3303696Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3321196Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3327593Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3333833Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3340329Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3347572Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3354178Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3360673Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3367266Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3373894Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3380319Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3387110Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3393963Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3400602Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3407292Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3419968Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3426595Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3433318Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3440396Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3452655Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3460302Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3468711Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3476086Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3489592Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3496852Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3505220Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3513236Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3526524Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3533927Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3542022Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3549942Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3557260Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3564762Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3573078Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3580327Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3587721Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3595181Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3603042Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3610758Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3617906Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3625763Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3633270Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3640943Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3654886Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3664813Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3675456Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3683873Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3691742Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3699799Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3706670Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3714312Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3721387Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3728890Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3735796Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3742807Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3750005Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3756795Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3764439Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3771116Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3783431Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3790426Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3797437Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3804424Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3811309Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3818363Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3825471Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3832311Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3845275Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3852640Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3859232Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3865758Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3879103Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3885922Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3892370Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3899547Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3906384Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3913284Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3920691Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3927622Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3940065Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3946834Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3953431Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3960612Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3967935Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3975365Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3983015Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.3990953Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4003832Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4010897Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4020127Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4027418Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4040552Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4048257Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4055975Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4063369Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4076272Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4084323Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4092052Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4099430Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4113572Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4120532Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4127952Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4135615Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4142618Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4151255Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4160974Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4170571Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4179115Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4186781Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4194730Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4201668Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4209096Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4215608Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4223009Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4229818Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4236327Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4242708Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4249414Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4256974Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4264065Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4270762Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4277514Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4284013Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4297350Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4304089Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4311226Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4317983Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4325238Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4332014Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4338695Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4345324Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4352357Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4358866Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4365776Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4372408Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4378855Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4385444Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4392329Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4420796Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4433709Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4440418Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4447270Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4454164Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4461891Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4469090Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4476546Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4488925Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4495692Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4502697Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4510037Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4528682Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4541826Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4548533Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4555439Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4562471Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4569980Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4576795Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4583669Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4591105Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4611115Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4615033Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4622409Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4629363Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4636173Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4643120Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4650022Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4657409Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4664403Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4671675Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4678477Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4685362Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4699595Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4706425Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4713459Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4720293Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4733117Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4739639Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4746937Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4753997Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4769380Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4779928Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4822104Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4830073Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4837791Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4845051Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4852754Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4861086Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4868616Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4876121Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4883294Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4890693Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4905603Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4912369Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4919479Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4926395Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4933895Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4940476Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4947708Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4954540Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4967350Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4974005Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4980462Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4987142Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.4994295Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5000726Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5008110Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5014410Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5026932Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5033832Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5040926Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5047754Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5054634Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5061222Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5068100Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5074628Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5081265Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5088121Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5095072Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5101747Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5108638Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5115267Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5122477Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5129140Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5136044Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5142697Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5149589Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5156564Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5163483Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5170255Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5176814Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5183293Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5189918Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5196139Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5202544Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5209459Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5215944Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5224311Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5232600Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5240728Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5248040Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5257766Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5265811Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5275926Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5283632Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5290931Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5300250Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5308269Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5321994Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5328685Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5335952Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5343176Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5357136Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5364490Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5371721Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5378725Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5386194Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5393253Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5400887Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5407584Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5414318Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5420744Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5427371Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5433822Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5440155Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5447460Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5483936Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5490274Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5503547Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5510484Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5517372Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5524177Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5531267Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5537963Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5545534Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5552408Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5559125Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5565852Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5572932Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5579593Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5586412Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5593592Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5600408Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5609574Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5623461Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5631257Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5638287Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5646808Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5655324Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5665661Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5675882Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5686657Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5696252Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5703512Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5711482Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5718783Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5726010Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5732389Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5739948Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5746814Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5754402Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5760998Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5767431Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5774003Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5791421Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5798192Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5804764Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5812404Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5818849Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5824892Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5831536Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5838154Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5845072Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5851623Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5858617Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5865433Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5872137Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5878663Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5884943Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5891294Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5897957Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5904217Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5910923Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5917502Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5924009Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5930590Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5937521Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5943911Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5959143Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5966396Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5973097Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5979364Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5986114Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5992880Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.5999316Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6005748Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6012242Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6018886Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6025479Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6031948Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6038499Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6044961Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6051428Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6057915Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6064462Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6071413Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6078808Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6085536Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6098025Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6104680Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6112971Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6118695Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6125770Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6133185Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6139505Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6146065Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6152530Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6158680Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6165063Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6174753Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6184257Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6194656Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6203371Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6213505Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6223665Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6233683Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6244105Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6253667Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6261085Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6268897Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6276269Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6284313Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6291912Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6300092Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6307120Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6314187Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6327138Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6333864Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6340796Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6348068Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6354911Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6361791Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6368713Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6375410Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6382148Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6389013Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6396553Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6403529Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6416695Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6423357Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6430006Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6436928Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6449273Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6456450Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6463085Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6470673Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6477391Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6483976Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6490734Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6497407Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6504262Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6511277Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6518303Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6525523Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6532448Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6539328Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6546475Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6553449Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6560342Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6566989Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6574076Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6580747Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6587857Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6594815Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6601843Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6608812Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6642362Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6643214Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6643923Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6644672Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6648294Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6654910Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6662234Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6668781Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6675695Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6682276Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6689001Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6695158Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6701756Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6708221Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6714447Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6721411Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6753144Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6762762Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6771676Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6778481Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6785089Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6794316Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6833189Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6841333Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6847476Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6854254Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6861612Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6868259Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6874828Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6882068Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6896055Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6902580Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6915849Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6922477Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6928756Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6935310Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6942177Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6948441Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6955011Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6961670Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6974013Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6980892Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6987973Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.6993965Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7006504Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7013276Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7020491Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7027049Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7040752Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7047463Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7053613Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7060504Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7067629Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7074765Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7081857Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7088770Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7095602Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7102463Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7108872Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7116265Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7123576Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7130301Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7137038Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7143832Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7156516Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7163339Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7170105Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7176917Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7190790Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7197402Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7204480Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7211224Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7218125Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7228501Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7256839Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7267145Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7281506Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7289187Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7295433Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7302854Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7316421Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7322751Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7329530Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7336785Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7343053Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7350648Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7357343Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7363851Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7370279Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7377029Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7383999Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7391505Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7398484Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7406199Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7413360Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7421673Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7428640Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7435723Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7442641Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7449947Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7463593Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7470297Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7477242Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7484464Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7491627Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7499325Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7507284Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7514802Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7523760Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7531989Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7544109Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7548479Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7562724Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7570610Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7578743Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7586733Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7594161Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7602368Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7610928Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7619149Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7627121Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7635050Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7642789Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7650336Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7691312Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7701788Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7709566Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7717888Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7725726Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7733791Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7740708Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7748660Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7755591Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7763362Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7770364Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7778625Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7785260Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7792719Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7809073Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7815534Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7822860Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7830371Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7837199Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7844071Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7851278Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7858412Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7865043Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7871965Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7879240Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7886332Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7893171Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7906229Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7912924Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7919411Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7926169Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7933175Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7939881Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7946784Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7953894Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7967095Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7973762Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7980912Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7988073Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.7995156Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8001479Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8008413Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8015427Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8022179Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8028708Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8036213Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8043046Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8055650Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8062820Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8069541Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8076524Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8083591Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8090414Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8097204Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8104293Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8117497Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8124524Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8131747Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8138429Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8144975Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8151711Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8158213Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8165047Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8178011Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8185517Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8192230Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8199720Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8212381Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8219545Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8226329Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8233226Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8245712Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8252289Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8259479Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8266141Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8272948Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8279612Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8288739Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8297098Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8307397Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8317604Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8325638Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8336275Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8346506Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8356102Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8363866Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8371212Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8404311Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8410871Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8418507Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8425405Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8438017Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8444618Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8451620Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8458805Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8471334Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8478134Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8485020Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8492769Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8500246Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8507755Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8514804Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8522682Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8536349Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8543637Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8551090Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8559628Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8573317Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8581419Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8588912Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8598828Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8613567Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8622961Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8632140Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8640155Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8647734Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8655387Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8662884Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8670524Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8680730Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8690823Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8700636Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8708518Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8715418Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8722988Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8731060Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8738194Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8761151Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8768151Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8774794Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8782005Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8796944Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8803645Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8810455Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8817870Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8824836Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8831451Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8838431Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8845370Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8864477Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8870860Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8877559Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8884218Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8911075Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8917970Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8924340Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8930926Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8937706Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8944484Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8951432Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8958334Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8964955Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.8971412Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9361373Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9368372Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9380526Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9387636Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9394291Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9401074Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9411673Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9418544Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9425293Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9433046Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9440447Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9448280Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9455918Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9463510Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9471250Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9478511Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9485586Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9493351Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9504235Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9512165Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9519737Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9527099Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9534397Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9541744Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9549523Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9556886Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9564632Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9571928Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9579908Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9587702Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9595116Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9602350Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9628160Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9635334Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9642486Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9649328Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9656760Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9664428Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9679486Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9689753Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9697527Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9705012Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9717778Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9724935Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9731408Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9738636Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9745397Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9753681Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9760366Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9767355Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9779969Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9786875Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9793833Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9800658Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9807885Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9814829Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9821780Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9829604Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9841793Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9848545Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9855341Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9862138Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9873803Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9880845Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9887875Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9895185Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9902247Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9910101Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9916896Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9924481Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9931862Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9940118Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9947913Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9955232Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9963100Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9970899Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9978518Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9985858Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:22.9993030Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0000794Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0008172Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0015186Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0022628Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0029943Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0037523Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0045503Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0052591Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0059904Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0067691Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0075964Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0088044Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0095287Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0102494Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0110098Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0117853Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0125250Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0132533Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0139719Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0147625Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0155256Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0162837Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0170424Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0179898Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0190110Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0198826Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0206696Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0214160Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0222038Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0229930Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0236485Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0248999Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0256434Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0263291Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0270026Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0282650Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0289577Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0296398Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0303053Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0311023Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0317805Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0324607Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0332455Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0339310Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0346215Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0352795Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0359534Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0366383Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0372487Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0379026Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0385488Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0391805Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0398087Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0404814Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0411803Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0423917Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0430635Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0438741Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0446331Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0458865Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0467037Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0475162Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0482845Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0495229Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0502603Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0509854Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0517447Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0530206Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0537598Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0545020Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0552597Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0560110Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0567869Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0575442Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0583809Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0590639Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0597838Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0604729Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0611965Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0618590Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0625502Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0632313Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0638956Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0645701Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0652596Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0660428Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0668150Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0682128Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0691842Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0701382Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0709110Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0716170Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0723211Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0730664Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0738412Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0744999Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0753202Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0760388Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0767755Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0774463Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0782067Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0789303Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0796214Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0803322Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0826945Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0833907Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0841179Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0848871Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0856107Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0863326Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0870589Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0878369Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0885930Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0892761Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0899937Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0907293Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0914367Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0922071Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0929510Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0942811Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0949951Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0957340Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0964902Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0978644Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0986178Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.0993648Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1001486Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1009322Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1026885Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1027638Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1035398Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1043174Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1050544Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1058784Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1066662Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1081276Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1089241Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1096998Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1104851Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1118313Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1126294Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1133852Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1140922Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1149533Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1157391Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1164744Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1172465Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1180331Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1188348Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1195454Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1203208Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1209967Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1217542Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1224536Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1231660Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1238270Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1245963Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1256645Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1264460Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1274789Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1282880Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1292195Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1303006Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1313940Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1322481Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1330358Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1338393Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1345063Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1352194Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1359251Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1366654Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1379373Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1386292Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1393259Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1400436Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1412926Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1419387Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1654411Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1662383Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1669626Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1677344Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1685146Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1693521Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1704343Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1712168Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1719739Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1727732Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1735901Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1742703Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1749625Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1757504Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1764454Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1771432Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1778825Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1786519Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1793394Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1800057Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1807578Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1814226Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1827226Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1834076Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1841672Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1848832Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1862299Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1869157Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1876174Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1883682Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1890506Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1897352Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1910931Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1917744Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1930829Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1937965Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1945445Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1952379Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1965769Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1972456Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1979772Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1987048Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.1999986Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2006822Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2013763Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2020653Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2034021Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2040796Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2048279Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2055459Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2062249Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2069137Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2076137Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2083065Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2089837Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2096543Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2103533Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2111273Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2123896Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2130637Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2137495Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2144455Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2151821Z copying torch\include\ATen\ops\hash_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2159072Z copying torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2166127Z copying torch\include\ATen\ops\hash_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2172780Z copying torch\include\ATen\ops\hash_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2179470Z copying torch\include\ATen\ops\hash_tensor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2186805Z copying torch\include\ATen\ops\hash_tensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2194181Z copying torch\include\ATen\ops\hash_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2201456Z copying torch\include\ATen\ops\hash_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2208164Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2215368Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2230922Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2237741Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2280703Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2290734Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2300874Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2310495Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2318242Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2326149Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2333401Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2340906Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2348041Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2354731Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2362071Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2374784Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2381844Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2389576Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2396218Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2403159Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2409956Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2416694Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2423771Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2430638Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2437730Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2445474Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2452794Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2465740Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2472984Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2480970Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2488296Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2496399Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2503567Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2511427Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2518809Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2526306Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2533930Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2541134Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2549321Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2622750Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2630892Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2638262Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2646639Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2654122Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2661744Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2669485Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2677965Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2685544Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2695269Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2705166Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2712665Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2726868Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2736494Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2744419Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2752310Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2759563Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2767142Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2773560Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2780095Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2787351Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2793831Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2800257Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2806803Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2813691Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2820604Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2827766Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2834055Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2840642Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2847650Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2854260Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2861215Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2868035Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2875059Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2881805Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2889133Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2895579Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2902231Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2909217Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2915909Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2922545Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2929074Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2935865Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2942440Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2953341Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2960320Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2966893Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2973549Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2980234Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2986889Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.2993501Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3000710Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3009025Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3016510Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3024092Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3031896Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3039368Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3047032Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3054405Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3062253Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3069396Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3078027Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3085882Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3093681Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3101814Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3109464Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3116848Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3124235Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3131868Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3139673Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3147220Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3154394Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3162876Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3170711Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3178403Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3185979Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3193808Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3204030Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3214570Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3222495Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3230533Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3238521Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3245435Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3252873Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3260382Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3273686Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3280527Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3287381Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3300217Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3307292Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3314210Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3321111Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3332459Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3339838Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3346611Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3353570Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3361302Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3368344Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3375108Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3400902Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3407912Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3414598Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3421685Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3429559Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3436980Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3443691Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3450337Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3457025Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3464380Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3472939Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3479510Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3486295Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3493361Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3500156Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3508468Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3516453Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3529909Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3538579Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3545880Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3553060Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3560984Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3568503Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3583082Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3591186Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3599224Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3607529Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3615230Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3623024Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3630315Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3638186Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3646924Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3654302Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3661524Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3668877Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3677404Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3685622Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3692773Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3701951Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3712150Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3722729Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3732758Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3741725Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3750069Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3757213Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3764566Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3772307Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3779704Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.3788456Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4313592Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4340780Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4347583Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4355177Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4362029Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4368880Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4375700Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4382278Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4393587Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4400246Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4414225Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4420384Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4427343Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4434452Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4441177Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4609586Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4610442Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4611192Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4611990Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4612705Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4613401Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4614444Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4615447Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4616263Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4617022Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4617788Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4618592Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4619315Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4619981Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4620805Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4621697Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4622543Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4623217Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4624023Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4624870Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4625620Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4626317Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4627183Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4628166Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4634520Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4642305Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4650134Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4657183Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4664459Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4672962Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4680258Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4687376Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4694993Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4703089Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4713204Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4724015Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4732735Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4739715Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4747116Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4756334Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4763030Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4775161Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4782321Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4789931Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4796606Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4813034Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4819955Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4826483Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4832858Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4839873Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4846705Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4853506Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4860315Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4867444Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4874232Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4880885Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4887334Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4894196Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4900867Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4907829Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4914840Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4928841Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4935790Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4942367Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4949370Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4956212Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4962670Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4969617Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4976613Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4983026Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4989912Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.4997137Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5004199Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5010731Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5018064Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5025332Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5032133Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5038921Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5045887Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5052651Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5059826Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5072136Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5078321Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5085461Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5092350Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5099338Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5106386Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5113715Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5121508Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5128528Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5135787Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5150127Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5157884Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5165285Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5172217Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5179679Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5187680Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5195679Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5213257Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5223380Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5233449Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5248449Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5256543Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5264069Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5270810Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5278254Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5285553Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5301419Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5308230Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5314820Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5322087Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5335674Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5342321Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5348991Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5355347Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5362367Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5374619Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5381228Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5388287Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5394694Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5401641Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5408207Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5414757Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5421254Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5428581Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5435499Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5442954Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5449804Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5456757Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5463503Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5470264Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5477527Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5484451Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5491255Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5498062Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5505051Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5512285Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5519570Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5526395Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5533476Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5540535Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5553020Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5559737Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5566473Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5573088Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5580940Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5587304Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5594328Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5601917Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5608567Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5615288Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5631023Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5638254Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5645497Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5653174Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5660802Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5674281Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5681568Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5688653Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5695923Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5703700Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5719878Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5730559Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5738347Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5747879Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5755423Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5768778Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5775914Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5782952Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5789779Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5797320Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5803769Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5810631Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5817334Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5826174Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5833228Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5846360Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5853063Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5860024Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5867771Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5874630Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5880997Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5887523Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5894910Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5901963Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5909222Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5922625Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5929645Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5936632Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5943776Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5950766Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5963828Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5970752Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5977537Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5984294Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5991599Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.5998419Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6005474Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6032085Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6039310Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6046910Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6060661Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6068573Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6075913Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6083185Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6090239Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6098116Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6105182Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6112046Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6119053Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6125779Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6133966Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6140991Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6148212Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6154955Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6162092Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6169239Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6175880Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6182865Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6190135Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6197114Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6204346Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6214693Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6225483Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6233987Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6242770Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6256396Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6263566Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6270862Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6277702Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6285342Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6298597Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6305781Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6313145Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6321455Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6328318Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6344271Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6351174Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6358439Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6366036Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6373022Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6575415Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6583554Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6591999Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6600417Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6607717Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6615283Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6622741Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6631424Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6638817Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6646419Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6654154Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6662292Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6670534Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6677991Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6685888Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6693890Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6701555Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6708933Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6726372Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6736103Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6743718Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6751520Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6759576Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6767215Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6774238Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6781320Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6788971Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6796218Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6802913Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6809757Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6823431Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6830393Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6837484Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6844510Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6851009Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6857753Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6880943Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6887915Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6894692Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6901493Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6908874Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6915736Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6923130Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6930770Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6937658Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6944469Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6951655Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6958641Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6965485Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6973324Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6987997Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.6995852Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7003448Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7011317Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7018701Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7032686Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7040970Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7048682Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7057433Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7065437Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7072913Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7080337Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7088423Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7096225Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7104386Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7111799Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7118690Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7125591Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7134273Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7140143Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7147264Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7154231Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7161615Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7168742Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7175892Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7182893Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7190134Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7197421Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7204951Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7212150Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7227354Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7235073Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7242939Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7250526Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7258438Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7265447Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7273421Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7280185Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7286971Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7293742Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7300770Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7308919Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7315872Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7322678Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7329929Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7336889Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7344026Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7351145Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7357828Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7365600Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7374075Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7381746Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7390123Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7397714Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7405343Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7413036Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7420587Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7428290Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7436197Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7444100Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7457701Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7465089Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7473194Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7481101Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7489082Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7497595Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7505949Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7513430Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7521088Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7528366Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7543508Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7551238Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7558939Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7567627Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7574864Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7582424Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7590410Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7598790Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7606205Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7621681Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7625436Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7632805Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7640280Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7648349Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7655997Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7670384Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7678514Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7686241Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7693567Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7701143Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7713955Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7721897Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7728719Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7735527Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7772105Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7785125Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7791907Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7798770Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7806445Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7813703Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7820667Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7827649Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7835391Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7842203Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7848826Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7855781Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7862742Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7869292Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7877010Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7883687Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7890466Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7897354Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7904332Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7914668Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7925036Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7942838Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7953164Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7963234Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7971321Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7979160Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7992221Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.7999990Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8007369Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8014401Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8021247Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8034594Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8041238Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8048510Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8055707Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8062527Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8075922Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8082743Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8089623Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8096778Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8103487Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8116797Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8123242Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8130016Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8136828Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8144654Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8151647Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8158317Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8165063Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8171806Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8178250Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8185178Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8191811Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8198140Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8204934Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8212608Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8225900Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8232983Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8239679Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8246489Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8253191Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8267596Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8276596Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8286841Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8297598Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8307890Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8318253Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8327018Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8334945Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8342823Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8350173Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8358148Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8365542Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8372844Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8379989Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8386350Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8399235Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8406309Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8412882Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8420055Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8427200Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8433827Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8440266Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8447443Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8454558Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8462448Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8476592Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8483174Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8489908Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8496877Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8503554Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8510872Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8517628Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8525361Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8532071Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8538833Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8552017Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8559254Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8567125Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8593266Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8600973Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8615646Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8623001Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8630550Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8638278Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8646154Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8653520Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8661032Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8668973Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8676850Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8684219Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8698138Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8739862Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8747985Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8755935Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8763423Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8770232Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8777934Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8784816Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8792479Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8800234Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8806949Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8813613Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8821392Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8829110Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8835851Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8842751Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8849881Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8856641Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8863892Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8870592Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8877794Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8884235Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8890571Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8897170Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8903600Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8917408Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8924069Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8930887Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8938057Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8944784Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8958760Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8965498Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8971810Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8978704Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8985859Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8992865Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.8999738Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9006684Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9013706Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9020498Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9034353Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9042594Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9050272Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9057708Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9065380Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9072997Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9081044Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9088664Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9096633Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9104337Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9111964Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9119276Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9126623Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9134715Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9141943Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9149725Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9157220Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9165555Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9173027Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9179858Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9194468Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9201489Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9208810Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9215509Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9222735Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9230772Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9237705Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9244637Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9287144Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9293654Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9299994Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9307397Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9313657Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9321095Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9327688Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9341397Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9348258Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9354961Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9361421Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9367922Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9375444Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9382351Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9388976Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9396518Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9403396Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9410251Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9416883Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9423704Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9430674Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9437267Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9444112Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9451440Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9458027Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9464703Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9471287Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9479462Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9486823Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9494640Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9502802Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9510064Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9517627Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9525731Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9533065Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9540781Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9548140Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9562553Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9570591Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9577813Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9585358Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9593153Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9601519Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9608997Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9616885Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9624804Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9632588Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9646735Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9654084Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9662142Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9670095Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9678345Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9686735Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9694264Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9701843Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9709478Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9717335Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9726503Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9737344Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9745192Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9753398Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9760938Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9767929Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9775862Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9782762Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9790023Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9797435Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9804166Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9810532Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9817920Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9824669Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9831706Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9844240Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9851197Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9858222Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9865019Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9871844Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9879570Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9886468Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9893486Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9899774Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9906417Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9913078Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9919822Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9926598Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9933322Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9940635Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9947615Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9954280Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9961574Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9968008Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9974446Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9980989Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9988170Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:23.9994807Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0001752Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0008375Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0015064Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0021662Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0029009Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0037122Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0044957Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0052253Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0059702Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0068131Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0075624Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0083282Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0092856Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0100205Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0107950Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0115692Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0123339Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0131567Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0140599Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0148588Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0156197Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0164283Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0179119Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0187245Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0195193Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0203127Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0211408Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0219140Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0227700Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0239119Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0250221Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0259407Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0267377Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0275246Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0282627Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0290894Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0297707Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0311380Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0318315Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0325655Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0332614Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0340428Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0347625Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0355333Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0362060Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0368751Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0376475Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0383710Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0390740Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0397545Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0404580Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0411373Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0418320Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0425304Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0432309Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0439110Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0446366Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0459328Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0466447Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0472938Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0479629Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0486274Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0493140Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0499776Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0506542Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0513096Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0519646Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0526816Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0533706Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0541095Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0548261Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0554921Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0568251Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0574909Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0581366Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0588782Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0595240Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0601615Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0608564Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0615304Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0621388Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0656176Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0670179Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0676782Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0683306Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0690221Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0696994Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0703689Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0710395Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0717390Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0724403Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0730776Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0745467Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0753446Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0806554Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0807314Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0814285Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0821300Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0828440Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0836120Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0843267Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0850993Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0857910Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0865092Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0871985Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0879988Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0887726Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0894687Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0901536Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0908530Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0915423Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0922283Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0936527Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0943259Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0950370Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0957584Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0964423Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0971426Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0978454Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0985723Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0992580Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.0999873Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1012755Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1019574Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1026828Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1033730Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1040901Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1055990Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1063179Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1071539Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1079719Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1087332Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1095153Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1102500Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1110562Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1118160Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1126188Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1133918Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1141910Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1149359Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1156639Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1163675Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1172500Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1180124Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1187823Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1196108Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1203658Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1217762Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1228583Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1233211Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1242197Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1252034Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1268045Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1275531Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1282812Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1290654Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1298406Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1305704Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1312604Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1320303Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1327208Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1333990Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1341391Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1349303Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1356058Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1362747Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1369440Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1382681Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1389848Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1397274Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1404389Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1411109Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1418246Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1425392Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1432132Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1439594Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1446388Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1453159Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1460651Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1467432Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1474706Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1481446Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1488393Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1495823Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1502673Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1509865Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1518111Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1525509Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1532367Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1539127Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1546783Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1554732Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1562178Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1570675Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1578558Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1586442Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1594290Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1602139Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1610083Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1618116Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1626582Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1633890Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1648446Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1656263Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1664450Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1671968Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1679904Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1693862Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1701247Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1709203Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1717435Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1725427Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1732782Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1744111Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1754717Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1763043Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1770827Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1778414Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1785306Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1826335Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1833270Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1840409Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1847169Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1853649Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1860143Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1874216Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1881264Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1896122Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1902796Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1909799Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1916418Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1923315Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1937426Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1944758Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1952353Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1959612Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1967182Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1981522Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1989103Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.1997111Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2005315Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2013231Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2027855Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2036319Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2044048Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2052234Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2060421Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2073950Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2081730Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2103591Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2111291Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2119701Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2134805Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2142118Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2150199Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2157884Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2165266Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2172677Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2180204Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2188161Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2195684Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2202652Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2209838Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2217201Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2224853Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2231988Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2240349Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2253964Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2261105Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2269163Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2276352Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2284284Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2291157Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2299086Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2307033Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2313715Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2320422Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2334846Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2342239Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2349422Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2356709Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2363695Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2370554Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2377483Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2384282Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2392092Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2399699Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2406911Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2414252Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2420750Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2427955Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2435232Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2448177Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2454997Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2462145Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2469082Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2475978Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2489178Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2496178Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2503027Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2510172Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2517525Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2524928Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2531670Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2538467Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2545039Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2551580Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2565335Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2572096Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2578789Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2585562Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2593155Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2630961Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2637731Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2644833Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2651718Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2658564Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2665192Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2671768Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2678496Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2685371Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2692465Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2699716Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2706956Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2713900Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2720629Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2735396Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2742300Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2749113Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2755997Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2763237Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2770363Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2776738Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2783122Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2790865Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2798523Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2805658Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2820866Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2828073Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2834650Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2841267Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2847807Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2860248Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2867147Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2873759Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2880384Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2886870Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2899629Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2906719Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2914582Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2954871Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2961685Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2975450Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2981980Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2988830Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.2995416Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3003888Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3011240Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3017722Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3024875Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3031702Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3038959Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3052710Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3060191Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3067822Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3074767Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3081816Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3095156Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3102182Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3109209Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3116130Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3123610Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3130682Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3137715Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3144838Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3152159Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3159857Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3168351Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3176342Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3191076Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3198801Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3206544Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3214595Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3221947Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3229979Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3238093Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3247580Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3265618Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3275816Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3286144Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3294282Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3302119Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3316139Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3324155Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3330871Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3338534Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3346177Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3352865Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3360093Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3367928Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3374903Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3382709Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3389973Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3397265Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3404971Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3412251Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3420118Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3427644Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3434779Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3441780Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3448570Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3454786Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3467084Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3473689Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3480500Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3487989Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3495219Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3501662Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3508257Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3514673Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3521619Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3528835Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3542402Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3550332Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3558401Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3565718Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3573502Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3581135Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3588789Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3596172Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3603541Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3611928Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3626238Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3633646Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3641022Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3649467Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3656600Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3670223Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3677601Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3685145Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3692588Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3699765Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3707241Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3714906Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3722678Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3731340Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3749564Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3759064Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3768591Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3780326Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3788627Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3797775Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3805539Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3812403Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3820784Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3827919Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3835711Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3842415Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3848929Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3855623Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3862096Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3869453Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3882798Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3889130Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3895687Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3902301Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3909717Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3916611Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3923261Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3929698Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3936475Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3942896Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3950027Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3957090Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3964415Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3970938Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3977586Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3984397Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3991321Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.3998591Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4006222Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4012560Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4026031Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4033194Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4039857Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4474817Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4482922Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4507686Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4517202Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4526033Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4534433Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4542816Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4550883Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4560034Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4568259Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4577416Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4584599Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4597807Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4605358Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4612748Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4620689Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4628264Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4635791Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4643224Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4650564Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4658179Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4666065Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4678361Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4685823Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4693447Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4701049Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4708818Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4716412Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4723865Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4732629Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4740320Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4747625Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4759549Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4768931Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4778431Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4786292Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4793707Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4805979Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4814115Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4820832Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4828751Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4835491Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4842373Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4849106Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4856885Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4863871Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4870291Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4881946Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4888934Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4895533Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4902198Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4908679Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4921221Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4928226Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4935370Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4942098Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4949116Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4961097Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4967719Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4974360Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4981170Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4987786Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.4994161Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5000642Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5007474Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5014652Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5022351Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5034481Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5041664Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5049475Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5057067Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5064206Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5071538Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5078692Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5085465Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5107329Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5114301Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5126923Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5134306Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5142014Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5149572Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5156762Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5164691Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5172304Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5180023Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5187837Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5194980Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5208389Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5214900Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5222351Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5230359Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5237504Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5245662Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5253134Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5262129Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5271613Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5279109Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5286642Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.5294105Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.6965446Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.6972793Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.6979960Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.6992149Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.6998845Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7005785Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7012922Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7019509Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7026517Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7033257Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7039783Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7046448Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7052727Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7059901Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7067545Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7074900Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7083298Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7091182Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7098690Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7106475Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7114274Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7122143Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7161893Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7169695Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7176969Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7184437Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7191773Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7199689Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7207087Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7214274Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7222002Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7230255Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7244059Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7251956Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7260126Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7268108Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7275681Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7283873Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7297654Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7305716Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7313512Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7320142Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7327773Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7340577Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7347724Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7354484Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7361100Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7368116Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7381165Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7388090Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7395215Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7401860Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7408613Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7415309Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7421836Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7429599Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7436379Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7443120Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7449911Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7457219Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7463961Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7470949Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7478222Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7490512Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7497263Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7504379Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7511146Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7517834Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7531122Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7538096Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7545320Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7552956Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7560488Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7573444Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7580829Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7588065Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7595202Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7602841Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7615628Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7622645Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7629845Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7637097Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7644155Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7652042Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7659406Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7666931Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7674332Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7682062Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7689797Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7697113Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7704385Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7711765Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7719318Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7731355Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7756127Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7763617Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7770559Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7780610Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7794793Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7802449Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7809790Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7817212Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7823886Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7836985Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7844061Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7851075Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7857638Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7864157Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7871141Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7877698Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7884093Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7890922Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7898936Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7906152Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7913755Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7921413Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7929581Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7936707Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7943570Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7950489Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7957497Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7964210Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7970903Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7977682Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7984812Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7991814Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.7999645Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8006321Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8024278Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8031711Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8038589Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8045717Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8053066Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8059847Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8067187Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8079107Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8086416Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8094780Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8101571Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8108431Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8116110Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8123034Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8129746Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8136547Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8145044Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8151500Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8158377Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8165389Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8181424Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8189032Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8196257Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8203238Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8210080Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8225424Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8232697Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8239433Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8246460Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8253478Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8266887Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8275772Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8286468Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8295000Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8305332Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8315857Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8326368Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8336806Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8346370Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8353650Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8367119Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8375321Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8382593Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8389641Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8397430Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8404772Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8411721Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8418459Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8426174Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8434224Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8446991Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8454041Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8460751Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8467922Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8474880Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8482412Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8488842Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8495419Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8502047Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8509130Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8516618Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8523419Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8530800Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8537700Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8544352Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8551353Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8558033Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8564721Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8571878Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8579564Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8592528Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8600062Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8607964Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8615409Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8622760Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8641711Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8649137Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8656897Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8664325Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8671461Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8678753Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8686089Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8693921Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8701403Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8737300Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8744662Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8752107Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8760498Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8767861Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8775131Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8797431Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8805794Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8815774Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8824065Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8831542Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8844225Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8851745Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8858418Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8866170Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8872873Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8884983Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8891476Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8899266Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8905979Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8912697Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8919406Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8926300Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8933324Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8940116Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8946740Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8958775Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8965478Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8971859Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8978776Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8986165Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8992860Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.8999796Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9006654Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9013248Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9020149Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9032536Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9039781Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9046418Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9053132Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9059587Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9076537Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9083432Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9090961Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9098749Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9108736Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9122024Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9129958Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9137917Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9145856Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9153412Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9166673Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9174345Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9182399Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9190417Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9197592Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9205600Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9213852Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9221472Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9229659Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9237276Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9245209Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9252849Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9261450Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9269230Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9277246Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9318445Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9326449Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9334156Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9342860Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9350007Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9363287Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9370499Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9377775Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9384728Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9392111Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9405409Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9412496Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9419566Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9426530Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9434316Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9441596Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9448468Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9455809Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9462823Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9470122Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9478739Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9485565Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9492168Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9498861Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9505750Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9512388Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9519393Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9526380Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9533176Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9539718Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9547216Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9553941Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9560262Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9567413Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9574525Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9608569Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9615907Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9624872Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9632471Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9639637Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9647489Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9655251Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9662343Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9670276Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9677455Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9685457Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9693162Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9700525Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9707924Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9715730Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9729057Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9736914Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9744349Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9751661Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9769548Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9777172Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9786668Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9797646Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9807874Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9816213Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9823943Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9831556Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9838827Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9846180Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9853011Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9860385Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9868109Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9874852Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9882081Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9889319Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9896332Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9903797Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9910442Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9918475Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9925450Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9932379Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9939446Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9946962Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9953776Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9960620Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9973471Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9980558Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9987772Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:24.9994739Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0002040Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0009080Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0016934Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0023940Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0030955Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0038098Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0045062Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0052263Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0059162Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0066102Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0073197Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0085948Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0093156Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0100727Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0112788Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0119977Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0128052Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0134995Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0142306Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0150629Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0158502Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0166371Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0174181Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0181783Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0189958Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0197158Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0210385Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0217340Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0225235Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0233226Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0244515Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0248038Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0256601Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0264456Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0271819Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0279953Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0288005Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0297483Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0308014Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0316127Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0323805Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0331400Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0338612Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0346175Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0353350Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0361362Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0368329Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0375102Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0382032Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0389681Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0396435Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0403176Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0409815Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0417635Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0424313Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0431156Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0437933Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0445759Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0452738Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0459641Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0466649Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0473842Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0480299Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0486950Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0493751Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0500565Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0507354Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0514096Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0520829Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0527780Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0534451Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0547618Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0555364Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0562723Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0570409Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0577889Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0585439Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0592368Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0600015Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0608210Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0615517Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0623214Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0630709Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0638543Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0646852Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0653466Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0667340Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0703301Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0711452Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0719408Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0726691Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0734460Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0742155Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0749773Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0756897Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0764156Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0772181Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0779691Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0786895Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0796911Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0805640Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0813464Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0820417Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0828087Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0835480Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0842455Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0849049Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0856452Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0863591Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0870783Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0877706Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0885277Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0892026Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0899427Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0906414Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0913512Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0920262Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0927203Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0933772Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0941300Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0948831Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0956547Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0963243Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0969958Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0976636Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0983409Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.0997335Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1004619Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1011388Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1018853Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1025977Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1038962Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1046186Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1052958Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1059718Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1066968Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1073795Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1081791Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1088915Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1095768Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1103025Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1119344Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1129434Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1139893Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1150287Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1160248Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1168432Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1175831Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1183514Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1191099Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1197800Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1212181Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1219912Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1226707Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1233462Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1240964Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1254447Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1261025Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1267899Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1274265Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1281125Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1294317Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1301108Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1308275Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1315413Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1322154Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1335477Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1342211Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1348904Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1356161Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1363002Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1376663Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1419000Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1427185Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1434734Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1442514Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1457121Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1465576Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1472962Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1480335Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1487973Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1501002Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1508558Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1515430Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1522435Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1529161Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1537077Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1544045Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1551042Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1558102Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1564911Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1577889Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1584678Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1592256Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1599836Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1607065Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1614505Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1622769Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1630175Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1637887Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1644972Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1659208Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1666352Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1673431Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1721223Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1728092Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1741448Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1748656Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1755586Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1762632Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1770053Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1784192Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1791662Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1801023Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1811767Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1820130Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1828397Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1836459Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1843105Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1850496Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1857795Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1871123Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1878177Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1885407Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1892065Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1899328Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1906056Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1912656Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1919061Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1925810Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1933034Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1945298Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1951966Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1959633Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1966106Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1972755Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1985131Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1992345Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.1999293Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2005830Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2012294Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2018839Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2025653Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2032503Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2038970Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2045113Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2052149Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2059301Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2066424Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2073805Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2081850Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2095811Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2103228Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2110743Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2118952Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2126388Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2139963Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2148203Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2155463Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2162475Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2169377Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2176216Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2184566Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2192238Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2199593Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2207140Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2220283Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2228408Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2236085Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2243406Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2250408Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2264838Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2272253Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2279748Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2287184Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2294982Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2309430Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2319064Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2326967Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2334495Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2341477Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2355215Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2362248Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2370000Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2376926Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2383589Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2397678Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2404388Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2411396Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2419083Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2426055Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2439614Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2446462Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2453125Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2460280Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2467565Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2479889Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2487574Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2494007Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2500635Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2508340Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2521592Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2528664Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2534921Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2541527Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2548274Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2561491Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2568677Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2575440Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2582142Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2589120Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2602749Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2610053Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2617626Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2624898Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2632094Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2646501Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2653228Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2659696Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2666705Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2673402Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2687296Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2694820Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2702147Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2709057Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2716227Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2730375Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2738171Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2745512Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2753399Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2761098Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2774555Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2782418Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2790369Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2798139Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2806805Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2817927Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2826920Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2834254Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2842540Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2849411Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2862486Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2869714Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2877696Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2884614Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2891284Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2898007Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2905410Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2912730Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2919174Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2926063Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2939209Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2946616Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2953325Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2960889Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2968330Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2975857Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2984136Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2991638Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.2999202Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3007587Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3021582Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3029492Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3037609Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3045407Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3052693Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3060884Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3068926Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3076638Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3084186Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3091834Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3099695Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3108102Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3115738Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3123742Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3131747Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3146297Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3154386Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3162422Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3169959Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3177452Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3185433Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3193547Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3201004Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3208355Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3215729Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3229914Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3236994Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3244579Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3252503Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3260506Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3268042Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3275415Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3283285Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3291019Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3298882Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3306333Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3314116Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3321278Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3328124Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3337626Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3347533Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3357961Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3368040Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3378652Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3388901Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3398920Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3408110Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3415768Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3424341Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3431865Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3446900Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3455202Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3462661Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3469365Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3476436Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3489878Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3496562Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3503671Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3510884Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3518162Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3525026Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3532557Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3538978Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3545749Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3552999Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3559652Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3566508Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3607289Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3614610Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3622585Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3630331Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3638437Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3645923Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3653550Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3661320Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3675275Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3682754Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3690925Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3698199Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3705845Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3720736Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3728847Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3736797Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3744462Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3752378Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3760230Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3767535Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3775099Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3783860Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3791348Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3798727Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3806939Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3815463Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3824957Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3834986Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3843229Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3850680Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3858433Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3865344Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3872832Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3887595Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3894653Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3902205Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3908663Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3916327Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3930687Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3937586Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3944434Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3951707Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3958921Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3972789Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3979249Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3986116Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.3993474Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4000550Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4007367Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4014150Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4021034Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4028140Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4034874Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4041919Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4048631Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4055554Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4062209Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4068812Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4075736Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4082734Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4089363Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4096401Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4103138Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4110158Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4117496Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4126048Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4133500Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4141269Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4149553Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4157038Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4164475Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4171829Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4179597Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4187513Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4195175Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4202491Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4210594Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4218067Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4233299Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4241549Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4248990Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4256776Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4263952Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4272302Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4280249Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4287435Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4294955Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4303226Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4312691Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4322945Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4333664Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4341887Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4353067Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4360945Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4368708Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4376173Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4383976Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4390941Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4397693Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4433424Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4441667Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4448424Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4455715Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4462442Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4469474Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4476335Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4483326Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4489982Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4497298Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4504539Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4512665Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4519404Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4526575Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4533365Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4540136Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4547583Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4555039Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4562088Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4569250Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4576293Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4583329Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4590519Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4597627Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4604923Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4612052Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4620672Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4628317Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4635560Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4642910Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4649704Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4656677Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4664092Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4671059Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4678239Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4685788Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4692886Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4699496Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4706922Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4713861Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4720642Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4728696Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4736978Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4744371Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4753184Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4761280Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4769053Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4776608Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4784622Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4792826Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4800551Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4808152Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4818593Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4829798Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4840278Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4851090Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4860469Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4868739Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4876393Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4884065Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4891414Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4898273Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4906448Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4913198Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4919980Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4926771Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4933605Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4941572Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4948321Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4955569Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4962373Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4969835Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4977263Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4984276Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4991476Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.4998454Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5004996Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5011779Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5018726Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5025652Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5032307Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5039212Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5046177Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5052640Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5059281Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5066551Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5073244Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5079816Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5086789Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5093989Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5100930Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5107528Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5114258Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5128771Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5136350Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5144115Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5152105Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5159468Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5168516Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5175458Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5182599Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5190081Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5197307Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5204488Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5219274Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5227498Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5245719Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5253775Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5260988Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5269135Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5277387Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5285073Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5292561Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5300974Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5308949Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5316426Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5326638Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5337245Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5346088Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5354886Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5363095Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5370049Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5377801Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5384828Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5392688Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5399915Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5406632Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5413355Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5420980Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5427911Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5434932Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5442286Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5448611Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5455182Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5462015Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5469162Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5476206Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5482749Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5489926Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5503570Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5510994Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5518212Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5525067Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5531875Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5538931Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5545411Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5552446Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5559677Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5566504Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5579716Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5586621Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5593515Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5600277Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5607471Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5614649Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5621922Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5629607Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5671994Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5679740Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5687248Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5695103Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5703582Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5711437Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5720500Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5729245Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5737152Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5745300Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5753169Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5760949Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5768821Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5776941Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5784985Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5792218Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5800570Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5808925Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5816254Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5826305Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5837414Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5847277Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5855487Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5862895Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5870816Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5878697Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5885715Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5892913Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5900859Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5907792Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5914713Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5921963Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5929618Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5936464Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5943470Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5950402Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5957588Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5964754Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5971732Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5979034Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5987238Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.5994438Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6001962Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6009452Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6016799Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6024668Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6032016Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6038873Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6046721Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6054097Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6060937Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6067859Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6074946Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6082223Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6089276Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6096311Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6103658Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6110686Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6118114Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6125115Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6132720Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6140916Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6148777Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6156069Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6164782Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6172875Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6180595Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6188687Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6197079Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6205043Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6213281Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6221591Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6229628Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6237995Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6245981Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6253362Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6261331Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6270435Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6278293Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6285745Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6293678Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6301673Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6309130Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6316797Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6325774Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6336494Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6347513Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6355801Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6366927Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6374762Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6382345Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6390260Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6398393Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6405254Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6412228Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6419941Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6427627Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6434351Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6441733Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6449905Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6457346Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6464470Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6472495Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6479616Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6487219Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6504569Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6507470Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6514490Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6523289Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6530382Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6537483Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6544437Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6551761Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6559392Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6566438Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6573655Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6581622Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6588926Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6596380Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6603812Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6611112Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6617942Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6625334Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6632888Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6641050Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6648678Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6655871Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6663200Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6670321Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6677355Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6684671Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6691719Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6716836Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6723930Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6731956Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6739081Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6747519Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6755455Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6763091Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6771402Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6779502Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6787716Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6795767Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6804535Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6812576Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6821299Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6830826Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6841977Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6853126Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6864398Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6874696Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6885220Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6890452Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6898128Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6905722Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6912874Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6920771Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6928024Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6934755Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6942143Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6949648Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6957193Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6964284Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6971706Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6978753Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6986052Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.6993421Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7000752Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7008326Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7015354Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7022360Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7029495Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7036656Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7044154Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7051454Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7058318Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7066157Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7072999Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7079659Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7086942Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7094097Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7101362Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7108696Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7115598Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7122639Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7129624Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7136751Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7144675Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7152827Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7160457Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7167711Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7175721Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7183100Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7191133Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7199453Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7207349Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7214933Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7222464Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7230097Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7238216Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7246164Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7253767Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7263055Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7271093Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7278786Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7286961Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7294955Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7302442Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7309910Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7318159Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7325844Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7334006Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7342338Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7352761Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7363700Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7373658Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7381037Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7388675Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7396218Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7403688Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7410954Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7417663Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7425086Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7432420Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7439387Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7446999Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7454614Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7461552Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7468653Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7475553Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7482697Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7489831Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7497086Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7503929Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7510919Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7518174Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7525071Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7531808Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7538698Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7545482Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7552083Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7558676Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7565658Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7572295Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7578959Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7585874Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7592671Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7599653Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7606315Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7613171Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7620019Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7626970Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7633889Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7640505Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7646715Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.7654511Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9042547Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9048789Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9055279Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9062090Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9068926Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9075139Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9082005Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9088528Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9094965Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9101512Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9108053Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9115372Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9122623Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9129187Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9135962Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9142429Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9148813Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9155652Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9162301Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9169176Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9176149Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9183764Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9190811Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9197378Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9204164Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9210790Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9216980Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9223828Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9230457Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9236686Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9243594Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9250432Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9256867Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9263468Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9271883Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9279401Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9286528Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9293661Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9300888Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9308114Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9315823Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9323293Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9330629Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9338012Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9345348Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9353648Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9364205Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9374493Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9385296Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9394336Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9401822Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9409649Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9416821Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9424356Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9431810Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9439266Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9445830Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9452605Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9459228Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9465793Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9472971Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9479648Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9486889Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9493970Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9500415Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9507222Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9514691Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9521516Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9528406Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9535092Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9541095Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9547535Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9554671Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9561534Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9568312Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9575021Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9582108Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9596226Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9598815Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9604982Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9611250Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9617775Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9624771Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9631657Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9638314Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9645171Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9652083Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9658820Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9666176Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9673892Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9680566Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9687371Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9694390Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9700741Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9707540Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9714520Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9721516Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9727963Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9735131Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9741660Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9747896Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9754514Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9761218Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9767362Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9774437Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9781389Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9788001Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9794717Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9801695Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9817917Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9824472Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9831452Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9838112Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9845475Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9852210Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9859048Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9866055Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9874795Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9882924Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9893519Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9903572Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9912154Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9922969Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9933330Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9942399Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9983325Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9991058Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:25.9997555Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0004313Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0030253Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0036711Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0043640Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0050385Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0056827Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0063441Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0070072Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0077176Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0083954Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0092182Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0099592Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0106891Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0114506Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0122319Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0129780Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0136925Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0144415Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0151708Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0158476Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0166540Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0174026Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0181039Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0188769Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0196689Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0204066Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0211497Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0218516Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0226460Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0234706Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0241816Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0249528Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0257112Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0264934Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0272259Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0279619Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0287081Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0294288Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0302225Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0309850Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0317436Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0325606Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0332329Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0339694Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0347097Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0354340Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0362769Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0370409Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0380973Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0391069Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0401897Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0411940Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0422162Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0429918Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0437219Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0445040Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0452729Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0459574Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0466565Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0474352Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0481127Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0487714Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0494744Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0502570Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0509271Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0515919Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0523309Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0530384Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0537271Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0544207Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0551260Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0558090Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0565035Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0571782Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0578717Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0586626Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0593963Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0601013Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0608056Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0614793Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0621795Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0628586Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0636215Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0642836Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0649685Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0656695Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0663477Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0670287Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0676760Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0684377Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0691581Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0698015Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0704803Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0711928Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0718979Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0725795Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0732807Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0739419Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0746292Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0753512Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0760302Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0767100Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0774656Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0782187Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0789191Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0796086Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0803216Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0809894Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0816498Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0823424Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0830453Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0836731Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0843786Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0850429Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0857555Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0864551Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0871746Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0878348Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0887491Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0895243Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0905891Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0916179Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0926427Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0937929Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0948184Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0955950Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0963566Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.0970736Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1011735Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1017996Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1025595Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1032737Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1039642Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1046397Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1053312Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1060774Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1067336Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1073935Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1081636Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1088317Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1101437Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1114915Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1121345Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1127888Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1134739Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1141747Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1148603Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1155352Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1162183Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1168640Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1175368Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1183044Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1189687Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1196950Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1204495Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1212299Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1220057Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1227867Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1235266Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1242865Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1250904Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1258246Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1265555Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1273407Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1281435Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1288682Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1297166Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1305054Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1312592Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1320289Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1327432Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1336355Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1343260Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1351129Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1358471Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1366627Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1374902Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1385022Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1395384Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1404644Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1415963Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1424698Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1432846Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1440654Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1447342Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1454758Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1461990Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1469932Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1477001Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1483823Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1491293Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1498998Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1506920Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1513770Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1520545Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1527868Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1535969Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1542890Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1550584Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1557399Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1564128Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1572074Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1579391Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1586213Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1593452Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1600495Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1608172Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1615268Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1622516Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1629588Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1636390Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1644323Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1651811Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1659705Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1667317Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1675274Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1683968Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1691261Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1698839Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1707164Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1715843Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1723154Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1732140Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1739668Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1747535Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1756057Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1763948Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1771098Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1778980Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1787442Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1795127Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1802694Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1810172Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1818427Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1826101Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1833818Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1842744Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1850267Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1864631Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1872746Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1883681Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1892931Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1900585Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1909127Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1916418Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1924280Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1931787Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1938814Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1945888Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1953273Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1960590Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1967236Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1979193Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1986570Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.1993417Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2000503Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2007214Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2014395Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2021480Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2028995Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2036757Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2044224Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2051472Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2058435Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2065899Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2072728Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2079626Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2086426Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2093310Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2100414Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2107492Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2114927Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2121869Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2128774Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2135942Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2143168Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2150593Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2157526Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2165014Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2172248Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2179235Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2186250Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2194179Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2202905Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2210878Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2218350Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2226641Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2234275Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2242488Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2250559Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2258479Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2266052Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2274135Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2282042Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2290028Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2297814Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2305779Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2314194Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2322070Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2329384Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2337488Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2345431Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2353412Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2361749Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2369489Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2377388Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2387406Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2397962Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2406397Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2416996Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2426034Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2433551Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2442181Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2449625Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2457567Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2464653Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2472460Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2479757Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2486513Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2493369Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2500651Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2508264Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2515167Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2522642Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2529743Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2537028Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2544167Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2551359Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2558360Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2565605Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2573055Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2580350Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2591048Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2597852Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2604917Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2612113Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2624277Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2630641Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2637828Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2644761Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2652560Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2659607Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2666705Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2673973Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2680955Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2687810Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2696148Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2704456Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2718809Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2725795Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2732908Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2739817Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2747122Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2754101Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2761371Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2767919Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2774376Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2780905Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2788212Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2795871Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2803718Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2811414Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2818892Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2826563Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2834015Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2842004Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2849872Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2857827Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2865268Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2873243Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2881635Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2891573Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2901601Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2912014Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2921372Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2928665Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2936246Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2943874Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2951642Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2958297Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2965160Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2973071Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2979804Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.2986558Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3028520Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3035356Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3042102Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3048583Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3055424Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3062266Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3068798Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3075368Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3081810Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3088346Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3095155Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3102281Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3109481Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3116313Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3123135Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3130089Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3136866Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3144074Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3151135Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3165802Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3172899Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3179650Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3186207Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3193626Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3201170Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3209142Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3217283Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3224732Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3232266Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3240003Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3248130Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3255669Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3263295Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3270994Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3278689Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3285891Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3293708Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3301288Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3309202Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3316743Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3324226Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3331975Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3339659Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3347435Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3354619Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3361544Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3369017Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3376655Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3385315Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3395606Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3405733Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3413533Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3421636Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3429731Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3436430Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3443957Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3451315Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3458701Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3465574Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3472842Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3479766Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3486711Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3494442Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3501296Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3507961Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3514771Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3521538Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3528060Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3534669Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3541896Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3548958Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3555606Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3561942Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3568198Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3575076Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3581591Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3588505Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3595887Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3602753Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3609496Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3616588Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3623201Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3630383Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3636910Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3643562Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3650464Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3656922Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3663637Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3670227Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3676903Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3683942Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3690804Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3699026Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3706539Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3714135Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3722380Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3729987Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3737638Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3746104Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3753736Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3761267Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3768890Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3777043Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3784856Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3792871Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3800432Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3808419Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3816718Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3824288Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3832593Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3840595Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3848149Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3855484Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3863866Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3871483Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3879240Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3886838Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3897526Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3908184Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3916458Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3924496Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3932952Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3939814Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3947009Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3953711Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3961631Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3968084Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3975012Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3981826Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3988650Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.3996461Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4003130Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4009927Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4016497Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4023384Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4030087Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4037234Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4045221Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4052081Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4059070Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4066132Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4073302Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4080050Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4086834Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4093755Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4100568Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4107605Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4114580Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4121422Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4128089Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4134957Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4141683Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4149168Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4157318Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4165392Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4173064Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4180848Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4188572Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4196023Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4203928Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4212399Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4220176Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4227791Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4235122Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4243223Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4250862Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4257812Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4265065Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4272487Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4279607Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4286895Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4294117Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4301194Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4307929Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4314781Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4321780Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4328773Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4336156Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4344257Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4352240Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4396931Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4405938Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4413434Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4421285Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4429304Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4436838Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4443714Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4472100Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4479173Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4487040Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4494152Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4500981Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4507921Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4514567Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4521527Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4528046Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4534734Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4543455Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4551273Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4558569Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4565727Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4573362Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4581214Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4588600Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4595725Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4602927Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4611411Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4618653Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4625772Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4643908Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4644932Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4648788Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4655851Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4663035Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4670723Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4678612Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4685611Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4692930Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4700780Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4708898Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4716219Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4723550Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4731483Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4739025Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4746491Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4754169Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4761658Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4768835Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4776795Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4784190Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4791968Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4799362Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4807647Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4815067Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4822532Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4829894Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4837415Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4845513Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4853268Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4860641Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4869453Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4876968Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4884346Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4891921Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4900326Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4907277Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4915002Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4921761Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4929491Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4936084Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4943140Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4949953Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4956541Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4963803Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4970977Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.4977435Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5018957Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5025639Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5032956Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5040212Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5047355Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5054272Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5061358Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5068064Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5075036Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5081867Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5088397Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5094923Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5101781Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5109038Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5115880Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5122959Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5129423Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5136016Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5142770Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5149689Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5156645Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5163138Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5170171Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5177069Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5184412Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5191310Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5198271Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5206325Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5213416Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5220487Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5227403Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5234424Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5241922Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5249037Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5256401Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5263403Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5270853Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5278089Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5285440Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5292404Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5299484Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5307466Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5314964Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5323040Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5331078Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5338769Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5346174Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5353703Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5362135Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5370437Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5378176Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5386466Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5395016Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5405598Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5416415Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5428047Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5439126Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5447191Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5455681Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5463517Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5470598Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5478260Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5485273Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5493007Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5499806Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5506541Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5513585Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5520491Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5527768Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5535044Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5542292Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5549000Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5555960Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5562766Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5569947Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5576509Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5583291Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5590670Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5597451Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5604296Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5611293Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5618452Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5625997Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5632760Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5639608Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5646158Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5653208Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5660005Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5666804Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5673803Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5680628Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5687741Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5694458Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5701498Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5708470Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5715947Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5722801Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5729581Z copying torch\include\ATen\ops\_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5736819Z copying torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5743781Z copying torch\include\ATen\ops\_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5750736Z copying torch\include\ATen\ops\_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5757605Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5764780Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5771689Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5778437Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5785989Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5793052Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5799735Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5806647Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5814735Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5822728Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5833201Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5841141Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5849748Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5856783Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5863742Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5871988Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5879677Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5886493Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5893414Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5900320Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5907637Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5915083Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5921971Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5929183Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5935911Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5943209Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5950361Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5957479Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5964347Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5971303Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5978309Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5985027Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5991871Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.5998653Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6006069Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6020929Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6031273Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6041847Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6052997Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6060946Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6068732Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6075866Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6083350Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6090632Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6097614Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6104622Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6111804Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6118770Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6125708Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6132594Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6140274Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6165922Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6173348Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6180776Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6188234Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6195161Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6202237Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6209966Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6216696Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6223252Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6229743Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6237066Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6243813Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6250642Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6257552Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6264558Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6271620Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6278146Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6284575Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6292351Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6299474Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6306136Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6313551Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6320583Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6327195Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6334174Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6341052Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6347753Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6354757Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6361759Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6368682Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6375445Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6382396Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6389264Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6396911Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6414515Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6424943Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6435796Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6446565Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6456847Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6464921Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6473093Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6480777Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6487789Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6495322Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6502349Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6510492Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6517442Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6524091Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6530795Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6538436Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6545304Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6552266Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6559919Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6566947Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6573861Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6580788Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6594917Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6602078Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6609783Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6616585Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6623521Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6630681Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6637650Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6645048Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6652225Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6659401Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6666492Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6673776Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6680875Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6689420Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6696453Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6703703Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6710989Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6718029Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6725359Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6732471Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6740767Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6748833Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6756722Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6764951Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6772226Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6780017Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6787794Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6795484Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6803192Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6810729Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6819156Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6827253Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6834662Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6842304Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6850217Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6875109Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6882566Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6890242Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6898374Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6906576Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6915560Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6924978Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6933590Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6942225Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6950774Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6959711Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6967971Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.6976185Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7017944Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7025063Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7032364Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7040130Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7047308Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7054729Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7062765Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7070294Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7077394Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7084768Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7092399Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7100201Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7107342Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7114839Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7122814Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7130497Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7138017Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7145095Z copying torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7152150Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7158908Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7165803Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7173359Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7180255Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7187047Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7193669Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7201569Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7208566Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7217429Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7225066Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7232211Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7239550Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7247693Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7255403Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7334362Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7342585Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7350455Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7357343Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7365079Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7371699Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7379983Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7387831Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7395618Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7403339Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7413097Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7422356Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7430891Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7441490Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7450525Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7457392Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7465687Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7473843Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7480539Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7488354Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7495110Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7502529Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7521100Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7527995Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7535908Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7542767Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7550091Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7556950Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7564097Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7571395Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7578919Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7585989Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7593932Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7600850Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7607779Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7614887Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7622008Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7629200Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7635940Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7643015Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7650022Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7656614Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7663602Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7670629Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7677545Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7684816Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7691848Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7699058Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7705858Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7713009Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7721857Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7755668Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7764098Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7858754Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7867907Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7876130Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7883869Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7891888Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7899438Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7907477Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7917868Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7928410Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7938789Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7949256Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7957902Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7965207Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7973019Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7980445Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7987647Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.7994823Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8002238Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8009137Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8015827Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8022775Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8030666Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8037797Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8044668Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8051503Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8058230Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8066129Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8073368Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8080254Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8087653Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8094667Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8101766Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8108530Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8115807Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8123038Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8129923Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8136585Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8143731Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8150950Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8157773Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8165409Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8172706Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8179839Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8188633Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8195514Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8202216Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8209113Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8216014Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8223034Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8229934Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8242002Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8249228Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8255902Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8262773Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8270327Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8277984Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8285780Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8293048Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8301244Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8309127Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8316469Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8324125Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8332876Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8340427Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8347799Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8355701Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8363137Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8370147Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8377782Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8386138Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8393844Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8401920Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8409582Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8418025Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8429449Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8439714Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8448594Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8456369Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8464676Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8471689Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8479646Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8486357Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8494450Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8501877Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8508900Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8515885Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8523424Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8530846Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8538105Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8545261Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8552172Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8559286Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8566392Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8573471Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8580250Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8587191Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8594350Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8601401Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8608325Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8615208Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8622254Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8629600Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8636249Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8643472Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8650290Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8656750Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8663927Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8670871Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8677792Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8684697Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8691823Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8699054Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8705788Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8712673Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8719700Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8726769Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8734800Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8742349Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8750060Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8757716Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8765301Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8773009Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8780404Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8788534Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8795985Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8803314Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8811146Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8818688Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8826462Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8833952Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8841533Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8850084Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8858129Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8893530Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8901020Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8908297Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8916838Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8927249Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8937553Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8946423Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8953782Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8961617Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8969195Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8982523Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8987548Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.8995301Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9002511Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9009344Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9016448Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9024100Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9031256Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9038332Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9044983Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9051765Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9058858Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9065596Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9072574Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9080743Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9087635Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9112779Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9119710Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9126649Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9133452Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9140498Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9148059Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9154637Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9161703Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9168473Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9175181Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9182689Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9219169Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9227111Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9235289Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9242993Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9250485Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9257998Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9266042Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9273975Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9281694Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9289370Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9297123Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9305075Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9312646Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9320138Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9328111Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9335660Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9343584Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9351026Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9359146Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9366962Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9374282Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9382534Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9390861Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9398540Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9405858Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9413943Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9422248Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9432575Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9440867Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9448794Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9456729Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9464230Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9471487Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9478359Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9486406Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9493538Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9500955Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9507833Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9515574Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9522804Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9530263Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9537123Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9544257Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9551162Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9558088Z copying torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9565001Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9574341Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9581860Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9589457Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9597075Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9604614Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9612646Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9620487Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9628053Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9636418Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9644112Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9651631Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9659426Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9667154Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9674585Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9683258Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9690437Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9698183Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9706045Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9713388Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9721675Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9763357Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9778169Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9785726Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9794160Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9801770Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9809499Z copying torch\include\ATen\ops\_fused_rms_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9817532Z copying torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9825553Z copying torch\include\ATen\ops\_fused_rms_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9833362Z copying torch\include\ATen\ops\_fused_rms_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9840896Z copying torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9848922Z copying torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9856634Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9864324Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9872215Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9880191Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9888085Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9895515Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9903202Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9911227Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9918919Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9929175Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9937597Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9945576Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9953818Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9960697Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9968276Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9975258Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9982664Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9990115Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:26.9997092Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0004267Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0011380Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0019585Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0026215Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0033326Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0040407Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0047114Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0053800Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0061167Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0068339Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0076462Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0083442Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0090873Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0098183Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0105001Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0112079Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0119262Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0126043Z copying torch\include\ATen\ops\_grouped_mm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0132734Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0139993Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0146787Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0153686Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0161363Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0168233Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0180949Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0188253Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0195458Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0202279Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0209519Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0216415Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0223466Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0230665Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0238374Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0246037Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0253657Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0267862Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0275785Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0283851Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0291216Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0299063Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0307617Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0315446Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0323106Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0331274Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0339184Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0347110Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0354665Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0362824Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0370811Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0378549Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0386847Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0394471Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0401318Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0410079Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0418131Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0426062Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0435523Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0445666Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0455214Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0462861Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0470455Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0477839Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0486283Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0493203Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0500141Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0508221Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0515374Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0521870Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0528740Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0535691Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0549689Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0556075Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0563498Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0570890Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0577385Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0585057Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0591947Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0599220Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0606300Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0613388Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0620350Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0627394Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0634707Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0641703Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0648362Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0655174Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0662491Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0669297Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0675958Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0683678Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0691414Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0698099Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0704955Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0712319Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0718964Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0725929Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0732919Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0740431Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0749332Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0756579Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0764046Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0771720Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0779607Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0788003Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0794884Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0802182Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0810407Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0817892Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0826035Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0833506Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0841728Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0850172Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0857407Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0897993Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0905687Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0913887Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0921479Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0931622Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0942088Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0953298Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0961551Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0969376Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0977001Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0984486Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.0992016Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1005713Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1012444Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1019689Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1027386Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1034409Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1046845Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1053846Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1060604Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1067782Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1074600Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1088384Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1095799Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1103569Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1111366Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1118195Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1131389Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1138236Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1144825Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1151722Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1159193Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1165756Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1173497Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1180344Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1187770Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1195322Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1203435Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1211369Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1219115Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1226987Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1235051Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1243073Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1250722Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1258568Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1266708Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1273999Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1335593Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1344393Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1351882Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1374342Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1382013Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1394238Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1402350Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1409512Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1418776Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1427010Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1442753Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1452678Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1461209Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1468693Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1475723Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1483345Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1490710Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1497686Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1505759Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1512819Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1519663Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1527549Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1535674Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1543359Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1551133Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1563127Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1570698Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1583019Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1590783Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1597974Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1605004Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1611907Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1619975Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1627262Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1636632Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1643969Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1651481Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1658559Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1665618Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1673458Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1680741Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1693657Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1701621Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1710227Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1718543Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1726685Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1735482Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1743868Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1752143Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1760581Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1768407Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1776196Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1784589Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1829360Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1837819Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1846111Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1853947Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1862727Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1870470Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1878634Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1887160Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1895556Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1903648Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1912500Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1921488Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1930195Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1939452Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1950411Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1959111Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1967221Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1977894Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1982312Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1990532Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.1997144Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2004839Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2011741Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2018873Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2026539Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2034544Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2041349Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2048206Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2055428Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2062573Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2069854Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2077402Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2089569Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2096615Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2103465Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2110818Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2117497Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2130032Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2136885Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2143799Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2150526Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2157392Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2163927Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2170928Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2177918Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2184913Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2192541Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2200486Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2207941Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2216007Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2224225Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2231828Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2240040Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2251801Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2259830Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2267206Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2274572Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2282490Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2290533Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2297724Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2304691Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2311721Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2318767Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2325708Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2332727Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2340058Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2346802Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2353973Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2361438Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2369241Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2377203Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2384916Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2392922Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2400942Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2408669Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2416041Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2423474Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2431267Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2439144Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2450053Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2459767Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2467965Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2482557Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2490050Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2497112Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2504828Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2511869Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2519365Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2525409Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2532129Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2539671Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2546790Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2560240Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2576846Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2583959Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2590935Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2598508Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2605869Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2612905Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2620082Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2627164Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2634057Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2646398Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2653284Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2660240Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2667608Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2674442Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2681450Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2688614Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2696703Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2703600Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2710426Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2722548Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2729532Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2736423Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2743392Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2750772Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2758023Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2764938Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2772101Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2779814Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2786833Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2793860Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2801426Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2808399Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2815747Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2823042Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2835849Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2843017Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2850275Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2858022Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2865012Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2872127Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2879315Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2886195Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2894031Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2902201Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2910308Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2917882Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2925473Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2932644Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2940627Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2957255Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2968156Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2978813Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2987386Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.2995388Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3003996Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3011626Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3019792Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3028133Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3035799Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3049413Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3056209Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3063017Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3069699Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3076195Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3083008Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3090052Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3097690Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3104787Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3112302Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3124625Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3131601Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3138649Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3145512Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3152793Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3164826Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3171737Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3178577Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3185486Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3192740Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3214600Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3221211Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3228247Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3234986Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3241477Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3248354Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3256049Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3262938Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3269906Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3276432Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3283399Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3290083Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3296876Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3303831Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3310760Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3317553Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3324574Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3331664Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3338666Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3345493Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3352664Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3360086Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3367676Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3375192Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3382795Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3395880Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3403183Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3411414Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3419255Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3426791Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3434661Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3463297Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3473840Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3484049Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3493108Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3500617Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3508077Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3515179Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3522800Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3529625Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3537138Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3544672Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3551311Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3558082Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3565016Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3579281Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3585784Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3593001Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3600035Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3607359Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3620127Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3626909Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3633782Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3641054Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3648922Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3655774Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3662541Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3669183Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3685433Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3692545Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3699569Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3705983Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3712888Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3720115Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3726878Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3740754Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3747603Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3754735Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3762259Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3770064Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3777617Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3784981Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3792894Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3800839Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3808271Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3815625Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3823302Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3831244Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3838322Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3845719Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3853330Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3861258Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3869075Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3876350Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3883949Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3892179Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3899949Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3907722Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3915072Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3923250Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3931089Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3938531Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3946673Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3956810Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3967519Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3976889Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3984983Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.3993045Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4000922Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4008780Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4015867Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4024270Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4031585Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4038481Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4045326Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4059069Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4066327Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4073318Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4080352Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4102682Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4110539Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4117362Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4124410Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4131411Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4138480Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4145961Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4153112Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4160294Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4167440Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4174485Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4181837Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4189494Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4196332Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4203194Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4210695Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4217809Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4224977Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4232016Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4239298Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4246306Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4259764Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4267331Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4274397Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4281753Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4288777Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4295964Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4302791Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4310432Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4318384Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4326242Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4333915Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4341656Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4349147Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4357587Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4365048Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4372423Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4380055Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4387785Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4395787Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4403188Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4410661Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4418713Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4426412Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4433541Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4441065Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4448585Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4457196Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4467685Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4478092Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4488696Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4496918Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4504937Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4512945Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4520012Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4527489Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4534362Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4542140Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4549831Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4556463Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4563317Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4570632Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4577767Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4584462Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4591758Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4598608Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4605704Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4613226Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4620026Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4626966Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4635029Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4641769Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4648394Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4655105Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4661644Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4668904Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4675730Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4682673Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4689319Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4696446Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4703382Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4710436Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4717752Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4725044Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4732695Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4740233Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4748351Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4755649Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4763235Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4770645Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4778580Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4786052Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4793491Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4801016Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4808727Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4817077Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4825047Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4832809Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4840831Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4848743Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4855769Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4863185Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4871977Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4879488Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4916224Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4923974Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4931832Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4940043Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4947903Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4957772Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4969043Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4979641Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4990110Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.4998811Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5006851Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5015152Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5022133Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5029838Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5037286Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5044933Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5051887Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5058908Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5066029Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5073831Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5081435Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5088394Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5095263Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5102406Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5109753Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5116838Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5124049Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5137819Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5145137Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5152157Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5159360Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5165913Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5172892Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5179865Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5186664Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5193858Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5201679Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5214048Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5220827Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5228049Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5235052Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5242082Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5249508Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5256273Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5263441Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5272862Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5283434Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5291512Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5298786Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5306160Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5313195Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5320032Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5334355Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5341870Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5349103Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5355970Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5362886Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5370040Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5377205Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5384155Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5391350Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5398296Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5405940Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5412765Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5419716Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5426887Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5434361Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5448040Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5455261Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5462434Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5470337Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5478226Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5485388Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5492603Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5516952Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5523750Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5530839Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5538150Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5545156Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5552017Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5558963Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5566256Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5573254Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5580163Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5587587Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5594641Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5601412Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5615195Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5622504Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5629593Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5636704Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5643710Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5651575Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5658615Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5665685Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5672987Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5680594Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5687641Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5694418Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5701098Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5708515Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5715451Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5728759Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5735484Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5742148Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5749454Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5756163Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5763100Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5771017Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5779906Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5786946Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5793865Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5808024Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5815259Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5823011Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5830891Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5838303Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5845487Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5852633Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5860256Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5867724Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5875117Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5882407Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5890214Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5897627Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5905874Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5913104Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5920519Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5928464Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5935848Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5943963Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5959536Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5970437Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5980339Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5988073Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.5995764Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6003433Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6011102Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6018205Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6024961Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6032525Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6039420Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6046988Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6054091Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6061845Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6068843Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6075759Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6083657Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6090682Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6097813Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6104885Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6112260Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6119767Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6127953Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6135948Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6143009Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6150715Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6157690Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6164679Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6171891Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6179128Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6186529Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6193713Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6200600Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6207587Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6214908Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6222174Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6235736Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6243151Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6250130Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6257662Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6264989Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6279261Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6287264Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6295153Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6302884Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6311002Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6318993Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6326596Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6334201Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6342276Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6350217Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6364201Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6371810Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6380339Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6388353Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6395516Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6402892Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6411212Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6418618Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6426229Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6433957Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6442205Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6449828Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6457348Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6465043Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6487037Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6494898Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6502792Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6510482Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6517822Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6524759Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6532110Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6539718Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6547521Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6554876Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6561872Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6569102Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6575946Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6583177Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6590338Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6599885Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6610217Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6618383Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6626121Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6634153Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6642426Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6657048Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6665151Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6673449Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6681494Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6689040Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6697272Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6705429Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6713055Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6720949Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6728887Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6742396Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6749895Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6757428Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6765954Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6772813Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6779568Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6786536Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6793238Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6800060Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6807309Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6814632Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6821621Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6828473Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6836528Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6843418Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6850469Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6857770Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6864705Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6871869Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6879112Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6886382Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6893061Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6900470Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6907063Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6913989Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6921591Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6928655Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6935576Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6942706Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6949605Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6956540Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6963658Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6970733Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6977654Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6984688Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.6991990Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7025638Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7032522Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7039473Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7046242Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7060628Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7067390Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7074754Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7081830Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7088590Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7095519Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7102278Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7111142Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7118766Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7125920Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7133513Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7140428Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7147490Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7154975Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7162012Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7168869Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7176269Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7183296Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7190221Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7197641Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7204380Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7211232Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7218138Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7225351Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7232264Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7239156Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7246311Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7253403Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7260477Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7267753Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7275448Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7283171Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7290618Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7298257Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7305463Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7319962Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7326736Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7333523Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7340379Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7347850Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7360300Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7367461Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7374311Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7381443Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7389074Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7396131Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7404063Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7410799Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7435345Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7442239Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7449147Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7456571Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7464636Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7472818Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7483682Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7494465Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7502686Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7511010Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7519676Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7526430Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7533822Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7541083Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7549263Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7574909Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7582651Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7589509Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7596695Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7603725Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7610664Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7617586Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7624993Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7632478Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7639657Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7646592Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7653592Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7660778Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7667940Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7675295Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7683172Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7690713Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7697956Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7705479Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7712569Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7720415Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7727526Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7734345Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7741653Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7749483Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7756423Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7763679Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7770826Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7777757Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7785580Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7794239Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7802382Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7810478Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7818785Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7826860Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7834540Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7842505Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7850469Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7872607Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7879705Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7886819Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7893942Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7901911Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7909440Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7917240Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7924780Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7932526Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7939876Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7947184Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7955009Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7962044Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7969330Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7976413Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7983728Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.7991022Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8005241Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8012010Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8019482Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8026820Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8034123Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8041405Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8048454Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8055682Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8062648Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8070091Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8077248Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8084618Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8091892Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8098876Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8106001Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8112821Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8119884Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8133753Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8140610Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8147675Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8155177Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8162254Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8175853Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8183991Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8190804Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8197881Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8204851Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8212099Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8219662Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8227285Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8234267Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8241511Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8248866Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8256616Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8263568Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8270691Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8277558Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8291497Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8299019Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8306875Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8314568Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8323109Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8330657Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8338030Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8345937Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8354145Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8361811Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8369245Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8377153Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8384816Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8393394Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8401291Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8415040Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8422005Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8429445Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8436813Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8445007Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8452124Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8459652Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8467489Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8474873Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8481992Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8490036Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8497601Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8504884Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8512061Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8519790Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8526832Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8534401Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8541528Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8548797Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8556368Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8568718Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8575691Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8581846Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8589054Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8595942Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8602955Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8609570Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8616517Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8622644Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8639796Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8646063Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8652946Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8659333Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8666325Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8673210Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8680110Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8686836Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8693838Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8707892Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8714897Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8728264Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8735335Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8743004Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8749812Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8757198Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8764196Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8770813Z copying torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8777726Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8784599Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8791502Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8798603Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8805745Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8813193Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8820667Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8827802Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8834538Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8842141Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8849949Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8856932Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8863834Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8870848Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8877703Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8884986Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8891887Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8899011Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8905842Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8912662Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8919573Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8926311Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8933144Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8940464Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8947706Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8965163Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8966177Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8968654Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8981767Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8988818Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-09-07T06:45:27.8994757Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-09-07T06:45:27.8997831Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-09-07T06:45:27.9003987Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-09-07T06:45:27.9009744Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-09-07T06:45:27.9012595Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-09-07T06:45:27.9024621Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-09-07T06:45:27.9030744Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-09-07T06:45:27.9036752Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-09-07T06:45:27.9050687Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-09-07T06:45:27.9060401Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-09-07T06:45:27.9068594Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-09-07T06:45:27.9072765Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-09-07T06:45:27.9080896Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9086850Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9095882Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9104583Z copying torch\include\c10\core\AllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9111655Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9122373Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9130289Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9136767Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9150254Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9156474Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9162735Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9168915Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9175761Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9181811Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9188180Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9194505Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9202077Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9208269Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9214721Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9221945Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9228972Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9241089Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9248105Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9254670Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9262169Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9275457Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9282431Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9289968Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9296713Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9303899Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9311596Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9318589Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9325628Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9336732Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9343109Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9350209Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9356650Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9362960Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9369599Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9377410Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9385384Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9392305Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9399603Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9406894Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9414375Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9425570Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9432942Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9441494Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9449420Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9456997Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9463981Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-09-07T06:45:27.9470333Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9473583Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9483603Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9490860Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9498132Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9509868Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9516150Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9523631Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9543652Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9550113Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9556518Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9563156Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9570468Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9576998Z copying torch\include\c10\core\impl\PyInterpreterHooks.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9583287Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9590086Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9596640Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9603145Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9609623Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-09-07T06:45:27.9615138Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9618078Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9625184Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9631830Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9639163Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9651090Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9664398Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9671001Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9677525Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9683775Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9690447Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9696959Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9704069Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9710515Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9717548Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-09-07T06:45:27.9723196Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-09-07T06:45:27.9726870Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-09-07T06:45:27.9733830Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-09-07T06:45:27.9741225Z copying torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-09-07T06:45:27.9747448Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-09-07T06:45:27.9751025Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-09-07T06:45:27.9757338Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-09-07T06:45:27.9763379Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-09-07T06:45:27.9768812Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9771617Z copying torch\include\c10\metal\atomic.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9786007Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9793206Z copying torch\include\c10\metal\expm1f.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9800159Z copying torch\include\c10\metal\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9807484Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9815139Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9822934Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9835889Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9843848Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-09-07T06:45:27.9850079Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-09-07T06:45:27.9853666Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-09-07T06:45:27.9860907Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-09-07T06:45:27.9867555Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-09-07T06:45:27.9872205Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-09-07T06:45:27.9879859Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-09-07T06:45:27.9887321Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-09-07T06:45:27.9893250Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9896776Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9903772Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9917042Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9924083Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9937909Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9944211Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9958037Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9965121Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9971783Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9979225Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:27.9987133Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0000366Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0007929Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0015043Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0022512Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0029290Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0036345Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0067417Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0074876Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0081426Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0087875Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0094419Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0101174Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0107714Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0119410Z copying torch\include\c10\util\Enumerate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0125592Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0132034Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0138818Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0145953Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0152463Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0158971Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0165464Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0171796Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0179672Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0186111Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0197950Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0210309Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0216841Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0223233Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0229734Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0237121Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0243698Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0249947Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0256283Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0267881Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0274475Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0281967Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0288909Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0295496Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0301795Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0307944Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0321366Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0327694Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0334133Z copying torch\include\c10\util\IntrusiveList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0341173Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0348934Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0361496Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0367981Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0379322Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0386490Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0392764Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0399293Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0406274Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0412840Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0419440Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0426226Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0433450Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0440670Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0448147Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0470802Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0478422Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0487330Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0496514Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0521636Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0531224Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0541096Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0548518Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0555190Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0562910Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0569359Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0576431Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0582920Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0594796Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0601310Z copying torch\include\c10\util\Semaphore.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0607938Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0614715Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0621298Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0629476Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0636556Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0643194Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0649776Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0656710Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0662692Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0674525Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0681455Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0688559Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0701885Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0709006Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0715107Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0721907Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0728641Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0735046Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0741136Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0747954Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0754733Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0761316Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0774981Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0781617Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0788226Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0794704Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0802371Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0809190Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0816360Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0823748Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-09-07T06:45:28.0829890Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-09-07T06:45:28.0839537Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-09-07T06:45:28.0846293Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-09-07T06:45:28.0853050Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-09-07T06:45:28.0859442Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-09-07T06:45:28.0874025Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-09-07T06:45:28.0881359Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-09-07T06:45:28.0887903Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-09-07T06:45:28.0891579Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-09-07T06:45:28.0898283Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-09-07T06:45:28.0902901Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-09-07T06:45:28.0909155Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-09-07T06:45:28.0913132Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-09-07T06:45:28.0920887Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-09-07T06:45:28.0934014Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-09-07T06:45:28.0939629Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-09-07T06:45:28.0942595Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-09-07T06:45:28.0950179Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-09-07T06:45:28.0956628Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-09-07T06:45:28.0963756Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.0966625Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.0981582Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.0990320Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.0999869Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.1013729Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.1021141Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.1027957Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-09-07T06:45:28.1034527Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-09-07T06:45:28.1037361Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-09-07T06:45:28.1044753Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-09-07T06:45:28.1051028Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-09-07T06:45:28.1056635Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:28.1063982Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:28.1070223Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:28.1076880Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:28.1088363Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:28.1094846Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:28.1100837Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:28.1106783Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1109551Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1115702Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1123068Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1130237Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1137144Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1143966Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1149788Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1168327Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1176255Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1182455Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1188957Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1195889Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1202957Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1209403Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-09-07T06:45:28.1214851Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-09-07T06:45:28.1217938Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-09-07T06:45:28.1224407Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-09-07T06:45:28.1240370Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-09-07T06:45:28.1245940Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1249849Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1256135Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1262449Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1270401Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1277485Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1288357Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1294702Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1303445Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1317545Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1324704Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1332218Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1339486Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1347612Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1356140Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1363759Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1370940Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1378825Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1386782Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1393914Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1401541Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1413880Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1421353Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1428897Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1435924Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1443620Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1450996Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1458894Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1467158Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1492935Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1502924Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1515484Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1523860Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1531841Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1538640Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1546206Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1553388Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1560756Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1568200Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1595433Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1603258Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1610189Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1616856Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1628422Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1635376Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1642016Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1651019Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1657661Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1664899Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1673032Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-09-07T06:45:28.1679543Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-09-07T06:45:28.1682610Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-09-07T06:45:28.1689237Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-09-07T06:45:28.1696278Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-09-07T06:45:28.1702587Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-09-07T06:45:28.1709283Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-09-07T06:45:28.1721775Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-09-07T06:45:28.1728580Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-09-07T06:45:28.1731613Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-09-07T06:45:28.1737089Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-09-07T06:45:28.1740387Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-09-07T06:45:28.1747610Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-09-07T06:45:28.1753578Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-09-07T06:45:28.1756673Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-09-07T06:45:28.1764361Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-09-07T06:45:28.1770231Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-09-07T06:45:28.1773553Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-09-07T06:45:28.1780764Z copying torch\include\google\protobuf\compiler\js\well_known_types_embed.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-09-07T06:45:28.1787145Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-09-07T06:45:28.1790946Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-09-07T06:45:28.1798255Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-09-07T06:45:28.1804251Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-09-07T06:45:28.1807814Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-09-07T06:45:28.1813893Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-09-07T06:45:28.1817185Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-09-07T06:45:28.1823239Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-09-07T06:45:28.1826722Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-09-07T06:45:28.1839570Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1842577Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1851054Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1858542Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1865626Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1874576Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1889745Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1898905Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1907115Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1914614Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-09-07T06:45:28.1921756Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1924727Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1932712Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1940349Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1947619Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1954338Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1967735Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1979545Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1987072Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.1994991Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2005088Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2013417Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2020856Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2028119Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2035166Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2042282Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2048685Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2055469Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2063513Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-09-07T06:45:28.2069652Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2072541Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2079300Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2085967Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2097667Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2104605Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2111436Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2124639Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2131323Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-09-07T06:45:28.2137060Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2139939Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2146647Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2153960Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2164266Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2170853Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2177115Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2183431Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2189898Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2196203Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2202638Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2208878Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2221373Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2227561Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2233785Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2240453Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2246604Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-09-07T06:45:28.2252937Z creating build\lib.win-amd64-cpython-39\torch\include\legacy 2025-09-07T06:45:28.2255935Z copying torch\include\legacy\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include\legacy 2025-09-07T06:45:28.2261969Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-09-07T06:45:28.2264923Z copying torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-09-07T06:45:28.2271530Z copying torch\include\mimalloc-2.2\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-09-07T06:45:28.2278487Z copying torch\include\mimalloc-2.2\mimalloc-stats.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-09-07T06:45:28.2290199Z copying torch\include\mimalloc-2.2\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-09-07T06:45:28.2296823Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2300914Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2309419Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2315999Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2322468Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2333706Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2339626Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2346879Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2353843Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2361157Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2368652Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2375765Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2382712Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2390787Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2397661Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2404745Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2413966Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2421274Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2428682Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2435833Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:28.2442171Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2445434Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2452716Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2459928Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2467886Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2480702Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2487664Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2499025Z copying torch\include\pybind11\critical_section.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2508584Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2517502Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2526594Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2534555Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2543405Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2551278Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2564012Z copying torch\include\pybind11\gil_simple.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2571122Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2577946Z copying torch\include\pybind11\native_enum.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2591269Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2599422Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2612877Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2619197Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2628281Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2635958Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2642771Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2649857Z copying torch\include\pybind11\subinterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2657245Z copying torch\include\pybind11\trampoline_self_life_support.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2663901Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2670464Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2676792Z copying torch\include\pybind11\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-09-07T06:45:28.2687689Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-09-07T06:45:28.2690533Z copying torch\include\pybind11\conduit\pybind11_conduit_v1.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-09-07T06:45:28.2697339Z copying torch\include\pybind11\conduit\pybind11_platform_abi_id.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-09-07T06:45:28.2703732Z copying torch\include\pybind11\conduit\wrap_include_python_h.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit 2025-09-07T06:45:28.2716339Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2719130Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2758966Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2766147Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2772312Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2779100Z copying torch\include\pybind11\detail\dynamic_raw_ptr_cast_if_possible.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2790977Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2798654Z copying torch\include\pybind11\detail\function_record_pyobject.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2806062Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2813851Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2828285Z copying torch\include\pybind11\detail\native_enum_data.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2835946Z copying torch\include\pybind11\detail\pybind11_namespace_macros.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2843205Z copying torch\include\pybind11\detail\struct_smart_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2850312Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2857642Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2865507Z copying torch\include\pybind11\detail\using_smart_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2879843Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-09-07T06:45:28.2886339Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-09-07T06:45:28.2889185Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-09-07T06:45:28.2895539Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-09-07T06:45:28.2903832Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-09-07T06:45:28.2910328Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-09-07T06:45:28.2913095Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-09-07T06:45:28.2919116Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-09-07T06:45:28.2922618Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-09-07T06:45:28.2930505Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-09-07T06:45:28.2937501Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-09-07T06:45:28.2943899Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-09-07T06:45:28.2958521Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-09-07T06:45:28.2963710Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.2967242Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.2974183Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.2980857Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.2987505Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3007169Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3016565Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3025330Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3032287Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3039425Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3046495Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3052664Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3059977Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3066016Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3078272Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3084367Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3091073Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3097368Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3104578Z copying torch\include\torch\csrc\PyInterpreterHooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3111234Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3117598Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3124178Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3130528Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3137212Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3143377Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3154409Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3161749Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3167916Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3174075Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3180320Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3186997Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3192888Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3199005Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-09-07T06:45:28.3204901Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3209898Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3216059Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3222548Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3228755Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3235155Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3240967Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3253923Z copying torch\include\torch\csrc\api\include\torch\expanding_array.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3264857Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3272443Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3279867Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3287039Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3294436Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3301698Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3309188Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3315816Z copying torch\include\torch\csrc\api\include\torch\ordered_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3323774Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3331141Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3338587Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3345181Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3353727Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3360315Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3367137Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3374062Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3381151Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:28.3387569Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3391104Z copying torch\include\torch\csrc\api\include\torch\data\dataloader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3398602Z copying torch\include\torch\csrc\api\include\torch\data\dataloader_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3420979Z copying torch\include\torch\csrc\api\include\torch\data\datasets.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3427665Z copying torch\include\torch\csrc\api\include\torch\data\example.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3434522Z copying torch\include\torch\csrc\api\include\torch\data\iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3446139Z copying torch\include\torch\csrc\api\include\torch\data\samplers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3452732Z copying torch\include\torch\csrc\api\include\torch\data\transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3459751Z copying torch\include\torch\csrc\api\include\torch\data\worker_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:28.3466192Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:28.3469794Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:28.3476872Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:28.3484113Z copying torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:28.3490768Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3494345Z copying torch\include\torch\csrc\api\include\torch\data\datasets\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3501395Z copying torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3509876Z copying torch\include\torch\csrc\api\include\torch\data\datasets\map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3518135Z copying torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3526405Z copying torch\include\torch\csrc\api\include\torch\data\datasets\shared.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3534806Z copying torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3542214Z copying torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:28.3556252Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:28.3559552Z copying torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:28.3566943Z copying torch\include\torch\csrc\api\include\torch\data\detail\queue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:28.3573154Z copying torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:28.3579562Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3582750Z copying torch\include\torch\csrc\api\include\torch\data\samplers\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3589587Z copying torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3596002Z copying torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3602300Z copying torch\include\torch\csrc\api\include\torch\data\samplers\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3608741Z copying torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3621321Z copying torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3628830Z copying torch\include\torch\csrc\api\include\torch\data\samplers\stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:28.3634256Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:28.3637765Z copying torch\include\torch\csrc\api\include\torch\data\transforms\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:28.3644220Z copying torch\include\torch\csrc\api\include\torch\data\transforms\collate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:28.3650766Z copying torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:28.3657396Z copying torch\include\torch\csrc\api\include\torch\data\transforms\stack.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:28.3664096Z copying torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:28.3669874Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-09-07T06:45:28.3673025Z copying torch\include\torch\csrc\api\include\torch\detail\static.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-09-07T06:45:28.3679624Z copying torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-09-07T06:45:28.3685292Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nativert 2025-09-07T06:45:28.3688497Z copying torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nativert 2025-09-07T06:45:28.3693924Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3697414Z copying torch\include\torch\csrc\api\include\torch\nn\cloneable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3703969Z copying torch\include\torch\csrc\api\include\torch\nn\functional.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3710541Z copying torch\include\torch\csrc\api\include\torch\nn\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3717138Z copying torch\include\torch\csrc\api\include\torch\nn\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3724112Z copying torch\include\torch\csrc\api\include\torch\nn\modules.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3735864Z copying torch\include\torch\csrc\api\include\torch\nn\options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3742586Z copying torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3749702Z copying torch\include\torch\csrc\api\include\torch\nn\pimpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3755823Z copying torch\include\torch\csrc\api\include\torch\nn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:28.3761025Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3764350Z copying torch\include\torch\csrc\api\include\torch\nn\functional\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3771460Z copying torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3778228Z copying torch\include\torch\csrc\api\include\torch\nn\functional\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3784969Z copying torch\include\torch\csrc\api\include\torch\nn\functional\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3796079Z copying torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3802170Z copying torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3814761Z copying torch\include\torch\csrc\api\include\torch\nn\functional\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3821824Z copying torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3828415Z copying torch\include\torch\csrc\api\include\torch\nn\functional\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3834915Z copying torch\include\torch\csrc\api\include\torch\nn\functional\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3841842Z copying torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3848310Z copying torch\include\torch\csrc\api\include\torch\nn\functional\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3854797Z copying torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3861667Z copying torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3868899Z copying torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3875475Z copying torch\include\torch\csrc\api\include\torch\nn\functional\vision.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:28.3887402Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3890370Z copying torch\include\torch\csrc\api\include\torch\nn\modules\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3897422Z copying torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3903439Z copying torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3910240Z copying torch\include\torch\csrc\api\include\torch\nn\modules\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3917092Z copying torch\include\torch\csrc\api\include\torch\nn\modules\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3927941Z copying torch\include\torch\csrc\api\include\torch\nn\modules\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3934370Z copying torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3941719Z copying torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3948939Z copying torch\include\torch\csrc\api\include\torch\nn\modules\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3961805Z copying torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3968154Z copying torch\include\torch\csrc\api\include\torch\nn\modules\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3974902Z copying torch\include\torch\csrc\api\include\torch\nn\modules\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3981844Z copying torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3988912Z copying torch\include\torch\csrc\api\include\torch\nn\modules\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.3995248Z copying torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4002037Z copying torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4009242Z copying torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4015666Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4023714Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4031863Z copying torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4040463Z copying torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4048614Z copying torch\include\torch\csrc\api\include\torch\nn\modules\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4055675Z copying torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:28.4061911Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4065296Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4072612Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4079699Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4086340Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4098210Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4146318Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4153284Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4160461Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4167608Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4174389Z copying torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:28.4186257Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4189236Z copying torch\include\torch\csrc\api\include\torch\nn\options\activation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4196495Z copying torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4203598Z copying torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4209872Z copying torch\include\torch\csrc\api\include\torch\nn\options\conv.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4216252Z copying torch\include\torch\csrc\api\include\torch\nn\options\distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4234031Z copying torch\include\torch\csrc\api\include\torch\nn\options\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4240619Z copying torch\include\torch\csrc\api\include\torch\nn\options\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4247738Z copying torch\include\torch\csrc\api\include\torch\nn\options\fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4254229Z copying torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4260592Z copying torch\include\torch\csrc\api\include\torch\nn\options\linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4267361Z copying torch\include\torch\csrc\api\include\torch\nn\options\loss.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4274632Z copying torch\include\torch\csrc\api\include\torch\nn\options\normalization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4281361Z copying torch\include\torch\csrc\api\include\torch\nn\options\padding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4288001Z copying torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4294692Z copying torch\include\torch\csrc\api\include\torch\nn\options\pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4308124Z copying torch\include\torch\csrc\api\include\torch\nn\options\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4314994Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4322674Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4330212Z copying torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4337454Z copying torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4345004Z copying torch\include\torch\csrc\api\include\torch\nn\options\vision.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:28.4351146Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-09-07T06:45:28.4354666Z copying torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-09-07T06:45:28.4361145Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:28.4364658Z copying torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:28.4372510Z copying torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:28.4379326Z copying torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:28.4385310Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4388363Z copying torch\include\torch\csrc\api\include\torch\optim\adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4394854Z copying torch\include\torch\csrc\api\include\torch\optim\adam.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4401638Z copying torch\include\torch\csrc\api\include\torch\optim\adamw.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4408371Z copying torch\include\torch\csrc\api\include\torch\optim\lbfgs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4415386Z copying torch\include\torch\csrc\api\include\torch\optim\optimizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4422039Z copying torch\include\torch\csrc\api\include\torch\optim\rmsprop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4436866Z copying torch\include\torch\csrc\api\include\torch\optim\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4443847Z copying torch\include\torch\csrc\api\include\torch\optim\sgd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:28.4456193Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:28.4459858Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:28.4467306Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:28.4475018Z copying torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:28.4484636Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-09-07T06:45:28.4487594Z copying torch\include\torch\csrc\api\include\torch\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-09-07T06:45:28.4493268Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:28.4497393Z copying torch\include\torch\csrc\api\include\torch\serialize\archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:28.4504349Z copying torch\include\torch\csrc\api\include\torch\serialize\input-archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:28.4511475Z copying torch\include\torch\csrc\api\include\torch\serialize\output-archive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:28.4520437Z copying torch\include\torch\csrc\api\include\torch\serialize\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:28.4533065Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4537593Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4547444Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4555737Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4562793Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4574570Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4581855Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4588719Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4601847Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4608551Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4615837Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4622494Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4629007Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4636001Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4643102Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4649491Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4656290Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4662968Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4669803Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4676032Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4682481Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4689932Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4696427Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4707405Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4713978Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4720531Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4727042Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4733747Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4740087Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4746901Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4753524Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4759970Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4770745Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4776924Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4783485Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4790756Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4797032Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4803255Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4809966Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4816672Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4829317Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4835759Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4842182Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4852346Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4858735Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4865731Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4872066Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-09-07T06:45:28.4877891Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:28.4881305Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:28.4888615Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:28.4894839Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:28.4901375Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:28.4911644Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:28.4918123Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:28.4924344Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:28.4927420Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:28.4939331Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:28.4945868Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:28.4957935Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:28.4964397Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:28.4971664Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:28.4978039Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:28.4980876Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:28.4987545Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:28.4995087Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:28.5002276Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:28.5014701Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:28.5023643Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:28.5030416Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-09-07T06:45:28.5034066Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-09-07T06:45:28.5041784Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5045997Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5053153Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5063180Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5072294Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5081270Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5093555Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5100837Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5108242Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5115262Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5121429Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5128528Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5134615Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5141753Z copying torch\include\torch\csrc\cuda\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-09-07T06:45:28.5147393Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:28.5151535Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:28.5157953Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:28.5164331Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:28.5169919Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-09-07T06:45:28.5174275Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-09-07T06:45:28.5181762Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-09-07T06:45:28.5187685Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-09-07T06:45:28.5190480Z copying torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-09-07T06:45:28.5196412Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-09-07T06:45:28.5358589Z copying torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-09-07T06:45:28.5364834Z copying torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-09-07T06:45:28.5370491Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5373610Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5380759Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5387287Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5494401Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5504050Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5511442Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5527047Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5554784Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5564657Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5574481Z copying torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:28.5582561Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5586019Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5593275Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5600031Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5606941Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5613263Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5620211Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5633444Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5639783Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5646346Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:28.5652208Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:28.5655422Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:28.5661596Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:28.5674691Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:28.5684631Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:28.5687638Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:28.5721619Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5724462Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5730813Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5737168Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5743493Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5754512Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5760976Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5767364Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5773707Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5780084Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5786702Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5793187Z copying torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5799538Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5806016Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5812432Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5818846Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5825423Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5833133Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5840306Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5847434Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5854934Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5866846Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5876739Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5884136Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5891069Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5898369Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5906087Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5913283Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:28.5919274Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-09-07T06:45:28.5922513Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-09-07T06:45:28.5928718Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-09-07T06:45:28.5933523Z copying torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-09-07T06:45:28.5940670Z copying torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-09-07T06:45:28.5947436Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-09-07T06:45:28.5950820Z copying torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-09-07T06:45:28.5957781Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-09-07T06:45:28.5963397Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.5967489Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.5974624Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.5982284Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.5988917Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6074683Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6081022Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6087647Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6094364Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6107542Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6114092Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6121248Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6127482Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6133615Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6139906Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-09-07T06:45:28.6145203Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-09-07T06:45:28.6148187Z copying torch\include\torch\csrc\export\example_upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-09-07T06:45:28.6154697Z copying torch\include\torch\csrc\export\pt2_archive_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-09-07T06:45:28.6160698Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-09-07T06:45:28.6166651Z copying torch\include\torch\csrc\export\upgrader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-09-07T06:45:28.6172264Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-09-07T06:45:28.6175311Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-09-07T06:45:28.6180918Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-09-07T06:45:28.6183680Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-09-07T06:45:28.6189025Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-09-07T06:45:28.6192131Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-09-07T06:45:28.6198644Z copying torch\include\torch\csrc\inductor\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-09-07T06:45:28.6205633Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-09-07T06:45:28.6211945Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-09-07T06:45:28.6222189Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-09-07T06:45:28.6225935Z copying torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-09-07T06:45:28.6232254Z copying torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-09-07T06:45:28.6237762Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:28.6240823Z copying torch\include\torch\csrc\inductor\aoti_include\array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:28.6247015Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:28.6252942Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:28.6259212Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:28.6265107Z copying torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:28.6277537Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:28.6282999Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-09-07T06:45:28.6286204Z copying torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-09-07T06:45:28.6292462Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-09-07T06:45:28.6297952Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:28.6300987Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:28.6307683Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:28.6313809Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:28.6324770Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:28.6331096Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:28.6337517Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:28.6342691Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6345913Z copying torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6352478Z copying torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6358537Z copying torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6369481Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6375950Z copying torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6394042Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6395201Z copying torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6398165Z copying torch\include\torch\csrc\inductor\aoti_runtime\model_container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6405825Z copying torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6412965Z copying torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6420167Z copying torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6427153Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6434043Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6441645Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:28.6448282Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:28.6451426Z copying torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:28.6458079Z copying torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:28.6465463Z copying torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:28.6478450Z copying torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:28.6485476Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:28.6491558Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:28.6494397Z copying torch\include\torch\csrc\inductor\aoti_torch\c\macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:28.6501236Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:28.6509303Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:28.6516455Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:28.6524816Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:28.6535244Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:28.6548433Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:28.6552773Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:28.6560070Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:28.6568357Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:28.6581153Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:28.6589041Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:28.6594512Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:28.6597554Z copying torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:28.6604657Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:28.6610912Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:28.6616838Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:28.6622573Z copying torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:28.6639296Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:28.6677741Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:28.6681220Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:28.6687041Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:28.6693027Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:28.6699064Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:28.6710712Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-09-07T06:45:28.6714043Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-09-07T06:45:28.6719812Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-09-07T06:45:28.6722553Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-09-07T06:45:28.6728856Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-09-07T06:45:28.6735161Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-09-07T06:45:28.6740339Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-09-07T06:45:28.6743165Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-09-07T06:45:28.6755779Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-09-07T06:45:28.6761952Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-09-07T06:45:28.6768142Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-09-07T06:45:28.6775795Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-09-07T06:45:28.6785936Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6793747Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6800105Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6807140Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6813331Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6824111Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6831070Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6837944Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6845093Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6858489Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:28.6864501Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-09-07T06:45:28.6869407Z copying torch\include\torch\csrc\jit\backends\coreml\cpp\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-09-07T06:45:28.6875252Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:28.6878456Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:28.6885403Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:28.6892634Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:28.6904980Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:28.6912232Z copying torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:28.6918513Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-09-07T06:45:28.6922136Z copying torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-09-07T06:45:28.6928135Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-09-07T06:45:28.6931563Z copying torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-09-07T06:45:28.6937446Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-09-07T06:45:28.6940688Z copying torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-09-07T06:45:28.6947010Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-09-07T06:45:28.6950293Z copying torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-09-07T06:45:28.6962308Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-09-07T06:45:28.6967037Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-09-07T06:45:28.6973489Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.6976516Z copying torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.6983580Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.6991028Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.6997955Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7004510Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7011186Z copying torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7022959Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7031899Z copying torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7041840Z copying torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7058096Z copying torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7065486Z copying torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7073246Z copying torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:28.7079281Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:28.7082310Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:28.7088739Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:28.7095902Z copying torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:28.7101316Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-09-07T06:45:28.7104253Z copying torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-09-07T06:45:28.7111493Z copying torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-09-07T06:45:28.7116993Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7120168Z copying torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7126305Z copying torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7132542Z copying torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7139781Z copying torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7151065Z copying torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7157091Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7163820Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7170349Z copying torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7176754Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7183035Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7190216Z copying torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:28.7196136Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-09-07T06:45:28.7198940Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-09-07T06:45:28.7204752Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7207729Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7214614Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7220626Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7231161Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7237531Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7243551Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7249929Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7256297Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7262650Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7269198Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7275312Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7282127Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7288474Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7295519Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7301600Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7313719Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7320383Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7326714Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7333564Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7340132Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7351231Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7364047Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7370566Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7376793Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7390689Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7397723Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7404515Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7412688Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:28.7418894Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7436419Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7443664Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7450698Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7457643Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7469451Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7476286Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7483971Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7491158Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7498329Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7505364Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7512169Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7519150Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7526122Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:28.7531856Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7536654Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7546664Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7556376Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7570432Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7583903Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7591213Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7598164Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7605145Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7612017Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7618487Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7624801Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7631956Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7638314Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7644476Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7650870Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7657555Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7664546Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7671061Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7707581Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7714895Z copying torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7727954Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7734246Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:28.7745279Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:28.7748734Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:28.7755684Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:28.7762524Z copying torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:28.7863604Z copying torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:28.7872225Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.7877662Z copying torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.7887559Z copying torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.7895270Z copying torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.7989085Z copying torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.8002622Z copying torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.8009402Z copying torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.8016279Z copying torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:28.8022593Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:28.8025993Z copying torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:28.8034849Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:28.8043601Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:28.8058913Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:28.8062092Z copying torch\include\torch\csrc\jit\mobile\train\export_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:28.8071384Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:28.8081707Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:28.8093813Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-09-07T06:45:28.8097091Z copying torch\include\torch\csrc\jit\mobile\train\optim\sgd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-09-07T06:45:28.8103439Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:28.8108067Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:28.8116561Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:28.8123629Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:28.8130744Z copying torch\include\torch\csrc\jit\operator_upgraders\version_map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:28.8230505Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8233857Z copying torch\include\torch\csrc\jit\passes\add_if_then_else.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8240586Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8246654Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8252950Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8343486Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8351173Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8373332Z copying torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8380046Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8393928Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8401161Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8408607Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8415477Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8422282Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8429093Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8436350Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8443308Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8450700Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8457878Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8464860Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8475928Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8482928Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8489969Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8497050Z copying torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8504408Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8514786Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8522993Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8536820Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8546035Z copying torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8560746Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8568308Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8575587Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8582969Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8589458Z copying torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8596530Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8602895Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8610523Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8617098Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8629701Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8643367Z copying torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8649759Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8656001Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8662389Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8675133Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8681353Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8687765Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8694655Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8705273Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8712158Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8718438Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8724648Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8737900Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8744318Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8750951Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8757540Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8763901Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8770160Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8785994Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8792215Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8798660Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8805414Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8811517Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8817749Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8824331Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8830950Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8837556Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8844159Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8850932Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8861984Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8875561Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8882277Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8889166Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8896945Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8904503Z copying torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8911811Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8931126Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8939506Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8952201Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8959353Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8966709Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8973807Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8981419Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8989308Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.8996758Z copying torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.9003874Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.9011047Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.9023114Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.9030263Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:28.9037158Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-09-07T06:45:28.9042115Z copying torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-09-07T06:45:28.9050115Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9054764Z copying torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9061811Z copying torch\include\torch\csrc\jit\passes\onnx\constant_fold.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9070761Z copying torch\include\torch\csrc\jit\passes\onnx\constant_map.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9078303Z copying torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9090625Z copying torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9096811Z copying torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9104237Z copying torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9110723Z copying torch\include\torch\csrc\jit\passes\onnx\function_extraction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9117799Z copying torch\include\torch\csrc\jit\passes\onnx\function_substitution.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9130865Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9137192Z copying torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9143236Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9150431Z copying torch\include\torch\csrc\jit\passes\onnx\onnx_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9156487Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9163023Z copying torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9176077Z copying torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9182311Z copying torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9188764Z copying torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9195639Z copying torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9203109Z copying torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:28.9213716Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:28.9217903Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:28.9224671Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:28.9231400Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:28.9244529Z copying torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:28.9250613Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9253759Z copying torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9262007Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9269048Z copying torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9275782Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9289050Z copying torch\include\torch\csrc\jit\passes\quantization\insert_observers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9296021Z copying torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9303519Z copying torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9312005Z copying torch\include\torch\csrc\jit\passes\quantization\quantization_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9318853Z copying torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:28.9324775Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:28.9328324Z copying torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:28.9335527Z copying torch\include\torch\csrc\jit\passes\utils\memory_dag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:28.9342789Z copying torch\include\torch\csrc\jit\passes\utils\optimization_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:28.9355244Z copying torch\include\torch\csrc\jit\passes\utils\op_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:28.9362359Z copying torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:28.9368443Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9372251Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9379000Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9386108Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9393145Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9400872Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9412383Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9419135Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9426695Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9434440Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9441358Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9448498Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9455597Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9463104Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9470566Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9477393Z copying torch\include\torch\csrc\jit\python\update_graph_executor_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9484610Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-09-07T06:45:28.9490687Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9493933Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9501649Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9508791Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9515691Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9527780Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9534577Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9541229Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9548123Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9555271Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9561652Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9576895Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9583728Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9590297Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9597460Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9603632Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9609929Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9616466Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9622837Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9629516Z copying torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9635989Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9646807Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9655424Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9663089Z copying torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9672582Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9681377Z copying torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9690233Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9698310Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9705258Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9712788Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9725594Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9733038Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:28.9739084Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:28.9742644Z copying torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:28.9750109Z copying torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:28.9758442Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:28.9772332Z copying torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:28.9783268Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9786909Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9793680Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9801143Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9807859Z copying torch\include\torch\csrc\jit\runtime\static\memory_planner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9814826Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9841083Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9852993Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9860347Z copying torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9867064Z copying torch\include\torch\csrc\jit\runtime\static\static_method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9874593Z copying torch\include\torch\csrc\jit\runtime\static\te_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:28.9880224Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9883373Z copying torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9890379Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9896845Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9908014Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9915074Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9921762Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9928213Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9934580Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9940805Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9947254Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9953681Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9960522Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9968109Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9974813Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9981129Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9987787Z copying torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:28.9994312Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:29.0000800Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:29.0007381Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:29.0014177Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:29.0024942Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:29.0031589Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:29.0037280Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0040278Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0046591Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0052886Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0059241Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0070550Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0078784Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0088887Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0106414Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0116147Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0125525Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0154908Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0168881Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0175399Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0188488Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0200962Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0207743Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0214166Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0220675Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0227219Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0233842Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0240031Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0251488Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0257879Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0264808Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0271501Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0278103Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0284506Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0291278Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0297721Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0304355Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0311135Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0318325Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0328953Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0335701Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0342064Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0348765Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0355846Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0363500Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0370803Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0377403Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0384609Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0398718Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:29.0405259Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0408511Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0415758Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0422467Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0429549Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0436826Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0456042Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0462999Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0470563Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0477921Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:29.0484446Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:29.0487147Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:29.0493904Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:29.0499540Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:29.0503785Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:29.0510417Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:29.0516847Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:29.0523471Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:29.0535178Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0537851Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0545220Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0554833Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0565021Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0574459Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0587100Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0594009Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0600937Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0608156Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0614807Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0621436Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0634761Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0641147Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0647593Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0654125Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0660967Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0667421Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0680110Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0686639Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0692941Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0699532Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0707001Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0713002Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0719225Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:29.0725478Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-09-07T06:45:29.0733265Z copying torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-09-07T06:45:29.0738629Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-09-07T06:45:29.0741564Z copying torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-09-07T06:45:29.0747813Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-09-07T06:45:29.0753093Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:29.0756025Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:29.0765552Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:29.0779092Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:29.0784470Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-09-07T06:45:29.0787841Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-09-07T06:45:29.0793834Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-09-07T06:45:29.0798949Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0807002Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0813400Z copying torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0826443Z copying torch\include\torch\csrc\lazy\ts_backend\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0832797Z copying torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0842843Z copying torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0849429Z copying torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0855894Z copying torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0869083Z copying torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0876236Z copying torch\include\torch\csrc\lazy\ts_backend\ts_node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0884239Z copying torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:29.0890114Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:29.0893153Z copying torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:29.0900016Z copying torch\include\torch\csrc\lazy\ts_backend\ops\generic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:29.0907292Z copying torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:29.0913238Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-09-07T06:45:29.0916519Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-09-07T06:45:29.0923462Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-09-07T06:45:29.0930560Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-09-07T06:45:29.0936609Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-09-07T06:45:29.0940110Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-09-07T06:45:29.0945981Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-09-07T06:45:29.0949113Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-09-07T06:45:29.0954785Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-09-07T06:45:29.0958417Z copying torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-09-07T06:45:29.0971242Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-09-07T06:45:29.0974607Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-09-07T06:45:29.0980084Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-09-07T06:45:29.0983538Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-09-07T06:45:29.0990775Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-09-07T06:45:29.0997508Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-09-07T06:45:29.1003155Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1007076Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1013362Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1028019Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1034868Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1049116Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1058424Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1066850Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1082937Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1091416Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1098538Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1105469Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-09-07T06:45:29.1111827Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:29.1114992Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:29.1122292Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:29.1128625Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:29.1133980Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:29.1137754Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:29.1144268Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:29.1150834Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:29.1156571Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:29.1159861Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:29.1166387Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:29.1173015Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:29.1184374Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:29.1190084Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-09-07T06:45:29.1193053Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-09-07T06:45:29.1198654Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1202043Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1208200Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1238138Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1244761Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1262303Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1274369Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1280757Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1287158Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1293781Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1300204Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1306752Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1313298Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1319722Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1326187Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1332377Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1338701Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:29.1344499Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1351693Z copying torch\include\torch\csrc\stable\accelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1358053Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1364828Z copying torch\include\torch\csrc\stable\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1371541Z copying torch\include\torch\csrc\stable\stableivalue_conversions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1377984Z copying torch\include\torch\csrc\stable\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1388524Z copying torch\include\torch\csrc\stable\tensor_inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1394953Z copying torch\include\torch\csrc\stable\tensor_struct.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-09-07T06:45:29.1400460Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-09-07T06:45:29.1403320Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-09-07T06:45:29.1408885Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1411667Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1417998Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1424107Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1436765Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1452992Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1459712Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1469271Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1476016Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1482889Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1489808Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1496111Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1503597Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1510522Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1518598Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1525339Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1532271Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1540440Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1548644Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1558848Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1569139Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1584003Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1591903Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1599271Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1606819Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1613710Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1621168Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1627930Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1634558Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1641692Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1648271Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1659346Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1665707Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1672456Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1678970Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1685280Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1691578Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1704091Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1711148Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1717897Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1737868Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1738849Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1745201Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1751383Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1772003Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1778564Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-09-07T06:45:29.1784091Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-09-07T06:45:29.1786999Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-09-07T06:45:29.1792855Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-09-07T06:45:29.1805631Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-09-07T06:45:29.1811153Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\core 2025-09-07T06:45:29.1815359Z copying torch\include\torch\headeronly\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\core 2025-09-07T06:45:29.1820866Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec 2025-09-07T06:45:29.1825453Z copying torch\include\torch\headeronly\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec 2025-09-07T06:45:29.1831938Z copying torch\include\torch\headeronly\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec 2025-09-07T06:45:29.1837499Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256 2025-09-07T06:45:29.1840352Z copying torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256 2025-09-07T06:45:29.1846850Z copying torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256 2025-09-07T06:45:29.1852078Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-09-07T06:45:29.1855012Z copying torch\include\torch\headeronly\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-09-07T06:45:29.1860961Z copying torch\include\torch\headeronly\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-09-07T06:45:29.1868312Z copying torch\include\torch\headeronly\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-09-07T06:45:29.1874164Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1876986Z copying torch\include\torch\headeronly\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1883903Z copying torch\include\torch\headeronly\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1889906Z copying torch\include\torch\headeronly\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1896138Z copying torch\include\torch\headeronly\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1902886Z copying torch\include\torch\headeronly\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1909466Z copying torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1926591Z copying torch\include\torch\headeronly\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1933828Z copying torch\include\torch\headeronly\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1940502Z copying torch\include\torch\headeronly\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1947302Z copying torch\include\torch\headeronly\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1954117Z copying torch\include\torch\headeronly\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1960533Z copying torch\include\torch\headeronly\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1967703Z copying torch\include\torch\headeronly\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1974135Z copying torch\include\torch\headeronly\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1980876Z copying torch\include\torch\headeronly\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1986940Z copying torch\include\torch\headeronly\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1992868Z copying torch\include\torch\headeronly\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.1999081Z copying torch\include\torch\headeronly\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.2005426Z copying torch\include\torch\headeronly\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.2011427Z copying torch\include\torch\headeronly\util\shim_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.2017884Z copying torch\include\torch\headeronly\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util 2025-09-07T06:45:29.2024167Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:29.2031251Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:29.2037520Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:29.2043907Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:29.2050331Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-09-07T06:45:29.2057024Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2075759Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2081981Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2089681Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2096075Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2102454Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2109334Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2115846Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2122623Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2129281Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-09-07T06:45:29.2136255Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2142996Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2149414Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2155838Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2162321Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2169213Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2177052Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2187085Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2197436Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2207217Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2214903Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2222089Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2234385Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2241345Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2248226Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2255858Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2263895Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2271407Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2279587Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2287224Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2295408Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2302765Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2315487Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2322853Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2330420Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2338270Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2345580Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2353461Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2359966Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2366948Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2373248Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2380258Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2387100Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2393517Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2399958Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2411457Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2417663Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2424455Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2430947Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:29.2437031Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-09-07T06:45:29.2440231Z copying torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-09-07T06:45:29.2446720Z copying torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-09-07T06:45:29.2452179Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-09-07T06:45:29.2455370Z copying torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-09-07T06:45:29.2461817Z copying torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-09-07T06:45:29.2468360Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:29.2471361Z copying torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:29.2477845Z copying torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:29.2484214Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:29.2490350Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:29.2496953Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:29.2508111Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:29.2521184Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:29.2527500Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:29.2563252Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:29.2570372Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:29.2577108Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2583581Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2590150Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2597129Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2603660Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2610550Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2617059Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2623875Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2630420Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2636616Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2649819Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2656613Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2662853Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-09-07T06:45:29.2670903Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:29.2679437Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:29.2688458Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:29.2698038Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:29.2707470Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:29.2715119Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-09-07T06:45:29.2722707Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2729832Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2737735Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2745769Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2752803Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2759959Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2773149Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2781187Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2788866Z copying torch\include\ATen\native\cuda\fused_adagrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2808399Z copying torch\include\ATen\native\cuda\fused_adagrad_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2815765Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2822941Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2830510Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2837791Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2844627Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2851448Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2859590Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2867323Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2880074Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2893657Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2900165Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2907373Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2915460Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2923394Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2936566Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2944356Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2951457Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2957945Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2964215Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2972062Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2979026Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2986077Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2993382Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.2999897Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.3006440Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.3013140Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.3019452Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.3025907Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-09-07T06:45:29.3031373Z creating build\lib.win-amd64-cpython-39\torch\include\THC 2025-09-07T06:45:29.3034313Z copying torch\include\THC\THCAtomics.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-09-07T06:45:29.3040370Z copying torch\include\THC\THCDeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-09-07T06:45:29.3045800Z creating build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:29.3050709Z copying torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:29.3056346Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-09-07T06:45:29.3059726Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-09-07T06:45:29.3137090Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-09-07T06:45:29.3143873Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:29.3147589Z copying torch\_inductor\kernel\flex\templates\common.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:29.3161555Z copying torch\_inductor\kernel\flex\templates\flex_attention.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:29.3174704Z copying torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:29.3199600Z copying torch\_inductor\kernel\flex\templates\flex_decode.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:29.3212622Z copying torch\_inductor\kernel\flex\templates\utilities.py.jinja -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:29.3225861Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:29.3238903Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-09-07T06:45:29.3251784Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-09-07T06:45:29.3256663Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-09-07T06:45:29.3262161Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3265094Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3272173Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3278694Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3290067Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3297075Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3303624Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3310267Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-09-07T06:45:29.3315739Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3318591Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3325625Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3331950Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3338462Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3349578Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3355999Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3362076Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3368483Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3376444Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-09-07T06:45:29.3382149Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-09-07T06:45:29.3385217Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-09-07T06:45:29.3391547Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-09-07T06:45:29.3396864Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:29.3403937Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:29.3410216Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:29.3418317Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:29.3428915Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:29.3431916Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:29.3438843Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:29.3445457Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:29.3457000Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:29.3462269Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-09-07T06:45:29.3475701Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-09-07T06:45:29.3476671Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-09-07T06:45:29.3479002Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-09-07T06:45:29.3493551Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:29.3518649Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:29.3532145Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:29.3539134Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:29.3552110Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-09-07T06:45:29.3560410Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-09-07T06:45:29.3584653Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-09-07T06:45:29.3606405Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-09-07T06:45:29.3621028Z copying torch\_dynamo\graph_break_registry.json -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-09-07T06:45:29.3676564Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3691118Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3699515Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3716810Z copying torch\lib\c10_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3727143Z copying torch\lib\caffe2_nvrtc.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3733734Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3742277Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3748913Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.3761187Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.6092971Z copying torch\lib\torch_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8362894Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8370379Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8530290Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8538969Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8546818Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8562321Z copying torch\lib\c10_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8578523Z copying torch\lib\caffe2_nvrtc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8580027Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:29.8588749Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.5088434Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.5108173Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.5133442Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.5487241Z copying torch\lib\libittnotify.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.5497341Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.5549232Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.5900219Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6275402Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6309034Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6318645Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6400585Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6407332Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6418483Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6695669Z copying torch\lib\torch_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6720010Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6730089Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-09-07T06:45:30.6761028Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-09-07T06:45:30.6766673Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-09-07T06:45:30.7007568Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-09-07T06:45:30.7020892Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7024838Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7038571Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7052138Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7070873Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7085020Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7099171Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7113715Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7121060Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7128163Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7135026Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7155790Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7171331Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7185700Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7200308Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7206941Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7214460Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7234169Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7240701Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7252911Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7265599Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7271966Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7278316Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7284704Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7428676Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7435164Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7447816Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7461063Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7473710Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7480760Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7497684Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7510610Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7517604Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7525054Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7546858Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7560626Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7567901Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7575201Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7582835Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7600685Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-09-07T06:45:30.7614551Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7617813Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7624849Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7631855Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7646115Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7659302Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7754871Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7768162Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7781743Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7809275Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7829764Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7857614Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7877141Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7895491Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7942513Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7956126Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7982457Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7988729Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-09-07T06:45:30.7993357Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.7996649Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8009554Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8015886Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8033892Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8048047Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8057492Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8071047Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8099703Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8108542Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8122252Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8135335Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8148568Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8161645Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8168262Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8182108Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8196230Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8230810Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8397828Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8410754Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8423395Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8436894Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8451702Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8458547Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-09-07T06:45:30.8465071Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-09-07T06:45:30.8472985Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:30.8481396Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-09-07T06:45:30.8489168Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-09-07T06:45:30.8497427Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-09-07T06:45:30.8506511Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-09-07T06:45:30.8514091Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-09-07T06:45:31.0591303Z running build_ext 2025-09-07T06:45:31.0652256Z -- Building with NumPy bindings 2025-09-07T06:45:31.0652739Z -- Detected cuDNN at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64, 2025-09-07T06:45:31.0653529Z -- Detected CUDA at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-09-07T06:45:31.0653924Z -- Not using XPU 2025-09-07T06:45:31.0654155Z -- Using MKLDNN 2025-09-07T06:45:31.0654452Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-09-07T06:45:31.0654899Z -- Not using CBLAS in MKLDNN 2025-09-07T06:45:31.0655140Z -- Not using NCCL 2025-09-07T06:45:31.0655364Z -- Building without distributed package 2025-09-07T06:45:31.0655632Z -- Using ITT 2025-09-07T06:45:34.3224958Z Copying functorch._C from functorch\functorch.pyd to C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-09-07T06:45:34.3235627Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-09-07T06:45:34.3258626Z building 'torch._C' extension 2025-09-07T06:45:34.3286439Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-09-07T06:45:34.3299328Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tctorch/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /MD /FS /EHsc 2025-09-07T06:45:34.3570179Z stub.c 2025-09-07T06:45:34.8313910Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64" torch_python.lib /EXPORT:PyInit__C build\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /OUT:build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib /NODEFAULTLIB:LIBCMT.LIB 2025-09-07T06:45:34.8850306Z Creating library build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib and object build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.exp 2025-09-07T06:45:34.9160162Z Generating code 2025-09-07T06:45:34.9684881Z Finished generating code 2025-09-07T06:45:34.9999168Z copying build\temp.win-amd64-cpython-39\Release\torch\csrc\_C.cp39-win_amd64.lib -> build\lib.win-amd64-cpython-39\torch\lib\_C.lib 2025-09-07T06:45:35.0107656Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-09-07T06:45:35.0108305Z !! 2025-09-07T06:45:35.0108435Z 2025-09-07T06:45:35.0108553Z ******************************************************************************** 2025-09-07T06:45:35.0108885Z Please avoid running ``setup.py`` directly. 2025-09-07T06:45:35.0109249Z Instead, use pypa/build, pypa/installer or other 2025-09-07T06:45:35.0109566Z standards-based tools. 2025-09-07T06:45:35.0109746Z 2025-09-07T06:45:35.0110176Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-09-07T06:45:35.0110734Z ******************************************************************************** 2025-09-07T06:45:35.0110950Z 2025-09-07T06:45:35.0111020Z !! 2025-09-07T06:45:35.0111218Z self.initialize_options() 2025-09-07T06:45:35.0188852Z installing to build\bdist.win-amd64\wheel 2025-09-07T06:45:35.0189571Z running install 2025-09-07T06:45:35.0211210Z running install_lib 2025-09-07T06:45:35.0297207Z creating build\bdist.win-amd64\wheel 2025-09-07T06:45:35.0302985Z creating build\bdist.win-amd64\wheel\functorch 2025-09-07T06:45:35.0306798Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-09-07T06:45:35.0310115Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-09-07T06:45:35.0316457Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-09-07T06:45:35.0320511Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-09-07T06:45:35.0327009Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-09-07T06:45:35.0333362Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-09-07T06:45:35.0339119Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-09-07T06:45:35.0351189Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-09-07T06:45:35.0357283Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-09-07T06:45:35.0360552Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-09-07T06:45:35.0366549Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-09-07T06:45:35.0372453Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-09-07T06:45:35.0378461Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-09-07T06:45:35.0382331Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-09-07T06:45:35.0388000Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-09-07T06:45:35.0393581Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-09-07T06:45:35.0399047Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-09-07T06:45:35.0414005Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-09-07T06:45:35.0417708Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-09-07T06:45:35.0420950Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-09-07T06:45:35.0428589Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-09-07T06:45:35.0432993Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-09-07T06:45:35.0439353Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-09-07T06:45:35.0444289Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-09-07T06:45:35.0452410Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-09-07T06:45:35.0463634Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-09-07T06:45:35.0469474Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-09-07T06:45:35.0474445Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-09-07T06:45:35.0481447Z creating build\bdist.win-amd64\wheel\torch 2025-09-07T06:45:35.0485401Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-09-07T06:45:35.0488672Z copying build\lib.win-amd64-cpython-39\torch\accelerator\memory.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-09-07T06:45:35.0494574Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-09-07T06:45:35.0500383Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-09-07T06:45:35.0506051Z creating build\bdist.win-amd64\wheel\torch\amp 2025-09-07T06:45:35.0509155Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-09-07T06:45:35.0515674Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-09-07T06:45:35.0526223Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-09-07T06:45:35.0531696Z creating build\bdist.win-amd64\wheel\torch\ao 2025-09-07T06:45:35.0534858Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-09-07T06:45:35.0537989Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-09-07T06:45:35.0541218Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-09-07T06:45:35.0545199Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\modules 2025-09-07T06:45:35.0550661Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\modules 2025-09-07T06:45:35.0555953Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-09-07T06:45:35.0559163Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:35.0562505Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:35.0568493Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:35.0574241Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:35.0583806Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat\modules 2025-09-07T06:45:35.0593405Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\qat 2025-09-07T06:45:35.0598881Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-09-07T06:45:35.0602142Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:35.0605393Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:35.0608725Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:35.0614314Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:35.0619134Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:35.0624387Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:35.0627840Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:35.0633229Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:35.0638485Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:35.0644000Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:35.0649482Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized\modules 2025-09-07T06:45:35.0658801Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic\quantized 2025-09-07T06:45:35.0663861Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-09-07T06:45:35.0669289Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-09-07T06:45:35.0672605Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-09-07T06:45:35.0675885Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-09-07T06:45:35.0678945Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic\modules 2025-09-07T06:45:35.0684288Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic\modules 2025-09-07T06:45:35.0689003Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\dynamic 2025-09-07T06:45:35.0694153Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-09-07T06:45:35.0697279Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-09-07T06:45:35.0702796Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-09-07T06:45:35.0708425Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-09-07T06:45:35.0713689Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat\modules 2025-09-07T06:45:35.0724031Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-09-07T06:45:35.0728989Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-09-07T06:45:35.0732970Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-09-07T06:45:35.0736267Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-09-07T06:45:35.0743269Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-09-07T06:45:35.0749435Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable\modules 2025-09-07T06:45:35.0754897Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-09-07T06:45:35.0760759Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-09-07T06:45:35.0769631Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-09-07T06:45:35.0773257Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:35.0777059Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:35.0783689Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:35.0789603Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:35.0796312Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic\modules 2025-09-07T06:45:35.0801847Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\dynamic 2025-09-07T06:45:35.0812970Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-09-07T06:45:35.0819548Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0823465Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0829609Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0835355Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0850545Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0857138Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0868689Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0874697Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0880631Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0886616Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0892738Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0898534Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\modules 2025-09-07T06:45:35.0904738Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-09-07T06:45:35.0913826Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:35.0917550Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:35.0924755Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:35.0930485Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:35.0939826Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:35.0947599Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:35.0953673Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference\modules 2025-09-07T06:45:35.0959961Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized\reference 2025-09-07T06:45:35.0965566Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-09-07T06:45:35.0971448Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-09-07T06:45:35.0974829Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-09-07T06:45:35.0978660Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-09-07T06:45:35.0982096Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized\dynamic 2025-09-07T06:45:35.0987578Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized\dynamic 2025-09-07T06:45:35.0992595Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\linear.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-09-07T06:45:35.0998721Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-09-07T06:45:35.1003917Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse\quantized 2025-09-07T06:45:35.1008737Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-09-07T06:45:35.1018028Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-09-07T06:45:35.1023663Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-09-07T06:45:35.1027712Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-09-07T06:45:35.1030953Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1036992Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1042875Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1048648Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1054113Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\n_shadows_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1065381Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1070779Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\qconfig_multi_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1081849Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1087547Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1093033Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-09-07T06:45:35.1097375Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-09-07T06:45:35.1116236Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-09-07T06:45:35.1122392Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-09-07T06:45:35.1127284Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-09-07T06:45:35.1130666Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-09-07T06:45:35.1133915Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-09-07T06:45:35.1154875Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-09-07T06:45:35.1160153Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-09-07T06:45:35.1170679Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-09-07T06:45:35.1175352Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-09-07T06:45:35.1178595Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-09-07T06:45:35.1184302Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-09-07T06:45:35.1189441Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-09-07T06:45:35.1199437Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-09-07T06:45:35.1205261Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-09-07T06:45:35.1209762Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-09-07T06:45:35.1213175Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-09-07T06:45:35.1216656Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\activation_sparsifier 2025-09-07T06:45:35.1222588Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\activation_sparsifier 2025-09-07T06:45:35.1227099Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-09-07T06:45:35.1230552Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_scheduler 2025-09-07T06:45:35.1236856Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_scheduler 2025-09-07T06:45:35.1241852Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:35.1249854Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:35.1255398Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:35.1260979Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-09-07T06:45:35.1268998Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:35.1272532Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:35.1278064Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:35.1283520Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-09-07T06:45:35.1292614Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-09-07T06:45:35.1296775Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:35.1302078Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\data_sparsifier 2025-09-07T06:45:35.1307308Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1310804Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1316325Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1321584Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1332277Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1338289Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\parametrization.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1344250Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1350747Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1357199Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental\pruner 2025-09-07T06:45:35.1362516Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-09-07T06:45:35.1367383Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-09-07T06:45:35.1377346Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-09-07T06:45:35.1383119Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-09-07T06:45:35.1387108Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1390456Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\backend_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1396761Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\executorch.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1403195Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\fbgemm.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1409223Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\native.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1422061Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\onednn.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1428615Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\qnnpack.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1436608Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1444590Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1452600Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\x86.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1460740Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1471295Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1477669Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-09-07T06:45:35.1483680Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1490473Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1501286Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1507663Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-09-07T06:45:35.1510904Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1517965Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1524721Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1529994Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1535400Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1547063Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lower_to_fbgemm.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1553461Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lower_to_qnnpack.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1558480Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1563953Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1569432Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1575148Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1582514Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1588262Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1593569Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1598764Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1604656Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1610502Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1616640Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_lower_to_native_backend.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1624272Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:35.1627897Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\detector.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:35.1634196Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:35.1640139Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:35.1650355Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:35.1656365Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx\_model_report 2025-09-07T06:45:35.1660409Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-09-07T06:45:35.1665643Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1672580Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1676196Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1681871Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1687233Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1692577Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1703539Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\port_metadata_pass.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1708998Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1714821Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1721757Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-09-07T06:45:35.1725194Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation\rewrite.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e\representation 2025-09-07T06:45:35.1731009Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e\representation 2025-09-07T06:45:35.1736154Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1742820Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1748825Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1754398Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-09-07T06:45:35.1758803Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1764517Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1769831Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1775058Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1781048Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1784564Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1790236Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1795541Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1805569Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1810900Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1817228Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1823121Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1829329Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1834693Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-09-07T06:45:35.1840608Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1846720Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1852314Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1857721Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1867034Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1872382Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1878163Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1883536Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1889157Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1894722Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-09-07T06:45:35.1900067Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-09-07T06:45:35.1906057Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-09-07T06:45:35.1909245Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1914722Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1919902Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1925627Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1943248Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1953050Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1960740Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1971135Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1980999Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1989674Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.1999029Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.2005577Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-09-07T06:45:35.2009633Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-09-07T06:45:35.2015976Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-09-07T06:45:35.2021767Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-09-07T06:45:35.2027497Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-09-07T06:45:35.2034565Z creating build\bdist.win-amd64\wheel\torch\backends 2025-09-07T06:45:35.2037753Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-09-07T06:45:35.2041426Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-09-07T06:45:35.2047428Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-09-07T06:45:35.2050561Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-09-07T06:45:35.2057186Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-09-07T06:45:35.2060809Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-09-07T06:45:35.2066387Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-09-07T06:45:35.2072367Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-09-07T06:45:35.2075612Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-09-07T06:45:35.2081048Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-09-07T06:45:35.2085075Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-09-07T06:45:35.2090562Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-09-07T06:45:35.2158588Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-09-07T06:45:35.2164327Z creating build\bdist.win-amd64\wheel\torch\backends\miopen 2025-09-07T06:45:35.2168046Z copying build\lib.win-amd64-cpython-39\torch\backends\miopen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\miopen 2025-09-07T06:45:35.2173194Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-09-07T06:45:35.2176465Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-09-07T06:45:35.2181937Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-09-07T06:45:35.2185236Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-09-07T06:45:35.2190515Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-09-07T06:45:35.2194128Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-09-07T06:45:35.2199804Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-09-07T06:45:35.2235357Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-09-07T06:45:35.2240873Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-09-07T06:45:35.2244600Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-09-07T06:45:35.2300762Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-09-07T06:45:35.2304358Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-09-07T06:45:35.2311105Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-09-07T06:45:35.2315190Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-09-07T06:45:35.2321589Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-09-07T06:45:35.2325028Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-09-07T06:45:35.2331890Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-09-07T06:45:35.2337008Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-09-07T06:45:35.2340862Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-09-07T06:45:35.2347034Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-09-07T06:45:35.2350583Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-09-07T06:45:35.2357132Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-09-07T06:45:35.2362017Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-09-07T06:45:35.2365788Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-09-07T06:45:35.2371908Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-09-07T06:45:35.2379480Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-09-07T06:45:35.2384592Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-09-07T06:45:35.2390949Z creating build\bdist.win-amd64\wheel\torch\bin 2025-09-07T06:45:35.2394931Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2405287Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooAsyncTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2415278Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2589867Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2621987Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2632002Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2720561Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2778073Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2827997Z copying build\lib.win-amd64-cpython-39\torch\bin\test_nativert.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-09-07T06:45:35.2856210Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-09-07T06:45:35.5614045Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-09-07T06:45:35.5619855Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-09-07T06:45:35.5625494Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-09-07T06:45:35.5632141Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-09-07T06:45:35.5635389Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-09-07T06:45:35.5645015Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-09-07T06:45:35.5649757Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-09-07T06:45:35.5653162Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-09-07T06:45:35.5656320Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-09-07T06:45:35.5662016Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-09-07T06:45:35.5667445Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-09-07T06:45:35.5672531Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-09-07T06:45:35.5678034Z creating build\bdist.win-amd64\wheel\torch\csrc 2025-09-07T06:45:35.5681317Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor 2025-09-07T06:45:35.5684743Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:35.5687896Z copying build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime\model.h -> build\bdist.win-amd64\wheel\.\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:35.5693401Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-09-07T06:45:35.5696525Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-09-07T06:45:35.5699695Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-09-07T06:45:35.5705279Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-09-07T06:45:35.5710225Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-09-07T06:45:35.5715645Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-09-07T06:45:35.5720602Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5725540Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5730580Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5736397Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5741781Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5752195Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5757597Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5763476Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5768654Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5774298Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5779158Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5784388Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5790660Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5796124Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5801931Z copying build\lib.win-amd64-cpython-39\torch\cuda\_pin_memory_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5807342Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5813151Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5818348Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-09-07T06:45:35.5825457Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-09-07T06:45:35.5828741Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-09-07T06:45:35.5832276Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5835620Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5841494Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5855022Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5865043Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5870620Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5876229Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5881698Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5888099Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5893442Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\ddp_comm_hooks 2025-09-07T06:45:35.5898713Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-09-07T06:45:35.5904237Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:35.5907754Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\averagers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:35.5913365Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:35.5918541Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:35.5928309Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\model_averaging 2025-09-07T06:45:35.5932786Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-09-07T06:45:35.5940034Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-09-07T06:45:35.5945838Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-09-07T06:45:35.5950259Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-09-07T06:45:35.6004949Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_comm_hooks 2025-09-07T06:45:35.6012931Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_comm_hooks 2025-09-07T06:45:35.6020286Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-09-07T06:45:35.6023597Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_optimizer_overlap 2025-09-07T06:45:35.6029602Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_optimizer_overlap 2025-09-07T06:45:35.6035488Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-09-07T06:45:35.6039560Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-09-07T06:45:35.6045233Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-09-07T06:45:35.6050318Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-09-07T06:45:35.6055700Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.6061195Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-09-07T06:45:35.6064527Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-09-07T06:45:35.6070556Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.6081303Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-09-07T06:45:35.6085124Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6089956Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6095886Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6102330Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6117047Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6122454Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6128030Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6134137Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6139783Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6145172Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6151257Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6157212Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\quantized_hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6162952Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6168425Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6174144Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6179464Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6185931Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6200133Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6201241Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6205332Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6211085Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6216595Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6224923Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6237248Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6242615Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6248359Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6254638Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6260271Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6263779Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\barriers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6269747Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\builder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6275154Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6280595Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6290933Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6296305Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6301655Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\config.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6306891Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6313301Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6318525Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6323764Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-09-07T06:45:35.6329083Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6335207Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6340564Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6346389Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6355546Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_pg_transport.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6362009Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6367690Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_state_dict_stager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6373281Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6378793Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6384383Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6389858Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-09-07T06:45:35.6395191Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.6405412Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.6411376Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.6418189Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.6427405Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-09-07T06:45:35.6431454Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-09-07T06:45:35.6434695Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-09-07T06:45:35.6438532Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-09-07T06:45:35.6445279Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\health_check_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-09-07T06:45:35.6451460Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-09-07T06:45:35.6458708Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent\server 2025-09-07T06:45:35.6466878Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-09-07T06:45:35.6473712Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-09-07T06:45:35.6481803Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-09-07T06:45:35.6486435Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-09-07T06:45:35.6494455Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-09-07T06:45:35.6499863Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-09-07T06:45:35.6506384Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-09-07T06:45:35.6509814Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-09-07T06:45:35.6516297Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-09-07T06:45:35.6521759Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:35.6529997Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:35.6535866Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:35.6539341Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:35.6545514Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:35.6550429Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\errors 2025-09-07T06:45:35.6556283Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:35.6561818Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:35.6569851Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:35.6578635Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:35.6584008Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-09-07T06:45:35.6589326Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:35.6594627Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-09-07T06:45:35.6600742Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6603998Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6609647Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6619433Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6630266Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6636340Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6641750Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6647719Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6652783Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6658136Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6663336Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6668714Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6674140Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-09-07T06:45:35.6679693Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-09-07T06:45:35.6682955Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-09-07T06:45:35.6688190Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\debug_info_logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-09-07T06:45:35.6696348Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\file_based_local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-09-07T06:45:35.6702121Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-09-07T06:45:35.6712504Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-09-07T06:45:35.6719919Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-09-07T06:45:35.6723058Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-09-07T06:45:35.6728395Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-09-07T06:45:35.6731809Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\cycling_iterator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-09-07T06:45:35.6737446Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-09-07T06:45:35.6742649Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils\data 2025-09-07T06:45:35.6747734Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-09-07T06:45:35.6753319Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-09-07T06:45:35.6758567Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-09-07T06:45:35.6770251Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-09-07T06:45:35.6776483Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-09-07T06:45:35.6781705Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-09-07T06:45:35.6788126Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-09-07T06:45:35.6791792Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6798647Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6805974Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6812285Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6818888Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6832457Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6838220Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6844472Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6854764Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6862958Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6869222Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6872601Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6878683Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6885367Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6896734Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6902807Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6910004Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6916526Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6923305Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6930134Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp\_fully_shard 2025-09-07T06:45:35.6935812Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6948155Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6954609Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6962753Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6970734Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6977185Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6985851Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.6991946Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.7004958Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.7015579Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.7021946Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-09-07T06:45:35.7028974Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7035291Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-09-07T06:45:35.7038486Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-09-07T06:45:35.7045044Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-09-07T06:45:35.7049997Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7055404Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-09-07T06:45:35.7059139Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-09-07T06:45:35.7062659Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-09-07T06:45:35.7068839Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-09-07T06:45:35.7073248Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-09-07T06:45:35.7078747Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-09-07T06:45:35.7082019Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-09-07T06:45:35.7087708Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-09-07T06:45:35.7091803Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates\remote_module_template.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit\templates 2025-09-07T06:45:35.7097139Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit\templates 2025-09-07T06:45:35.7101513Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-09-07T06:45:35.7105831Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-09-07T06:45:35.7111193Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-09-07T06:45:35.7114538Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7120352Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7125801Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7135732Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7140912Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7146446Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7154799Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7164664Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7169940Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7175562Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7181072Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7187222Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7192633Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7201749Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7208282Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7213782Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7222028Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-09-07T06:45:35.7231332Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-09-07T06:45:35.7234680Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7240534Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7247786Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7254163Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7263967Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7269397Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7276273Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7285713Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7288659Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7294450Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-09-07T06:45:35.7300186Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7306378Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7312862Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-09-07T06:45:35.7316943Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7323242Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7329190Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7334590Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7348714Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7354607Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7360523Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7366624Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7373037Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-09-07T06:45:35.7376729Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-09-07T06:45:35.7382411Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-09-07T06:45:35.7388026Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7393880Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-09-07T06:45:35.7399665Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7406627Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-09-07T06:45:35.7410243Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-09-07T06:45:35.7414090Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-09-07T06:45:35.7420862Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-09-07T06:45:35.7426969Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-09-07T06:45:35.7433299Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-09-07T06:45:35.7443866Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7450211Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-09-07T06:45:35.7453853Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-09-07T06:45:35.7460924Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-09-07T06:45:35.7467848Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-09-07T06:45:35.7480296Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-09-07T06:45:35.7489097Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-09-07T06:45:35.7497172Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7501547Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7507806Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7513766Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7519695Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7525307Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7531602Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7542100Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7547975Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-09-07T06:45:35.7553360Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7563622Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7570002Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7575389Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7582320Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7591931Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7595134Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7601163Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7606454Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7611798Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7636181Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7641765Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7647811Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7654367Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7660267Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7665825Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7671770Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7677641Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-09-07T06:45:35.7682791Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7688612Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7694307Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7700174Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7706329Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7711860Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7717085Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7722934Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-09-07T06:45:35.7728231Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7733679Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7739268Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-09-07T06:45:35.7748545Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-09-07T06:45:35.7754434Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-09-07T06:45:35.7759968Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-09-07T06:45:35.7763294Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-09-07T06:45:35.7768308Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-09-07T06:45:35.7773474Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-09-07T06:45:35.7784532Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate_with_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-09-07T06:45:35.7790901Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-09-07T06:45:35.7796566Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7802554Z copying build\lib.win-amd64-cpython-39\torch\distributed\_C_stubs.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7808299Z copying build\lib.win-amd64-cpython-39\torch\distributed\_dist2.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7814433Z copying build\lib.win-amd64-cpython-39\torch\distributed\_distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7821072Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7831819Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7837820Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.7844491Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-09-07T06:45:35.7847853Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-09-07T06:45:35.7854341Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-09-07T06:45:35.7858205Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-09-07T06:45:35.7868492Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-09-07T06:45:35.7874342Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-09-07T06:45:35.7880398Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-09-07T06:45:35.7891252Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-09-07T06:45:35.7895180Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_optim 2025-09-07T06:45:35.7901145Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_optim 2025-09-07T06:45:35.7907652Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7912540Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7922305Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7930101Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7939164Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7945782Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7956529Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7962522Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.7972096Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:35.7975451Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:35.7981473Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:35.7986851Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:35.7991957Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:35.7997852Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:35.8007695Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor\_ops 2025-09-07T06:45:35.8012730Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharded_tensor 2025-09-07T06:45:35.8018587Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-09-07T06:45:35.8024056Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-09-07T06:45:35.8028144Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_plan 2025-09-07T06:45:35.8034050Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_plan 2025-09-07T06:45:35.8039087Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:35.8042382Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:35.8051302Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:35.8056912Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:35.8065538Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:35.8071065Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:35.8076780Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:35.8091262Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-09-07T06:45:35.8095802Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\_internals.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:35.8101071Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\sharding_spec 2025-09-07T06:45:35.8106133Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-09-07T06:45:35.8111291Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-09-07T06:45:35.8120479Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-09-07T06:45:35.8123806Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-09-07T06:45:35.8129372Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-09-07T06:45:35.8132790Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-09-07T06:45:35.8142367Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.8152234Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-09-07T06:45:35.8155559Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-09-07T06:45:35.8161737Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-09-07T06:45:35.8168587Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-09-07T06:45:35.8171722Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-09-07T06:45:35.8176855Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-09-07T06:45:35.8181826Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-09-07T06:45:35.8187417Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-09-07T06:45:35.8190651Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8195990Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8201386Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8207193Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8217809Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8226794Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8233254Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8238723Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8244557Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8250551Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8255673Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-09-07T06:45:35.8264904Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-09-07T06:45:35.8271347Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-09-07T06:45:35.8274843Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8280187Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8285371Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8290589Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8302856Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8308116Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8313606Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8319330Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8324850Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8330313Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8335755Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8341081Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8346453Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8351833Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8357131Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8362520Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8371405Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8381050Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8386889Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8392324Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8397586Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8403611Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8415325Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8421785Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8428161Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8434578Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8440565Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8446586Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8452596Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8458459Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8464311Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8470299Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8483131Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8491043Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8503954Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8512198Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8518232Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8524142Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8530156Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8536187Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8546486Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8552029Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8557850Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8563877Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8569761Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8579955Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8592660Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8598641Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-09-07T06:45:35.8604900Z creating build\bdist.win-amd64\wheel\torch\export 2025-09-07T06:45:35.8608116Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8613845Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8618634Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8623894Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8635768Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-09-07T06:45:35.8639199Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\_utils.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-09-07T06:45:35.8644735Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-09-07T06:45:35.8650465Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8656820Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8663093Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-09-07T06:45:35.8666539Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-09-07T06:45:35.8672337Z creating build\bdist.win-amd64\wheel\torch\export\pt2_archive 2025-09-07T06:45:35.8675603Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\constants.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-09-07T06:45:35.8681098Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-09-07T06:45:35.8687088Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package_weights.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-09-07T06:45:35.8692367Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-09-07T06:45:35.8702955Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8709502Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8715488Z copying build\lib.win-amd64-cpython-39\torch\export\_leakage_detection_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8720938Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8726386Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8731796Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8737027Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8743031Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8749669Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8755084Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8760799Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8765930Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-09-07T06:45:35.8776347Z creating build\bdist.win-amd64\wheel\torch\fft 2025-09-07T06:45:35.8779458Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-09-07T06:45:35.8786163Z creating build\bdist.win-amd64\wheel\torch\func 2025-09-07T06:45:35.8789803Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-09-07T06:45:35.8799480Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:35.8812610Z creating build\bdist.win-amd64\wheel\torch\futures 2025-09-07T06:45:35.8813259Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-09-07T06:45:35.8817831Z creating build\bdist.win-amd64\wheel\torch\fx 2025-09-07T06:45:35.8821241Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.8826359Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.8831717Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-09-07T06:45:35.8835009Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8840914Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8851404Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8862608Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8868684Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8874016Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8884589Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8887888Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8894532Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8900919Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8915967Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\operation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8921173Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8926910Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\util.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8932212Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8937730Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\migrate_gradual_types 2025-09-07T06:45:35.8942020Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8947969Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8953875Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8959087Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8965599Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8971861Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8976939Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8982399Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.8987844Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9004333Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9018498Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-09-07T06:45:35.9023315Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9031311Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9038852Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9045613Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9051912Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:35.9060064Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\conflict.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:35.9069456Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:35.9075550Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:35.9081104Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:35.9086470Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\variadic.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:35.9096619Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification\multipledispatch 2025-09-07T06:45:35.9101679Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9107152Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9112507Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9117711Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-09-07T06:45:35.9123476Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9129113Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9143422Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9148989Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9154344Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9159622Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9165175Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-09-07T06:45:35.9169486Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9176332Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9188713Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9194063Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9199737Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9205929Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9212327Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-09-07T06:45:35.9215571Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9225582Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-09-07T06:45:35.9228766Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-09-07T06:45:35.9234560Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-09-07T06:45:35.9239401Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-09-07T06:45:35.9242737Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-09-07T06:45:35.9245982Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common\cse_pass.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect\common 2025-09-07T06:45:35.9251508Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect\common 2025-09-07T06:45:35.9255795Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-09-07T06:45:35.9260019Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9266114Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9300676Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9306841Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9313257Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-09-07T06:45:35.9316660Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-09-07T06:45:35.9323237Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-09-07T06:45:35.9329138Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-09-07T06:45:35.9341127Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-09-07T06:45:35.9351808Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9358571Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9365160Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9371107Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9377182Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9389542Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9396233Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9402309Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9409176Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9416175Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9422615Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-09-07T06:45:35.9426125Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\test_pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-09-07T06:45:35.9432167Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-09-07T06:45:35.9437123Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9448157Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-09-07T06:45:35.9456836Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-09-07T06:45:35.9469069Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-09-07T06:45:35.9474999Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-09-07T06:45:35.9481829Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-09-07T06:45:35.9495811Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\source_matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-09-07T06:45:35.9507896Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-09-07T06:45:35.9513940Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9520681Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-09-07T06:45:35.9526655Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9532789Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9539354Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9548897Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9555093Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9565370Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9571251Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9576835Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9582062Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9599499Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9604773Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-09-07T06:45:35.9610933Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:35.9617379Z creating build\bdist.win-amd64\wheel\torch\include 2025-09-07T06:45:35.9620737Z copying build\lib.win-amd64-cpython-39\torch\include\advisor-annotate.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:35.9628755Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-09-07T06:45:35.9632122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9637832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9642941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9654022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9659829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9670143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9675167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9680679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9685990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9691265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9700843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9706459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9711922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9718267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9723904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9729873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9735721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9741995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9747751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9806215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9811645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:35.9818172Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-09-07T06:45:35.9821583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9827229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9832533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9837409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9847754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9853136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\aten_interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9859241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9864533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9869604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9879616Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-09-07T06:45:35.9883003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\BoxedKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-09-07T06:45:35.9888594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-09-07T06:45:35.9894463Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:35.9898154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\boxing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:35.9903897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:35.9910228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\test_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:35.9915684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:35.9926096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing\impl 2025-09-07T06:45:35.9931362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\KernelFunction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-09-07T06:45:35.9942412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-09-07T06:45:35.9948531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\OperatorKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\boxing 2025-09-07T06:45:35.9955069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9960536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9966836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9971975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9977834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9983330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9992996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:35.9998394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0006552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0014332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0022259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0030383Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0035231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\CppSignature.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0043300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\Dispatcher.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0052297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0060481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\ObservedOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0073803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\OperatorEntry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0080067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\OperatorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0086275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\dispatch 2025-09-07T06:45:36.0092191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0104755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0110404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0115405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0121371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0131508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0136985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0142899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0148908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0154334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0159783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0165666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0176063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0181841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0187957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0193616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0199271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0205671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0212409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0218047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0228223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0241124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0253880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0259821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0265468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0274182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0279615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0288565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0294496Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-09-07T06:45:36.0297984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\adaption.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-09-07T06:45:36.0303684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\infer_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-09-07T06:45:36.0309609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\op_allowlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-09-07T06:45:36.0315601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration\op_registration.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core\op_registration 2025-09-07T06:45:36.0327219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0333399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0339656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0346136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0357271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0363337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0368968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0374665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0382352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0390136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0396066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0401916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0407832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0413823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0419852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0426736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0444601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0450731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0456674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0462202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0469297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0475253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0481085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0488694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0496578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0504470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-09-07T06:45:36.0514711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.0527030Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-09-07T06:45:36.0530939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-09-07T06:45:36.0536381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-09-07T06:45:36.0542828Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0546086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0554590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0560817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0566985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0581587Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0584917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0591722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0598767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0604142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0615623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0621550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0627451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-09-07T06:45:36.0633358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0638983Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:36.0642352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:36.0648178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:36.0654305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:36.0659678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:36.0671271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:36.0677283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec128 2025-09-07T06:45:36.0683127Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0686428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0691630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0696612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0701945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0712663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0718135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0724444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0730341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0735829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0741424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0748408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0754920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0762259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0768411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256 2025-09-07T06:45:36.0775727Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0779746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0786120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0792273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0803034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0809992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0816611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0823496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0829656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0836002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0842173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0848320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0855222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0861682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\vsx 2025-09-07T06:45:36.0868551Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-09-07T06:45:36.0872520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec256\zarch 2025-09-07T06:45:36.0880388Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0884155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0890323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0897470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0904534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0916279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0922434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0929812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0936504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0943574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0950996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0957317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-09-07T06:45:36.0964588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0971438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_convert.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0977388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0983698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0989661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_n.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.0996395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_quant.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-09-07T06:45:36.1003003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-09-07T06:45:36.1011466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1018357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1024876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1031371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1038164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1048944Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-09-07T06:45:36.1052440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1058296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1064023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1069849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1075947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1089212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1095234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1100991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1106481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1128305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1134121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1147056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1152829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1158000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1164239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1169525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1174764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1184740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1190278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1195729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1201120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1211438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1217022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1222668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1227948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1233674Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1236998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\CUDAHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1242547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1248521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1254098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1265336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\KernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1270912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1276036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1281532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1286812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1292730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\detail 2025-09-07T06:45:36.1298238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1303749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1309243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1314955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1320329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1330782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\llvm_jit_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1336095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1341604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1346856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1352745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1358038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1363491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1368817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1374132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-09-07T06:45:36.1379806Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1387966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1393960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1400147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1405191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\StreamTimer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1416216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\Tunable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1421588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\TunableGemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1427261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable\TunableOp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda\tunable 2025-09-07T06:45:36.1432861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1443097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1449649Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-09-07T06:45:36.1453538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-09-07T06:45:36.1458482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-09-07T06:45:36.1464127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-09-07T06:45:36.1469067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-09-07T06:45:36.1474052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-09-07T06:45:36.1484566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-09-07T06:45:36.1490580Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-09-07T06:45:36.1494000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1499374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1504831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1523998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1529182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1534970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1540076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1545841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1551859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1557678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1563441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-09-07T06:45:36.1568545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1573695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1579111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1584546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1589693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1595033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1601053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1607530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1612671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1617959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1629246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DTensorState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1634705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1640266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1645539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1651854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1658276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1664326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1670708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1677197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1684973Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-09-07T06:45:36.1693924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1700517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1706797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1717758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1724140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1731116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1737474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1743706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1750225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1756365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1762461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1768776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1775167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-09-07T06:45:36.1781240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1787500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1793641Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-09-07T06:45:36.1797108Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-09-07T06:45:36.1801132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-09-07T06:45:36.1807759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-09-07T06:45:36.1813823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-09-07T06:45:36.1825644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\hip\impl 2025-09-07T06:45:36.1831569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1837761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1843946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1850104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1855849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1861622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1867833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1881464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1887486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1893908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1899971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1906084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1912328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1918431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1924509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1931519Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-09-07T06:45:36.1935467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-09-07T06:45:36.1941769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.1952798Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-09-07T06:45:36.1956028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-09-07T06:45:36.1962452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-09-07T06:45:36.1968367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-09-07T06:45:36.1974222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-09-07T06:45:36.1985865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-09-07T06:45:36.1991390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-09-07T06:45:36.1997371Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-09-07T06:45:36.2001482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2007879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2014124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2020303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2030629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2036017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2042086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2047550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2052994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2058915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2064996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-09-07T06:45:36.2070646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.2076963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.2084233Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-09-07T06:45:36.2087494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2093037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2098243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2103898Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-09-07T06:45:36.2112295Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-09-07T06:45:36.2115518Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:36.2118812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:36.2124363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:36.2131986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-09-07T06:45:36.2138512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2146800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2152594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2158556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2164780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2170532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2176572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2182914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2188998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2194724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2201291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2207433Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2211157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2217048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\avx_mathfun.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2223431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\CatKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2229177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2239830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\CopyKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2245741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2251569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2258037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2263869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2269804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2275991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2281936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2288333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\int_mm_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2294691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\IsContiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2300498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\LogAddExp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2306703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2312978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Loops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2318998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2324727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\mixed_data_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2330865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\moments_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2343210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2348717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\Reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2355389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2361405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\ReduceUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2367486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2373235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SerialStackImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2379276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2385374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2391301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\StackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2397219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2408797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2414682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\WeightNormKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2419765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\zmath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-09-07T06:45:36.2425669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2431103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2436432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2443079Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2446376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2451573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\BinaryInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2456814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\block_reduce.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2462771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2473249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2478243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2483705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CUDALoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2489884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2495712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\CuFFTUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2501248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\cutlass_common.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2506672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2512558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2518017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2524197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2530081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2535892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2541382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2546386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2551891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2562357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2568103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2573706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2579220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2585328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GridSampler.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2590818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2596084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GroupMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2601228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2606953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\im2col.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2616634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2621893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2627955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\JitLoops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2636117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\jit_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2644473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\KernelUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2653196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\LaunchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2658349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Loops.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2664251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Math.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2672630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2679109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MiscUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2685676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2698252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Normalization.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2705096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2711570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Pow.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2717483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Randperm.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2723318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Reduce.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2730174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2736164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\reduction_template.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2742651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2767703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2777494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2779316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScanKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2785384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2796274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2801930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2807673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortingCommon.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2814134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2820147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortStable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2826180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\SortUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2832459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2838776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorModeKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2844257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\TensorTopK.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2850093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\thread_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2864042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\UniqueCub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2869802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\UpSample.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2876251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\vol2col.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-09-07T06:45:36.2881892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2891546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2897985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2903402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2909755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2915652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2921118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2926262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2932033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2937503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2942786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2948119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2957928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2963204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2968553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2974102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2979462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GroupedMMUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2985094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.2991355Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-09-07T06:45:36.2994991Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-09-07T06:45:36.2998494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip\bgemm_kernels 2025-09-07T06:45:36.3004101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip\bgemm_kernels 2025-09-07T06:45:36.3009450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_bgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-09-07T06:45:36.3014538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_gemm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-09-07T06:45:36.3019572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_gemm_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-09-07T06:45:36.3024941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\ck_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\hip 2025-09-07T06:45:36.3035309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3040960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3046595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col_shape_check.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3052851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3061043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3074509Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-09-07T06:45:36.3079332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_kernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-09-07T06:45:36.3087115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_pack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-09-07T06:45:36.3095143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\kleidiai 2025-09-07T06:45:36.3103138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3110983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3117607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3124691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3131886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3138062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3146179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3152500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3158681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3164828Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-09-07T06:45:36.3172628Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:36.3176145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:36.3181956Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:36.3185622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:36.3191558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:36.3197271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:36.3202950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:36.3208630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:36.3213937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-09-07T06:45:36.3224313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:36.3229620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\qconv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:36.3234995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\qlinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-09-07T06:45:36.3240723Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-09-07T06:45:36.3243945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-09-07T06:45:36.3249412Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:36.3252669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:36.3257903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\Pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:36.3263955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-09-07T06:45:36.3268958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-09-07T06:45:36.3274249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-09-07T06:45:36.3279658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-09-07T06:45:36.3290354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-09-07T06:45:36.3296248Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-09-07T06:45:36.3299688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-09-07T06:45:36.3304942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-09-07T06:45:36.3310537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-09-07T06:45:36.3320825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-09-07T06:45:36.3326247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-09-07T06:45:36.3331621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-09-07T06:45:36.3337634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\OperationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-09-07T06:45:36.3343672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\TensorFactory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps 2025-09-07T06:45:36.3349599Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mtia 2025-09-07T06:45:36.3353003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mtia 2025-09-07T06:45:36.3358449Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-09-07T06:45:36.3362519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-09-07T06:45:36.3367743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-09-07T06:45:36.3373367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-09-07T06:45:36.3383555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-09-07T06:45:36.3389541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested\NestedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\nested 2025-09-07T06:45:36.3394986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3400754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3406461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3411517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3416887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3422307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3427693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3433033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3438564Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3442451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\AffineQuantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3448312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3454076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3464579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3472815Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3476816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3483162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3489571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3496011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3507023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3514452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3522849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3531333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qconv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3539818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3548888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3557138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\qlinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3563991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3571538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3577681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3584186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3589955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cpu 2025-09-07T06:45:36.3596890Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-09-07T06:45:36.3600538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized\cudnn 2025-09-07T06:45:36.3606136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3612497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3617835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\library.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3623256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\PackedParams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\quantized 2025-09-07T06:45:36.3628913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3645401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3650860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3656518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3662188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3668478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3674589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3680180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3685762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3691320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3696816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3702987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3725758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3732038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3737305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3742451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3747995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3753527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3759005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3765377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3770776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3776843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3787105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3792888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3798325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3803997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3809545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3814975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3821013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3827136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3832988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.3839246Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-09-07T06:45:36.3843082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-09-07T06:45:36.3848902Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-09-07T06:45:36.3852556Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-09-07T06:45:36.3856186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\flash_attn 2025-09-07T06:45:36.3862282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\flash_attn 2025-09-07T06:45:36.3871404Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:36.3874805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:36.3880551Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:36.3884205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:36.3890506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:36.3896188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-09-07T06:45:36.3906065Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3909389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3919460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3925683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3931685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3941791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3947555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3953483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-09-07T06:45:36.3960139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:36.3970423Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.3974090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.3979654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.3985761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.3995912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.4002955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.4009574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.4015051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-09-07T06:45:36.4020702Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-09-07T06:45:36.4025933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-09-07T06:45:36.4035076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-09-07T06:45:36.4042761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:36.4053209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:36.4062715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-09-07T06:45:36.4071094Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-09-07T06:45:36.4076239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-09-07T06:45:36.4084433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\cuda 2025-09-07T06:45:36.4091579Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:36.4095535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:36.4101900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\aotriton_versions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:36.4107914Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-09-07T06:45:36.4111780Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-09-07T06:45:36.4115170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-09-07T06:45:36.4121599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip\flash_attn 2025-09-07T06:45:36.4127534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\gemm_kernel_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers\hip 2025-09-07T06:45:36.4138097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\sdp_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-09-07T06:45:36.4148959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-09-07T06:45:36.4154877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4160189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4166409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4171784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4177078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4182672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4188082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4193677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4199603Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-09-07T06:45:36.4202935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\Factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-09-07T06:45:36.4208544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\ParamsHash.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-09-07T06:45:36.4213987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils\ParamUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\utils 2025-09-07T06:45:36.4220006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4225475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-09-07T06:45:36.4231159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.4237865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.4249005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.4254522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.4260079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.4265629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.4277013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:36.4435423Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-09-07T06:45:36.4438687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4444589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4450786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4456838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4467564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4473822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4479727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4485736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4491670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4497652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4503688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4509814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4516925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4525192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4533700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4541423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4547619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4553947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4560199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4582442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4592937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4598151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4603629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4608879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4614232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4620179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4630335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4636805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4642315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4653937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4664792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4670756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4676613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4682401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4688029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4693649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4699194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4709663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4715275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4721171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4726662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4732128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4737685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4743504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4749389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4755001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4760601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4766110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4781351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4787323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4792755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4798300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4803851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4809538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4815497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4821129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4827778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4833600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4839401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4849820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4855363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4861441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4867237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4873375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4878911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4884592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4895658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4901315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4907177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4912928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4918999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4930372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4936481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4942732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4949352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4955683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4962016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4968623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4974853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4981535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4988032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.4994592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5001483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5007627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5013656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5022034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5030044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5038736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5046691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5054962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5062330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5068626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5078495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5084685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5091567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5102124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5107702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5114102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5119771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5129730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5135539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5140938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5147593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5153240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5158805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5164558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5170410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5176110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5181897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5187551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5193318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5198766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5204426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5210064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5215659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5221260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5227142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5237335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5242979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5248371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5253972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5259562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5265137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5270910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5276439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5282199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5287716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5293303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5298754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5304712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5310322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5315803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5321401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5326942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5332755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5338043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5343541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5349132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5354479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5359999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5365450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5370920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5376528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5382425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5388000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5393743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5400023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5410552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5416179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\affine_grid_generator_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5421738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5427118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5433187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5439277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5445216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5450702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5456375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5462127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5467395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5473090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5478311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5484428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5489762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5495243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5501083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5507035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5512664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5518028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5523772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5529280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5535522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5541444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5546877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5552496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5557915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5563256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5569424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5575187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5581023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5586525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5592057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5597391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5602846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5608407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5613960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5619283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5625059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5630594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5642363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5647841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5653650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5659177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5664997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5670429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5676327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5681950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5687629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5693044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5698310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5704360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5709890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5715408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5720895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5726444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5732069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5737420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5743672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5749130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5754804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5760293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5765754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5771144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5776531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5781779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5787722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5793283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5798722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5804200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5809591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5815339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5820873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5826445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5833577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5841582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5850321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5858358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5866348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.5873545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7863624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7868934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7875151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7880875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7886154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7891998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7897509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7903252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7909045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7914621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7921273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7927065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7932439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7937929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7943406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7950049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7957077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7965264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7973699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7982288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7989005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.7996895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8005286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8013816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8020563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8027224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8033657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8040141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8045670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8051845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8057836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8064176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8070234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8076210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8081707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8087359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8093187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8099391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8105094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8110796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8116713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8122356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8127960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8133670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8139623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8145463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8154021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8162439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8189221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8195652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8201877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8209081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8215311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8221246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8227117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8232920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8239053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8244937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8250754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8256349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8261826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8267374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8272810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8278714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8284239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8290087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8295596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8301395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8307292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8313006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8318661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8324518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8330912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8341353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8347180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8353322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8358428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8364918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8371078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8377005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8383948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8390013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8396658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8407374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8413546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8425791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8432071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8439036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8445264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8451470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8458266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8464633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8471707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8479544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8485766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8491965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8498237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8504215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8510927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8517159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8523775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8529874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8536677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8544183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8552743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8561140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8567935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8574263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8580549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8586898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8592562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8598783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8604387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8610311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8616616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8622202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8627769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8633173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8638844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8644955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8650335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8655990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8661747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8667070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8672655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8678378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8684064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8689324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8695320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8701452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8707429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8712806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8718400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8724171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8729995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8735434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8741176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8746818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8752968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8758867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8764844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8770539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8776395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8782409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8788295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8794047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8800350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8805713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8811357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8817082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8823624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8829390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8835022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8840787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8846287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8853110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8859603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8866030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8872430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8879250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8885613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8897717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8904485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8910710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8916951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8923682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8929749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8935809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8942013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8948634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8955060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8961214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8967710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8973722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8980797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8987005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.8993734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9000263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9006684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9012875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9019233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9025435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9031733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9038143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9045818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9054308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9063378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9069999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9076576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9083077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9089266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9095844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9101786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9107786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9114473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9120285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9126153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9132024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9137755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9144464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9150335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9155951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9161761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9167921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9173849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9179584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9185511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9191500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9197959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9204282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9210263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9215926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9221623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9227326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9233538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9239450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9245127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9250865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9256710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9262516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9268778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9274708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9280545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9286148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9291898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9297482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9304091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9310629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9316944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9323358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9337299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9343724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9350125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9356565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9363353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9369415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9375311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9381667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9388709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9395125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9401579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9407798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9414213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9420486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9427221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9433203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9439755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9446174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9452971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9459699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9466601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9473046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9479466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9485637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9491985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9498133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9504381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9510705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9517047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9523398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9529509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9535563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9541776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9549016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9557863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9566859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9573267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9579981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9586653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9592515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9598817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9604503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9610252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9617139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9623045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9628647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9634356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9640828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9647039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9653158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9659055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9664865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9671151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9676548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9682537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9688100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9693642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9699483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9705597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9711392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9717575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9723292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9729143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9734932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9740459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9746312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9752003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9757555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9763305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9769379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9775363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9781050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9786895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9792611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9813595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9819629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9825944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9831639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9837722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9843734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9849361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9855225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9860777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9866598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9872402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9877924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9883662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9889513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9895191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9900927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9907200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9913806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9919939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9925886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9932092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9938472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9944539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9950776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9957254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9963212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9969406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9975393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9981459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9988025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:36.9994453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0000415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0010584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0017027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0023334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0053993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0055078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0056276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0057500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0058606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0065375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0072355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0081550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0088615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0095596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0101793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0108333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0114470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0120816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0126256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0131898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0138485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0144939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0150893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0156820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0162006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0168322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0174143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0179904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0185292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0191269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0196418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0202427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0208929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0221821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0227476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0233294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0238923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0244424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0250456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0256227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0261920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0267941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0273749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0279459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0284915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0290583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0295984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0301256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0307136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0312959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0318275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0324057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0329503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0334839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0340279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0345732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0350917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0356875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0362097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0368089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0373459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0379249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0391386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0394254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0399625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0405214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0410577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0415826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0421572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0427491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0433106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0438838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0444542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0450260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0455432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0460818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0467088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0472759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0478463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0484722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0490373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0496031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0501799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0507463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0513235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0519192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0524639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0530499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0536146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0542195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0547672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0553323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0558842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0564608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0572621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0579370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0587930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0596335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0604583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0613137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0621400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0630201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0636485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0642971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0649251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0655000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0661319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0666978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0672753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0679224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0684766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0690790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0696917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0702656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0708892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0715102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0720691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0726265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0732138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0738157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0743823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0749469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0754826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0760720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0765989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0771525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0776886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0782403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0788063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0793343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0798811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0804224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0809833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0815233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0820854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0826392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0831988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0837503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0843337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0849378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0854703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0860372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0865969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0872334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0878573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0884465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0890228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0895857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0901908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0906952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0912576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0918539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0923901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0929525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0935160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0940715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0946248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0952000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0957481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0963180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0968880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0974963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0981432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0987722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.0994108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1000787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1007012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1013221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1019873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1026001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1031856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1037618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1043553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1050364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1057322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1066215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1074847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1083951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1092639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1100395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1107703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1114135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1120715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\constant_pad_nd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1126422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1138426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1143863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1150016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1155549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1161249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1166886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1172448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1178771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1184666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1190257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1195823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1201618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1207102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1212862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1218849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1224453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1230184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1236189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1241890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1247998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1253935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1259828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1266049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1271894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1277644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1283776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1289398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1295198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1300937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1307664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1317319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1323031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1329122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1335035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1340652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1346356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1352110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1357662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1363110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1369266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1375336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1398690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1405015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1411371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1417584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1424180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1430982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1437207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1443957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1450083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1456861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1463364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1470071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1476642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1483130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1489527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1496110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1502380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1508344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1514625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1521173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1527378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1533687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1539918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1546250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1552659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1567211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1576801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1585573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1593064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1599247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1605731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1611913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1618173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1624693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1630638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1636493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1642998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1648496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1653959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1659681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1665413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1671292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1677183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1682844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1688607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1694356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1699795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1705586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1711291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1717340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1723281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1729556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1735225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1740899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1747241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1753544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1758661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1764621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1770301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1776242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1782459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1787988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1793621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1799706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1805291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1811216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1816978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1822937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1829165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1834933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1840680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1846157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1851663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1857276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1862667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1868504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1874356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1880621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1891200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1897051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1902637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1908365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1914109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1919941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1925528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1940719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1947648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1954159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1960834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1967221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1973524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1979943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1986679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1993118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.1999716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2005931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2023565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2030362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2036896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2043202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2049791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2057177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2064091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2073520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2082314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2091111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2097926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2104858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2111454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2118091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2124063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2130659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2136496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2143216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2149347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2155421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2161949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2167845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2174361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2180418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2186434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2192165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2198132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2205668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2212009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2218211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2225098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2231580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2237519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2243827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2249571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2255563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2261366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2267161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2273016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2279107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2285068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2291143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2296960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2303133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2309196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2314854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2320948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2327095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2333271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2338913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2344406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2350250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2355609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2361549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2367325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2372784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2378907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2384769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2390387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2396047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2401923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2407518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2413276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2418798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2424420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2430823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2436942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2443929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2450295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2456257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2462965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2469209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2475900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2482416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2488723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2495143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2501528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2508480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2514814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2521719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2528234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2534665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2541190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2547381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2553810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2560601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2567253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2575702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2584724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2593852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2603056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2609468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2615431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2622747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2628519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2634276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2640561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2646075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2652413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2658170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2663879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2669537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2674985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2680804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2687238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2692986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2698650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2704108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2710034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2715927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2720955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2727095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2732738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2738677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2744407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2750246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2755835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2761466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2767026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2772979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2778772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2784115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2789561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2794952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2800455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2806020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2811675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2817202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2822705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2828796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2834361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2840120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2846075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2852190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2857903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2864003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2869955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2875624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2882074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2888851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2895195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2901497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2908769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2915207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2921427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2927972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2934474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2940664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2947285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2953764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2960357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2966627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2973631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2979903Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2985721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.2991966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3006324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3007756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3013459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3019776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3041815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3048056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3054003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3061175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3066241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3072409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3078420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3084441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3090779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3097734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3103724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3110429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3116782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3123080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3129238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3135900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3141877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3148343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3154148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3159726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3165099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3170641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3176215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3182667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3188153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3193507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3199103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3204597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3210239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3215460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3221011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3227029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3233044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3238788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3244661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3250260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3255873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3262006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3267787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3273447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3278884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3284379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3289958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3295376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3300950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3306515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3311933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3318276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3323767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3329373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3335030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3340778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3346634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3352442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3358789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3364093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3369740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3375220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3380719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3387966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3394184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3399295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3405403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3411627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3418280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3423930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3434822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3441569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3447490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3453510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3460681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3466474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3472697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3478806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3485426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3491884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3497868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3504388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3510357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3516077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3522477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3530093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3536242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3542163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3548736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3554994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3560812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3567030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3573929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3580072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3585954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3592685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3599290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3604984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3611147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3616879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3623729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3629371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3635234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3641103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3647681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3653528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3659597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3665803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3672313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3678136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3684198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3690800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3700078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3709469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3718164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3728359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3736025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3742566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3749212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3757548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3763875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3770312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3776942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3817428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3903120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3909599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3916074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3922323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3928777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3934813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3940670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3946294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3952074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3957895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3964268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3969692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.3975941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4306251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4312067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4318037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4324227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4330490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4336104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4341565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4348577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4354829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4361096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4366614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4372228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4377893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4383672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4390436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4396638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4402991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4409396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4415576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4422121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4428660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4434811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4441007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4447592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4453775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4460570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4466604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4472742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4479181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4485376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4491581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4497767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4504375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4510597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4516856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4523532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4529654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4536631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4543231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4549762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4556275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4563156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4568702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4575021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4581312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4591684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4599750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4608182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4615260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4621887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4628458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4635058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4641170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4647947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4653682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4659481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4666064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4671731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4678245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4684010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4689831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4696018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4701375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4707345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4713016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4718433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4724083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4730182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4735777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4742319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4747959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4753501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4759045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4764820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4770839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4777401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4783429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4789442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4795556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4801733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4807871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4813852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4819808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4826328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4832345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4838241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4844083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4850083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4856281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4862620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4868815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4874735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4881133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4887501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4893391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4900186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4906993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4914501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4921552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4929165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4935753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4942974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4949822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4956949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4963599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4970377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4976986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4983679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4990206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.4997153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5003770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5010478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5017152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5023914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5030869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5037488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5043993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5050771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5057544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5064069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5070575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5077594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5083786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5109279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5118086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5126588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5133486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5140265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5147133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5154040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5159884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5166401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5172677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5178670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5185123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5191178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5196941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5202340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5208170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5214532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5220217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5226177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5232112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5237944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5244055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5249887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5255556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5261370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5267302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5272975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5279373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5289322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5294811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5300709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5306546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5312417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5318007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5323697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5329869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5335766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5342032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5348477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5355138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5361528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5368121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5374831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5380949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5387385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5393423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5399827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5407250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5414027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5421034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5428221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5435326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5443065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5449522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5455912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5462659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5469171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5475420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5482032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5488283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5494820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5501022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5507385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5514236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5520615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5527183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5533710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5540473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5547847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5554250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5560960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5567512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5573896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5580161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5586500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5594367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5602925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5609385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5617803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5627275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5639843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5641620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5648349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5654698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5660492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5666954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5672384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5678471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5684741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5690339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5696081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5702101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5707962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5714442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5720385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5726425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5732401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5738794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5748397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5753433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5758980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5765244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5771099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5776659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5782506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5788357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5794575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5800176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5805563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5811383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5816946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5822412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5827979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5833542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5838995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5844473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5850032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5855834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5861494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5868319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5874626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5879661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5885336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5891011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5897021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5902434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5907996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5913620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5919389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5924559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5929931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5935451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5941070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5947072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5952592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5958270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5964011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5970157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5975538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5981390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5987366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5993045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.5998672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6004536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6010301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6015952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6022120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6028184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6033881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6039662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6045379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6051127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6056969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6062851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6069237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6076830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6083117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6089398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6096932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6105853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6114646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6123507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6132036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6140501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6148069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6154173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6160804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6167249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6172944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6179388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6198199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6203753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6209419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6214740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6220538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6227227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6232935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6238766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6244536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6250183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6256635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6262366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6267794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6273261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6279907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6285930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6291610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6297345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6303225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6309156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6323022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6328931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6335043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6340741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6346706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6352605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6358802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6364565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6370464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6376212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6382784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6388842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6394979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6400782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6406710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6413079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6418772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6424998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6430966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6437044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6442875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6448659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6454747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6460756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6466488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6472176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6477752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6484140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6490207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6496131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6502781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6509038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6515222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6521425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6527741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6534019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6540476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6547181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6553576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6561794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6568045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6574680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6581003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6587536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6593929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6601743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6610550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6619648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6628621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6635864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6642456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6648927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6655277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6661004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6668118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6679923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6686223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6691905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6697421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6703343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6709344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6715632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6721792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6727585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6733653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6739364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6759793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6765698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6772086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6777835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6783501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6789524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6795008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6800792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6806299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6811887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6817429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6823114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6828588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6833963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6839414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6845360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6851010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6857617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6863451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6870544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6877021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6883421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6890134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6896348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6902967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6909353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6915586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6922089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6928251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6934312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6941023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6947428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6954020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6960272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6966778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6973131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6980236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6985966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6992172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.6998795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7005436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7011616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7017895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7024234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7031716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7038457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7044587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7050871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7062069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7069114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7075195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7081374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7087463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7093548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7100574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7108735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7117606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7125685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7132448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7139010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7146101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7152131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7158483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7165037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7171993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7177716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7183353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7189426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7195062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7200604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7207129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7212780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7218466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7228986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7234206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7239741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7245280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7250777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7256347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7262797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7268539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7274410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7279990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7285498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7291527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7301869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7308148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7313872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7319765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7325482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7331065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7336855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7342907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7348990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7354817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7361487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7367518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7373476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7379275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7385286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7391113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7396823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7402477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7408248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7414296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7420250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7426187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7432218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7438050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7444136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7449953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7456107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7462800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7468688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7474640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7480428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7486134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7491985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7498005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7503613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7509392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7515035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7520704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7526496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7532117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7537719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7543827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7549450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7554981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7560319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7566554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7572212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7577999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7583465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7589500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7594961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7600515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7605945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7611881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7617531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7623348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7629379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7635230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7640888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7646773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7652522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7658221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7665172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7672931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7681136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7690012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7699037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7708129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7716797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7726231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7732632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7739304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7745912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7752289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7758798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7765010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7771175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7781399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7787663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7793379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7799043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7804917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7811390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7817876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7823666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7830012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7835699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7841493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7847361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7853163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7858963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7869694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7875463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7881292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7887351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7893104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7899087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7904859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7910786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7916746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7922667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7928556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7934131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7940124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7945911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7951409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7957379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7963668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7969765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7975617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7981312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7987621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7993388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.7999110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8004842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8010621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8016655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8022314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8028292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8034004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8039836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8045556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8051622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hash_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8057458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8063506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8072318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8078876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8101786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8110710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8119358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8127651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8134252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8141464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8147892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8153720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8160228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8165794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8171675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8177987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8183605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8189594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8195186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8201149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8207673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8213437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8219248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8224970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8231178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8236862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8242794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8248344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8253960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8259597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8265663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8271222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8276845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8283200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8288306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8293653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8299241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8304842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8315067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8320704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8326795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8332569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8338391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8344034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8350013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8355640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8361273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8367913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8391128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8396188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8401879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8407656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8413451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8419351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8425017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8430752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8436700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8442201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8447845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8453366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8458580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8464191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8470588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8476551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8482662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8489067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8494993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8501406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8507900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8514464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8522361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8528398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8534805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8540759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8546602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8552377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8558283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8564095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8570114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8575855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8581506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8587496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8593253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8598984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8604922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8610610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8616778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8622851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8628700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8634728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8640927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8652712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8659432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8666210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8672293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8678829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8684564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8695500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8702008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8707660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8713734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8720082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8726416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8732081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8737852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8743659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8749500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8755429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8761278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8767628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8773321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8779876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8785990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8791662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8797699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8803408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8809343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8814921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8820612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8826573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8832331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8837932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8843845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8849924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8855519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8861459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8867385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8873686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8880067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8886686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8893118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8899515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8906099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8912362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8918926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8925131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8931868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8938930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8945233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8952358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8958674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8965144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8971573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8978168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8984602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8990809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.8997111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9003594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9016717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9019164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9024850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9030566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9040953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9047608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9054678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9061368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9068391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9074641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9080773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9087239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9093454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9099914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9106275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9113130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9121318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9129730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9137212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9143417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9149836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9160169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9166589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9172348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9177724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9184117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9189920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9195446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9205152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9210449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9216839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9222393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9228210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9233820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9239212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9244882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9250465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9255965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9262268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9267616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9273751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9279925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9286131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9292452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9298666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9304927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9316379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9322407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9328625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9334753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9340988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9347625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9353778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9359997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9366715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9373052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9379169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9385586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9392009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9399068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9405006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9411601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9418157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9424490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9430874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9437286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9443627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9450890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9457013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9463354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9469431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9475649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9482009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9488214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9494380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9500997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9507641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9514770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9520738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9527070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9533718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9540028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9546094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9553180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9558935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9565069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9571730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9578156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9584860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9591206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9597380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9603814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9610392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9616863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9622948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_floating_point_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9629403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9636732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9643791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9650491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9658517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9665373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9672458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9679022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9685983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9691847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9697835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9704840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9710629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9716834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9722570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9728217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9733875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9739599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9745611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9751369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9758097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9764209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9769843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9775858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_same_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9781906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9787954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9793894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9799835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9805273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_set_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9811122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9817161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9823038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9828678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9834648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9840881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9846975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9853205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_vulkan_available_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9860096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9865770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9871687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9877777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9883216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9889204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9894930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9900910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9907022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9912880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9918835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9924137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9930090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9935829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9941757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9947477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9953232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9958984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9966073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9972962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9980185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9986674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9993369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:37.9999690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0576227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0583250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0589516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0595954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0602475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0609515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0615860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0622380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0631313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0638642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0645020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0651361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0657394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0663431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0670353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0676055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0682186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0688371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0693969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0699734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0705690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0711524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0718501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0724024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0730071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0736310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0742396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0748444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0754273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0760690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0766755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0773332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0779142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0785564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0791379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0797142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0803103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0809296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0815103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0820615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0826679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0832491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0838452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0844480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0850166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0855798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0873022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0879293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0885206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0890762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0896837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0902397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0908357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0914437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0920447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0926215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0931700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0937567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0943709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0950156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0957457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0964199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0970647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0976975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0983446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0990587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.0996961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1003042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1009377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1015546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1022510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1028558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1035514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1042408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1048851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1055886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1062385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1069081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1075650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1081698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1087750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1094621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1101706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1109086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1115074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1121548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1127886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1136510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1147143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1155825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1162565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1169255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1176345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1183396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1190205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1196246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1202107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1208985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1214915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1220848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1226987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1233038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1239583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1245312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1251079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1257523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1263590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1269324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1275048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1282552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1288434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1294689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1301434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1308329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1314941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1321253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1327979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1334356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1341016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1347923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1354497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1361077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1367999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1375230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1381849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1388828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1394978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1401452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1407907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1414630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1421359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1427991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1434841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1441476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1448805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1455631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_householder_product_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1462105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1469092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1475569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1482917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1489639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1496348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1502845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1510067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1516584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1523731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1530413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1536983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1543468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1550271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1556811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1564617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1571620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1578185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1595695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1602841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1609710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1616284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1622674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1629251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1637749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1648645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1658076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1667094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1676618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1683795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1690968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1697612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1703449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1710680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1716848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1722832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1729482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1735229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1740986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1747374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1753852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1760445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1766261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1772226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1777953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1784330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1791134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1797113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1802953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1808864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1814535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1820322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1826818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1833017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1839300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1845160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1850980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1856890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1863066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1869586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1875601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1881419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1887733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1893497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1899665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1905950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1911935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1918175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1923888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1929633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1935664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1942288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1949967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1956591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1963080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1969449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1976478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1984061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1990729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.1997311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2004529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2019470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2021519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2027830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2033542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2039860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2046207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2052303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2058536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2064704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2070693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2076648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2082818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2089038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2095148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2101708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2107420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2114667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2120694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2127090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2132933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2139092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2145392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2152301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2158491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2164737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2170699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2177283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2184492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2190481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2196372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2202661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2208581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2214532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2220361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2226594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2232319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2238392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2244388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2250434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2292106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2298031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2304481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2310619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2316622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2322455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2328513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2334303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2340277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2346522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2352396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2358165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2364518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2371212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2377567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2383275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2389535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2395235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2401083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2407576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2414309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2421226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2437123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2438254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2441142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2447791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2454485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2492695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2499643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2506266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2512872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2519478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2526413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2532978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2539535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2546073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2552594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2559171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2565558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2572260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2578432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2586265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2596480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2602854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2609558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2616375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2623327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2630005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2636618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2643655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2652420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2661069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2667598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2674198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2680922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2686737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2692771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2698662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2704173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2710455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2716094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2721934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2727604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2733093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2739528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2745435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2750985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2757250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2762900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2768570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2774556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2780323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2786327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2792096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2798211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2804373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2810499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2816729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2822994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2829273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2835846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2842222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2849027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2855629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2862347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2869085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2875486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2881912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2888373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2895469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2901878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2908286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2914887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2921135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2927488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2933871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2941018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2947801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2954956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2961561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2973224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2979624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2986006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2992264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.2998361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3004802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3011477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3017950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3024325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3030763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3037120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3043420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3050079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3056679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3063252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3070067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3076886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3083337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3090255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3096600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3103561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3110121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3116447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3123109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3129738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3136025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3143039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3152068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3159099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3165483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3171732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3178620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3185239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3191146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3196947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3203775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3209771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3215647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3221419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3227411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3234003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3239945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3245948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3251690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3257976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3263803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3269591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3275247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3281073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3286835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3293624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3300069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3306374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3312360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3318260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3323929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3330053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3335489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3341141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3347071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3352317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3357916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3363517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3369456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3375869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3381781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3387630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3393431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3399322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3404993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3410548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3416305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3422391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3428531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3434328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3440462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3446515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3452822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3460163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3467127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3473565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3480145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3486747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3492990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3499416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3506230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3512864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3519216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3525553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3531800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3538037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3544400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3551166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3557748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3564340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3570824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3577366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3583510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3590385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3596684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3603552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3610221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3616603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3623530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3630111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3636536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3643413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3651795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3657836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3666364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3674889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3681313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3687619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3693804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3700278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3706544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3712908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3718316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3724987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3730587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3736259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3742286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3748187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3753944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3760390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3766257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3772131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3778299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3783616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3789645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3795484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3801498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3807160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3817780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3823498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3829274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3835915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3841635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3847313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3853203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3858972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3864973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3871677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3877706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3883889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3889614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3895451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3901187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3907111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3913019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3918743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3924406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3930465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3936389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3941827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3947696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3987151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.3993777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4000339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4006918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4013321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4019830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4026354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4032892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4039507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4045876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4052173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4058513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4064965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4071638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4078320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4084369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4091570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4098279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4103977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4110326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4116405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4123164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4129316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4135986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4143587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4152360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4161004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4170198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4178526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4186161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4192426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4198831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4205302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4211153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4217495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4223283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4229646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4236317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4241926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4247849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4253709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4259225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4265559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4271316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4276947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4282841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4288557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4294149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4300876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4307387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4313204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4319786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4325656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4331476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4337555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4343241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4349824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4356069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4361809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4367575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4373474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4379343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4385895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4392190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4398371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4404343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4410526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4417285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4423762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4430992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4437644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4444142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4450810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4457406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4464204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4470770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4477465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4484334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4491186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4497685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4509023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4516288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4522979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4529744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4536500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4543143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4549979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4556578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4563296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4569784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4576526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4583569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4590180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4597072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4603347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4609781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4616621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4622862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4629293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4635807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4642178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4651514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4657834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4666596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4673073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4679706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4686290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4692050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4698635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4704859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4710117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4716533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4722284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4727870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4733587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4739461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4745977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4751890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4757538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4763087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4768839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4774270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4779737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4785567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4790909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4796782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4802596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4808305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4813824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4819873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4825677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4831746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4838153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4843892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4849884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4855714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4861188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4866896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4872983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4878436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4884129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4890161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4895258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4900931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4907581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4913869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4920794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4927810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4934513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4948986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4950212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4956786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4963161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4969742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4976328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4982744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4989387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.4995904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5002543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5009004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5015694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5022245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5029235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5035976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5042564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5049275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5056737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5063176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5069667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5076192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5082889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5089994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5096868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5103449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5110516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5117218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5123667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5130320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5136842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5143033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5149522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5158399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5167622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5174428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5180939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5188095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5194293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5200280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5206780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5212923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5219379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5225258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5231645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5237149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5242801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5248570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5254925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5260710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5266267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5271737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5277690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5283704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5289829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5295810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5301718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5308329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5314238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5320594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5326482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5332546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5338282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5344219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5350451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5356311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5362458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5368615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5374727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5380739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5391443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5397481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5403706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5410467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5417126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5423850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5430079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5436617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5443181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5449793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5457104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5463733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5470433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5477387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5484024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5490593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5496968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5503326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5510395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5516816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5524141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5531111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5537757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5544335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5551071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5557927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5564605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5572750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5579736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5585485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5591513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5597857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5603762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5609915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5616263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5622338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5628593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5635239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5675394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5681986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5688783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5694998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5701529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5707621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5713348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5719717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5725494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5730578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5740199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5745613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5751784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5757581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5763592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5769434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5774937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5780348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5786893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5792068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5797874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5803634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5809830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5816173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5822616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5828935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5835267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5841552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5848361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5855131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5861563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5868250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5875298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5881780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5888471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5894805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5900983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5907317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5913576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5919797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5926197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5933351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5939983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5946763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5953159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5960329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5966740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5973052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5979559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5986296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5992201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.5998254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6008772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6014927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6021120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6027368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6036248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6043212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6049570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6056182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6062958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6069933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6076506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6083800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6089941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6096559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6103138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6109990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6116614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6123138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6129619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6136325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6142972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6149769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6156330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6163289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6169251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6175824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6181604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6187578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6194838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6202976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6213429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6222128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6231331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6238742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6247402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6255380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6262069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6269531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multi_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6276574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6282428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6289277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6295028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6301265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6306959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6313228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6319258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6324686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6330150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6336052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6373786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6379414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6385206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6391113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6397081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6402580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6408171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6413600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6419251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6424831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6430760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6441193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6448021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6454059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6459584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6465601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6472061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6478440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6485050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6492173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6498185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6504581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6511150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6517651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6523502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6529959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6536202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6542472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6549202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6556587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6562879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6569804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6575897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nan_to_num_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6582250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6589228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6595285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6602164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6608340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6614712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6621072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6628067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6634008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6640477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6647079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6653966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6660690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6669948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6679017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6688289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6695090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6701875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6708620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6714551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6721240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6727476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6733306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6739758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6745776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6751761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6757859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6764145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6770834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6776946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6782698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6788668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6795456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6801416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6807086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6813433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6819333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6825123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6831114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6837740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6843604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6849668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6855997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6861995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6868231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6874438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6880263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6886245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6891892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_group_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6897592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6903522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6914187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6920039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6926181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6931949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6937866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6943997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6950830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6956891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6962707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6968675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_layer_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6974964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6981700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6988258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.6995052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7001497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7007591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7013720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7020153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7027425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7034674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7041638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7047987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7054345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7065061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7070917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7077580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7083440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7089611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7096567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7102937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7109384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7115943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7122300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7128782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7134988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7141341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7148546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7155531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7162689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7169366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty_strided_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7177962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7186997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7193269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7199631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7206256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7212570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7218655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7225171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7231202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7238039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7243764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7249471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7255235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7261283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7267113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7274151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7279922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7285886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7291547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7297310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7303350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7308938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7319538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7325814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7331277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7336896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7342471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7347990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7353943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7359204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7365104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7403754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7409498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7415310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7421417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7427272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7433273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7439258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7445827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7451611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7457737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7463212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7468925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7475973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7481584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7487282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7493149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7498973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7505150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7510825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7516943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7522994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7529643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7535618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7541509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7547465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7553319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7559333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7565250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7571133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7577534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7583719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7589413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7595576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_nd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7601460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7607231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7612690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7618628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7624179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7629905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7635990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7641729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7647584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7653299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7659132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7665236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7671076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7678249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7689914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7694489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7702469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7711276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7719624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7728286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7737028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7745534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7752104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7759425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7766622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7772380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7779057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7784847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7790630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7797320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7803013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7808422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_except_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7813956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7820701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7826599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7832036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7837562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7843480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7849363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7855039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7860835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7866784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7872538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7878823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7884235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7889972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7895683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7901118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7906863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7912588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7918453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7924774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7930437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7936523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7941983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7947848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7953228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7958835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7964675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7970052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7976146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7981634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7987795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7994157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.7999872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8005898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8011812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8017860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8023958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8034266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8040411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8046158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8052080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8057550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8063332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8073537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8079091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8085305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8091550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8097192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8102790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8108534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8114114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8120725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8126013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8131548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8137471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8143027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8149224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8155138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8161024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8166739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8172505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8178182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8183564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8189848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8195285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8200916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8206417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8212020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8223235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8229346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8235730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8241741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8247455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8253902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8259784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8265795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8271528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8276906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8282614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8288505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8294072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8299502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8305981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8312193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8318897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8325406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8331924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8338914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8345380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8352388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8358957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8365289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8371622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8377895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8384066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8390673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8396827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8403172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8409322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8415685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8422385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8428858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8435943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8442449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8448924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8455287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8461729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8468909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8475420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8481565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8487806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8494105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8501055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8507369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8514041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8520468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8527104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8534257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8540452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8547107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8553182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8570046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8571166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8572082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8578392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8584856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8591093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8601978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8608040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8614440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8620793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8627508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8633783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8640375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8645807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8651987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8658423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8665427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8673093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8684009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8692216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8700876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8709757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8718213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8724568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8733054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8741821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8748743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8755089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8761642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8767440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8773731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8779386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8785005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8791265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8797050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8802327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8807954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8813384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8819044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8825133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8830349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8835650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8841099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8846930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8852372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8857874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8863576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8869690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8875808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8882340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8889075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8895835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8902129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8908780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8915263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8921947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8929638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8936249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8942544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8949612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8956234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8963095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8969888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8976637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8983002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8989454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.8995975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9002678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9009128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9015443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9056159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9062870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9073866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9080248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9086710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9093711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9100065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9106929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9118046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9124680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9131612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9138163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9145697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9152158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_channel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9158528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9165373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9173601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9180464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9188492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9195580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9202340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9208305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9216155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9222030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9228147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9234681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9240460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9246709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9253166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9259111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9265955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9271796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9277571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9284151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9290501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9296231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9302091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9307938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9313362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9320587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9326913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9332550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9338273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_zero_point_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9343730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9349781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9356048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9361665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9367240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9373213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9379282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9385341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9392452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9398222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9403865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9409843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9415552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9422208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9428911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9434922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9447127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9453045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9459650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9465955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9471618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9477980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9483852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9489536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9495776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9501625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9507316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9513012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9518592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9525145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9531929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9538474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9544879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9551437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9557956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9564360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9571844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9578580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9584834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9591489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9597662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9604003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9611284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9617357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9623397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9629727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9635975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9642707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9713321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9720880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9837818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9843796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9849314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9855087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9861236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9867177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9872712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9878241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9883751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9889639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9895817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9903568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9910894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9936645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9942717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9949447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9955814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9962427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9968443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9990106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:38.9996231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0002585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0009681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0050616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0056076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0062846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0069148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0075734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0087020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0093687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0100430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0107705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0114461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0120993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0127827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0134200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0140991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0147441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0153861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0160291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0166856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0173780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0180013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0195117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0198719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0204737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0210611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0216728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0222674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0229000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0235038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0240911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0246920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0253313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0259352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0265714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0271644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0277771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0284235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0290146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0296623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0302694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0308824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0314608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0325506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0331859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0337888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0343582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0349445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0355232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0360871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0370556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0376687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0382240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0388100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0393770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0399558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0405172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0415590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0421683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0427784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0466669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0472407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0478365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0484192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0490541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0497042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0503341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0509486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0515752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0521922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0528361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0539845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0546595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0552927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0559254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0565612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0571924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0578506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0585069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0591382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0597779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0604698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0611401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0617803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0624772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0631092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0637666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0643905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0650188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0656650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0662926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0669958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0676396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0683944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0692939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0701780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0711074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0720074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0729352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0737400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0744146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0750906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0758035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0764500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0771663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0778054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0785602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0792172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0798651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0805492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0812020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0819475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0826374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0832942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0840365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0846922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0853264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0859623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0866512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0873373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0879988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0886857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0893138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0899593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0906576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0912984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0919040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0925122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0931031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0937382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0943210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0949208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0954943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0960992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0966476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0972713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0978694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0985228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0991864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.0998234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1005171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1012492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1053721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1060216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1066820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1073139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1079411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1085931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1092384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1098762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1105060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1111826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1118204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1124685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1131353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1138109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1144528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1151249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1157914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1164434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1170793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1177263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1185224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1193748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1202154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1209166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1216114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1223052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1229326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1240293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1246461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1252374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1258568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1264504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1270193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1275781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1281570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1287968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1293807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1299560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1305325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1311032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1316892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1322570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1328207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1333967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1339619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1346559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1353292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1359629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1366395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1373335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1379708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1386217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1392345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1398901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1405226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1411593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1418255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1432759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1439173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1445719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1452107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1458361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1466434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1472116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1478595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1484491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1490888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1497740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1503988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1510338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1516907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1531074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1537856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1544288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1550958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1557338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1563936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1570302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1576552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1582716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1589795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1596258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1602450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1613620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1620040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1626352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1632909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1639388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1645688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1651598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1657834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1664094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1670295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1676482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1683155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1689732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1697334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1703969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1710528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1717499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1723358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1729692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1735472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1741850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1757053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1762856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1768535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1775155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1781018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1786745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1792077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1797581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1803273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1808997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1814805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1820646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1826381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1832525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1838306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1844085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1850223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1856035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1861812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1867579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1873196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1878906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1884398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1890260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1896132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1901751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1907873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1913792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1919512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1925431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1931084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1936627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1942603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1949708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1955484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1961280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1967215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1973264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1979087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1985378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1991487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.1997171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2003405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2009958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2016740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2022679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2029280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2036102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2042520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2050118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2056819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2063381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2070335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2076888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2083245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2089609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2096076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2102396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2108878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2115306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2121967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2128259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2134778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2140864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2147306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2153607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2160592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2167242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2173020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2180757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2187440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2194401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2200967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2210384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2219276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2226829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2233667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2240413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2246894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2252662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2259047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2265014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2270782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2277636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2284177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2289851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2295927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2301623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2308128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2313921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2319227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2328883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2334513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2340063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2346053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2352025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2357637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2363270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2368862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2374410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2380083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2386055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2391662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2397061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2407284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2417466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2423076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2429216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2434426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2440140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2445708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2450972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2456519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2462997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2468621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2474787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2480624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2486622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2492470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2498303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2504367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2510727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2517158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2523525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2536091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2542546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2548278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2554134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2559626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2565593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2572121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2578312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2584044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2590212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2596039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2601807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2607936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2613550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2619626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2625347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2636626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2642999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2649194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2655157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2661453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2668625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2675202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2681550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2688044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2694960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2703664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2713146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2753312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2759470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2765789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2771464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2777105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2782479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2788191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2794547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2800202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2805583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2811351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2816912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2822483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2828182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2833649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2839108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2850413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2855953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2861895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2867486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2873147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2878985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2884451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2889909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2895715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2901559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2907168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2912506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2918122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2923278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2929030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2935380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2940688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2946667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2952788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2957949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2963014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2968395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2974411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2979897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2985965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2991885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.2997665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3003901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3009604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3015668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3021338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3027348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3033373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3039532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3045447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3050988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3057351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3063031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3069465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3075335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3081100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3086755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3092511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3098098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3103547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3109469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3115199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3121244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3126818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3132574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3138338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3144145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3150161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3157036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3162902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3170003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3183712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3192880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3202294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3211023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3219209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3226386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3232797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3239510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3245941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3252759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3258440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3265170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3271303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3277218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3283295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3289241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3295924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3301638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3307518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3313402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3319245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3325403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3335499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3341117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3347116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3353257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3358952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3364492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3370577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3376732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3382394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3388367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3394441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3400292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3406998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3416890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3426058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3430564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3436337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3442266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3448302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3454048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3460062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3465928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3471635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3477401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3483432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3489005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3495319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3501551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3507512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3517543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3524405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3530752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3537403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3544256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3555799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3561982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3568315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3574247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3580980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3586230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3592167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3598322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3604439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3610298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3616401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3622550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3628715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3635598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3641276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3647616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3653461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3659728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3666154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3671882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3677901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3683914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3689864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3695923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3702558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3709300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3715339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3722040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3727895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3734238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\soft_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3740097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3746145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3751690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3757529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3763416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3769380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3775185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3781060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3786852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3792659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3798227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3808743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3814624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3820376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3826421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3832673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3838532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3844417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3851516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3858759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3865255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3871658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3878492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3885210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3892023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3898593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3905390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3911970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3918699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3925167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3931536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3937947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3949139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3955793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3962307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3969182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3978092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3987031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.3997867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4006699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4016438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4026095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4034978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4041503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4047995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4055034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4065731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4072620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4079396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4086044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4092317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4098717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4105615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4116252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4123108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4129428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4136335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4143167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4149884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4156218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4182071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4188104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4194983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4200872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_airy_ai_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4206980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4214578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4220265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4226362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4232642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4238847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4245065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4250747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4256619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4263202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4272971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4278756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4284651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4290625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4297842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.4306253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_j1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5906224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5913547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5920144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5926929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5933440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5940673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5947242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5954084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5960954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5967916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5974822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5981715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5988865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.5996115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6003147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6009489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_bessel_y1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6016464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6054157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6060954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6067932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6074745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6081534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6088218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6094934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6101775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6108206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6115234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6122126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6128704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6139255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6145864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6152245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6158978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6166159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6173035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6179943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6189999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6197315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6204289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6210425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6217035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6223063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6229148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6236141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6242533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6249175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6255237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6261697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6268319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6274369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6287310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6292819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6298674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6305239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6311047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6317015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6325318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6333062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6342152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6351086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6360070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6368327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6374928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6381165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6392020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6398631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6405203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6412049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6418546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6425078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6431570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6438255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6444709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6451189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6458535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6465167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6471147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6477471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6483819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6489516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6495799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6502459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6508319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6513988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6519595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6526364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6538550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6539623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6543984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6549810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6555592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6561063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6571365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6577480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6583897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6590297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6596979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6603627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6610303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6621110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6627575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6634394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6642814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6649321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6655908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6662454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6669187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6675622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6682410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6689028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6695978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6702794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6709843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6717424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6726693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6735747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6745308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6754195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6762545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6769663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6776315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6783312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6789240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6796114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6802350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6809111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6815096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6820845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6827357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6833136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6839778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6845796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6851254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6856949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6862789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6868798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6874808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6880484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6886069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6892166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6898457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6904274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6909787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6915583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6921589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6927287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6933122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6939374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6945194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6951663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6957503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6963535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6969175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6975682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6982018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6988615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.6995538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7001614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7008170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7014228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7020057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7026105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7032252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7038237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7045297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7051282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7057302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7063423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7069798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7075912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7081819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7087780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7093892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7100802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7106777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7112295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7118162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7124391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7130210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7136290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7142253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7148552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7154333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7160161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7165976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7172214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7178342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7184223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7190190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7196998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7204214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7210923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_ndtr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7217735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7226821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7235604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7244584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7253261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7261346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7270665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7278837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7285839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7292519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7299273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7305453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7312218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7318746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7325591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7331849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7337923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7344080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7350396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7357073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7363181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7369452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7375975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7382540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7388624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7394684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7400673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7406945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7412382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7420994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7427161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7433146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7439076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7446855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7453263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7459322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7465716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7472204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7478397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7484422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7490600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7496897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7503468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7509554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7515722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7521745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7527842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7534898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7540997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7547524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7553998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7559768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7566068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7572248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7578464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7584693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7590820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7597038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7603917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7609838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7615763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7622671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7628795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7635731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7641572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7648513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7654406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7661575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7668121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7674370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7681002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7687061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7694171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7700591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7706832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7713797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7719535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7726228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7733400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7739508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7746654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.7753123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8699632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8706692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8713397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8719878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8727250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8734084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8743195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8751163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8761168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8770810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8777727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8785159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8791925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8798173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8804823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8811340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8818051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8824898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8831743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8846104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8853199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8859190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8866031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8871874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8878493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8885275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8892224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8898619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8905957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8913306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8920448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8927880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8934597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8941553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8948601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8955602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8962219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8968791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8975796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8982841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8989566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.8995894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9002592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9009612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9016242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9022797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9029528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9036667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9043644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9050442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9057680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9065254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9071609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9078637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9085770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9093185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9100577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9107009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9113777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9120395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9127981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9134599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9141612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9151997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9158754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9165694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9172694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9179665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9186169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9193248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9200051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9206485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9213297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9219460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9226362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9232661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9242036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9249527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9256359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9263067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9269269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9276380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9282349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9288942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9295766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9302203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9308543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9314503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9320773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9327489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9333800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9339653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_with_sizes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9345724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9351724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9357265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9363206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9369366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9375029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9384572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9390972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9397038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9403427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9409938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9416543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9423743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9430208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9436902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9443479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9454114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9460918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9467554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9474035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9483747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9490355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9497544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9504002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9510497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9517004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9523610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9529909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9536168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9542315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9548473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9554329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9560528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9566825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9573046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9579282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9586652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9592539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9598741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9605182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9611084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9617702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9623812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9630088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9636367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9642160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9648268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9654452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9660525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9666709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9672810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9678828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9684729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9690797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9696683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9702846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9709073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9715358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9722037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9728264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9735504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9741766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9752896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9758249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9764373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9770604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9776052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9782496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9788511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9794465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9799794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9805328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9812976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9818589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9824171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9829768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9835187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9841040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9846685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9852357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_to_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9857933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9863524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9870115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9875694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9881075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9886719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9892718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9898297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9904281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9910154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9915906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9921173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9961718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9962899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9964054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9965238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9966462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9967531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9968573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9973312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_constrain_range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9979240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9985610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9991452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:39.9996873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0003078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0008781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0014031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0019504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0025487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0031870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0037520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0101795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_storage_offset_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0104377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0107545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0115330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0118842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0121935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0129549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0131077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0132802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0135311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0136995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_along_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0138727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0140402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0141975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0143305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0144887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0150958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0157000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0163308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0170018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0176272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0182652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0189193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0195904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0206992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0213985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0220698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0227215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0233982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0239750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0248923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0257310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0265580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0271974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0278726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0288321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0293801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0299926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0306206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0312656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0318112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0324185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0329896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0335742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0341559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0348533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0354243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0359997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0365719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0371731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0377666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0383272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0389616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0505334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0511852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0518133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0524620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0531281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0537765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0544122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0550639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0587184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0593226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0600152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0606348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0612882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0619413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0625978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0632303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0638554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0644736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0651069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0657131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0663234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0669659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0676452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0682674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0688887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0695116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0701500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0707721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0713925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0720040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0725796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0736421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0743539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0751313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0757949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0764295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0770805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0776375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0782872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0788913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0795058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0801155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0807206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0812506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0818114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0823683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0830544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0835988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0841768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0847354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0852945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0862516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0868316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0873766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0879365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0885843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0891500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0897631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0903598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0909402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0915418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0921542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0927565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0933549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0939221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0944748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0950443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0956454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0962541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0968129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0973936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0979596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0985364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0990854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.0996776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1002499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1008289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1014301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1020189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1026140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1031944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1037710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1043447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1049701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1056387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1062691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1069694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1076222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1082709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1089187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1095672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1102955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1109450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1115979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1122431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1128716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1135062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1141922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1147878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1154461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1160613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1167046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1177495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1184077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1190654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1197100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1205063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.1211329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2879538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2888675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2897374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2903231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2909766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2916287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2923284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2929098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2935540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2942595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2948589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2954630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2961134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2967236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2973413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2979997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2986547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2993258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.2999811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3006254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3012399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3018796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3025219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3031668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3038157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3044531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3051133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3057600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3064044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3070116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3076376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3082409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3088598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3095612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3101781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3112527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3118927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3125627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3131475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3138048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3144356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3150470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3156984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3163147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3169776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3175734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3181957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3188322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3195049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3201458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3208554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3215011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3221163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3227255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3233788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3239301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3251409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3258775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3267511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3276438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3285505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3293296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3299552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3306268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3312674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3318373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3325037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3331066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3337658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3343812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3354006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3364813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3373678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3379336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3384784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3390149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3396176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3401878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3407650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3414402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3420176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3425928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3432217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3437962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3443695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3449416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3455480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3460842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3466886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3472988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3478312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3488245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3493966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3499902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3506029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3511740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3517643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3523198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3533453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3539317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3546926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3552981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3559371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3566300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3572899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3579500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3585855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3592313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3598562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3604336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3609766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3615484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3621360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3627329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3633041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3638795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3644746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3650520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3656037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3661431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3667820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3674979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3681545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3687926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3694591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3701297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3708146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3714753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3720924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3727283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3733235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3739634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3745773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3752110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3759999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3768677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3777550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3786882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3794572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3801181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3807675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3814319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3821253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3827520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3834041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3839899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3846805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3852687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3893140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3898626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3904535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3910424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3916656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3922800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3928644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3934703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3941230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3946797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3952723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3958610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3964469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3973884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3979703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3985945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3991953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.3998195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4004058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4010099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4016907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4022996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4029325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4035093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4041244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4047162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4053434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4059658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4065964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4072171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4078311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4084448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4090628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4096980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4103381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4109630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4115525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4121698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4127805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4134157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4140006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4146435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4152694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4159064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4165326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4171415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4177681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4183802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4189969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4195916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4202393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4208941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4214930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4221024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4227453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4233618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4239802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4246026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4252288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4258348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4265861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4271888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4281993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4288413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4294444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4300690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4307013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4313152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4319128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4325686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4331786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4337362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4343186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4349156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4355158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4360990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4366841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4372749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4379064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4384902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4391120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4397302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4403152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4409097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4414858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4421662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4427580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4433398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4439239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4445038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4450942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4462981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4464024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4468844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4476187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4482892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4488773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4499136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4505075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4510976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4516862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4523426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4529830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4535679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4546273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4552019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4558328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4564469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4570844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4576890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4582324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4592499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4597870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4603881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4609799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4615564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4621724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4628094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4634682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4641088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4647717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4654322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4660623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4666882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4673103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4679174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4685264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4691620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4697745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4703877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4710369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4716498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4722723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4729289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4735775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4742778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4749964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4756329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4762846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4776060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4783773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4792459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4803037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4810511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4816887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4823430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4833298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4843264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4848602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4855066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4861392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4868260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4873951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4879924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4886244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4892388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4898514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4904314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4909847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4915655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4922305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4927393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4933396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4939828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4946885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4953873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4960033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4966436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4972929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4979454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4986204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4992677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.4998847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as_real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5005506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5011672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5018723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5025698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5032019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5038470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5045008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5051339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5057760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5064537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5070766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5076951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5083094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5089340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5095530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5101757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5108321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5114537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5120585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5127184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5133291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5139249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5145626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5151813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5158062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5164285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5170592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5177560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5183259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5193921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5200246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5206539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5212873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5219259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5225873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5232038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5242432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5248808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5258588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5264795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5271548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5279911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5288985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5296118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5302441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5309144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5315061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5321869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5328009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5333913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5340474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5346418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5352227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5357737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5363330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5369309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5375210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5385341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5391484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5397447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5403244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5409212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5415138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5421440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5427407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5433336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5439032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5444894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5451178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5457186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5463211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5472554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5478518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5485018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5490837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5496793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5503180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5508739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5514485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5520574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5526354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5532504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5538269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5572134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5578315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5587584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5593569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5599596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5609019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5614515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_batch_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5620217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5626208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5632137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5637908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5643525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5649245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5655623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5661278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5666920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5672736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5679227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5684975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5691215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5697361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5703123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5709066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5715742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5721875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5727741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5733883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5739761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5746083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5751892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5761107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5766893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_amp_update_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5772712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5779329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5785813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5794696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5801209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5810012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5819035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5828280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5837106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5844713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5851848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5858391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5865245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5871272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5878241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5883658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5890107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5896004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5901985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5908110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5913967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5920023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5926587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5932606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5938009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5943600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5960964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5966280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5972944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5978727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.5984663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6017521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6023654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6029837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6035718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6041672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6047380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6053133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6059114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6065441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6071365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6077663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6085293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6094124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6100905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6107730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6113790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6124410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6130772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6137735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6143920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6150373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6156938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6163483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6173580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6179687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6186226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6192950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6199354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6205809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6212057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6222504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6228936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6235304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6241625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6248314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6254615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6261406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6272536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6281694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6290458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6297901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6304512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6311184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6317819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6323462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6329950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6341912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6348513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6354296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6360131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6366128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6372018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6378756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6384656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6390778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6396813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6402770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6408494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6414651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6420468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6426820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6433323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6439991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6445901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6451802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6457470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6463183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6468980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6474929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6480816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6486750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6492240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6497958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6503590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6509718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6515614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6521613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6527299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6533504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6539272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6545047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6550978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6556851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6562778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6568469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6574255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6580073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6586298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6592127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6598415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6604237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6609961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6615288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6620975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6626487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6632138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6638278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6644100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6649879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6656090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6662534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6668481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6674983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6680878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6687527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6694389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6701039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6708451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6715925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6722714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6729584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6736426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6743460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6754517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6761201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6767840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6774816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6782992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6791848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6801005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6810146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6819342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6828287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6837101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6844011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6850879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6861198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6868263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6874358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6880620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6887289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6893494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6899152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6905043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6910892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6917321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6923465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6929383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6935831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6941588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6951190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6956899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6963462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6969358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6975539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6981696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6987782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6993301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.6998957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7005007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7010676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7017783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7023342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7029295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7035089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7040682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7046412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7052715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7058684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7064470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7070332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7077175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7083008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7088887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7094688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7100640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7106485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7112588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7118503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7124389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7130371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7136528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7142427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7148427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7154420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7160208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7166011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7172213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7179456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7185100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7191182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7197005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7203232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7209253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7215040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7220932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7226756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7232785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7238627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7244513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7250336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7256081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7261947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7300388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7309576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7318435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7328001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7336844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7345721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7352607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7359811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7366220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7373115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7379711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7386109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7392147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7398075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7404682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7410592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7416488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7422085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7428358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7434729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7440757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7446539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7452615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7458575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7464332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7470172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7476683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7482292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7488174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7494794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7501989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7508499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7514900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7521386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7528020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7534689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7541161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7547731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7554043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7560297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7567085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7573315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7579491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7585909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7591657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7598572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7604934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7610629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7616616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7622928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7629402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7635602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7641720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7648523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7655199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7662146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7668871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7675359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7681837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7688347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7694858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7701600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7708908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7715981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7722961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7729911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7736642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7743220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7749973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7756268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7762612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7769094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7775812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7784472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7790990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7799334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7807910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7817304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7826384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7835129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7843506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7849079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7855031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7861530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7867497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7873277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7879186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7884914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7891796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7903987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7910301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7916338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7923163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7929127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7935072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7941418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7948101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7954166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7960559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7966515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7973246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7979482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7985488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7992183Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.7998286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8004387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8010526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8016402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8022567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8028514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8034744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8040765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8047300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8053919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8060281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8066355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8072588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8078779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8085405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8091207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8097643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8104474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8116888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8123021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8129571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8135507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8141882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8147780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8154714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8160855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8166775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8172943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8178997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8185428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8191536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8197744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8203660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8209794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8216040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8222503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8228504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8234537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8241812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8248270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8254389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8260821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8267372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8274759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8280632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8286468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8292514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8298663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8305678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8311837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8318102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8324203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8330453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8336367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8341896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8347837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8353605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8359338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8365293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8370907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8378084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8387218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8396250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8405034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8413294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8419745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8429144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8436609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8443261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8449957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8456257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8462592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8469509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8475765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8481745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8488093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8493904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8499628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8505690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8511964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8518704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8524634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8530563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8536381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8542269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8548547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8554325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8560658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8566286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8572066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8578815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8585939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8592979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8599535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8606226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8612555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8618850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8625581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8632312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8638875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8645207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8651865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8658677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8665947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8672993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8679439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8685845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8692601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8699110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8705627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8712096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8718477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8725009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8731345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8738821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8745924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8753057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8760280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8767024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8773636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8780447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8787534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8794441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8800621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8806551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8812986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8819064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8825516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8831858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8837836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8843694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8849468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8855785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8861557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8867766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8873532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8879374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8885486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8891186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8897017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8902867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8909717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8916106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8922637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8928823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8934568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8940460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8947459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8953875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8960110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8966107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.8971893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9797019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9802798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9809650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9818930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9826797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9835401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9845152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9853984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9863094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9871938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9881416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9888184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9895051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9901834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9907882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9914575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9920699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9926877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9933252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9939083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9945233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9951371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9957648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9963543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9969390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9975474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9981424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9987983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9993394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:40.9999367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0005527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0011883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0017846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0023636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0029640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0035709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0041741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0047966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0053895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0060064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0066461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0072348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0078423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0084216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0090409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0096295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0102343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0109020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0115226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0121178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0126746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0132832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0139695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0146044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0152430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0159333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0166048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0173153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0179876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0186336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0192910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0199611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0205873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0212111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0218625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0225107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0231702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0237956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0244173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0250299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0256897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0263391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0269832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0276859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0283107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0289771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0296430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0305235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0314101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0322208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0329224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0335844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0342285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0348272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0354679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0360782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0367111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0373462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0379000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0384534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0390484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0396062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0402781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0408247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0413788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0419616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0425243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0430862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0436523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0442396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0448786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0455434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0487975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0493442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0499937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0507164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0513195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0519028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0525386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0531024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0536925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0542655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0549253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0554951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0560785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0567302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0573083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0579037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0585106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0590937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0596715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0602442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0608650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0614608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0620526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0626317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0632560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0639661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0645327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0651243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0657276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0663303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0669225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0675023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0680818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0686858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0692552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0698121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0704051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0710313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0717562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0724284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0730935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0737339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0744030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0750572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0757301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0763793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0770276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0777027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0783310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0789711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0796506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0804680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0811138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0818290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0825295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0831904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0839874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0847262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0859151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0865788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0872927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0879616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0887664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0894587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0901196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0908504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_async_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0914843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0922929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0929845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0936625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0942598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0950761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0957499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0963664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0970211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0976365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0982856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0989652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.0995972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1002318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1008099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1014124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1020336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1038627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1039739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1040668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1045863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1051993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1059019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1067396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1073379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1079607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1085363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1092187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1098304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1104024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1110460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1116580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1122447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1129216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1134945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1141106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1147598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1154280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1194648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1200514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1228970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1234972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1240940Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1246843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1253682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1259709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1265789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1272072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1295721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1302258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1308514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1314537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1320408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1326438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1332357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1338486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1344512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1350846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1357463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1363297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1369040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1374759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1380585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1386206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1391753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1397762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1403638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1409370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1415375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1421193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1427169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1433104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1438917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1444460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1450166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1455992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1462752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1468974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1474791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1480538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1487088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1492858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1498720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1504770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1510744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1516377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1522422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1528093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1912425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1919047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1925531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1931808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1938467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1944833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1950848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1956690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1963583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1970093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1976748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1983549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1990635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.1997493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2004715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2011309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2018455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2025137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2031877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2038723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2045640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2053379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2059883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2066490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2073105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2079695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2086330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2092949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2099310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2105895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_index_put_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2112220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2117934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2124867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2131569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2137934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2144150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2151067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2157320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2163614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2169800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2176277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2182658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2189308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2195640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2202633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2208861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2214987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_all_true_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2221499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2228163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2234698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2240719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_any_true_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2246941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2253763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2259917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2266089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2272765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2279732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2286815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2293450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2299946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2307564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2313356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2319890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2325361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2331225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2338113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2343653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2349393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2355330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2361654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2368729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2374193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2379954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2385531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2391264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2397206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2403007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2409531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2417349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2423814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2429789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2436262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2442543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2448216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2454635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2460363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2467021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2472604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2478175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2484130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2490354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2495986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2502085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2508050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2513873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2519576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2526426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2533224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2539986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2546591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2554304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2560630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2567487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2574165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2580750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2587256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2594166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2600519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2607100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2613634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2619880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2626581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2633154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2639466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2645949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2652568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2668848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2677451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2684610Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2691860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2699434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2707219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2713790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2720375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2726721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2733773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2740163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2747039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2753587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2760672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2767696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2774054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2781199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2787641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2794466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2801127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2807458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2815443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2824630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2833652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2841141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2847607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2854128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2860670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2866533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2872833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2878782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lu_with_info_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2884311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2890727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2896570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2902354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dep_token_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2908108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2914344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2920907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2927125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2933074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2939063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2945281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2950809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2956161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2961856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2968197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2974511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2980315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2986357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2992268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.2998071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3004279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3010257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3016238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3022195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3028148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3033969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3040219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3046117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3051840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3057780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3063538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3070095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3076986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3083837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3090422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3096976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3103370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3110606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3117207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3123661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3129888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3136455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3143076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3149455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3155906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3162804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3168879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3179216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3185669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3192213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3198867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3205522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3212467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3219005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3225362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3231659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3238180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3244571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3251145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3258024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3264453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3270761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3277101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3283554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3293321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3299711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3305693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3311565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3332882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3339100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3345266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3351314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3357279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3363037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3369551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3375469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3383433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3389500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3395184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3401027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3406826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3412859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3418938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3424831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3430666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3436044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3442145Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3447548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3453487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3459307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3465247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3471133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3477212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3483401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3489432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3495618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3501575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3507641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3513778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3519671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3525756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3531719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3537620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3543822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3550031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3555929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3561897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3567742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3573353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3725944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3733528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3739349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3746886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3753302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3759597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3766342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3772485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3779611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3785763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3792067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3797958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3804566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3810978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3817094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3823755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3830502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3837410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3843980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3850338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3856354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3862945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3868595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_get_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3874216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3879871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3886153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_select_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3892836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3899199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3905793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3911699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3919305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3924964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3930656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3936869Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3943195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3950340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3956675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3963230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3969835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3976434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3982678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3988916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.3995447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4001403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4007429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4013709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4019790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4025630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4031442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4038337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4044458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4050625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4057417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4063359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4070012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4075548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4082461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4089717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4095959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4101760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4107866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4114643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4120848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4126891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4134141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4139984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4146742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4152748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4159078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4164801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4171816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4178820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4185455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4191310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4198154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4203831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4209547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4215367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4221837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4227641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4233202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4239041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4244446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4249826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4255014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4260766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4266882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4272632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4285386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4291216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4296795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4302549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4308428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4313967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4319899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4325415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4332057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4337984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4343808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4349745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4355522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4361561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4367554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4373292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4379050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4385101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4391093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.4396838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5017315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5023354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5029167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5034527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5040083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5046062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5052099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5061857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5067784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5073447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5079365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5084913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5091190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5097178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5103066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5108845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5115362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5121096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5127496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5133281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5139086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5144830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5150772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5156445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5162169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5168097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5174110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5180268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5186712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5192530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5198403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5204368Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5210311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5216149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5222115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5228062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5233698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5239256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5244974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5250783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5256818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5262711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5268611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5274535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5280856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5286625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5292448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5298632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5304737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5311109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5317453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5323228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5329122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5336203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5342837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5349080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5354994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5360551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5366312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5372604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5378702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5384391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5390273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5396264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5402136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5407740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5413507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5419737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5425401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5431159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5436854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5442492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5448763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5454492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5460312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5466881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5478002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5482142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5487431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5493041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5499314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5505266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5511081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5516976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5522862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5528566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5534493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5540345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5545966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5551799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5557821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5563529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5569729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5575229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5581001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5587135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5593037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5599186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5605468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5611467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5617812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5624313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5630593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5636623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5642636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5649164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5655644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5661888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5668097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5674300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5680491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5686407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5692600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5698961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5705165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5712109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5718192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5724595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5730695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5736852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5743244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5750072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5757970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5764544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5771125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5777743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5784659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5791636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5798824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5805570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5812716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5819774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5826624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5833862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5843316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5853043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5861962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5871289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5878088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5885102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5892093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5899099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5905645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5912121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5917925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5923841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5930735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.5936490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6180514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6186423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6191976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6197915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6203936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6209482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6215219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6221219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6227514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6233607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6239631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6245675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6252890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6259541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6266472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6273091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6279587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6286496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6292908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6299917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6306397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6312551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6319129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6326482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6332917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6339831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6348827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6358017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6367215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6376080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6383638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6390792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6397567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6404133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6410053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6416397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6422893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6429673Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6435508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6441615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6447499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6453526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6460387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6467278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6472886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6478763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6484919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6491133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6497270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6503851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6510023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6516607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6522322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6528015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6533809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6539683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6546065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6552491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6558408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6564160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6570006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6575748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6581735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6594600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6600771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6607365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6613949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6620955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6627683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6634155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6641143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6648286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6654970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6662029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6669207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6676089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6682877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6689137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6695584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6702743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6709266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6715783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6722642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6729595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6737090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6744735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6751304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6757859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6764557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6771161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6777942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6784865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6792306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6799360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6805930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6813083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6819478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6826505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6833468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6840060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6848740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6857451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6866496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6875820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6883021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6890976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6897945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6904107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6910668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6916707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6923172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6929548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6935531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6941836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6947912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6953771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6959911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6966062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6972197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6978110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6984522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6990471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.6997412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7003087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7008840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7014981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7020985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7027100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7032835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7039095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7045087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7050959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7057227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7063141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7069429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7075322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7081421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7087819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7093961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7099971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7106240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7112211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7118115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7124305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7130567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7136581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7142581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7148685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7155658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7162404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7168406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7174382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7181242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7186894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7192894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7199134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7205298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7211668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7218616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7224993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7231376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7238026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7243861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7250093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7256164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7262291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7268496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7274523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7280443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7286426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7292693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7298828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7304989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7311493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7317917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7323950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7330264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7336186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7341975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7348299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7354859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7360641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7366886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7373018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7379189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7386193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7392992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7398769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7404931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7411005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7416782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7422545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7428574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7434311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7440054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7459080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7465552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7471723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7477600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7483613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7489840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7495902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7502292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7508594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7515128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7520870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7526854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7533158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7539552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7545722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7552010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7558656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7566403Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7573214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7580018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7586321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7592660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7599813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7605662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7611131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7616899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7623517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7630281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7636110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_check_tensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7642438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7648678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7655138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7661944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7668406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7674098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7680268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7686676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7692855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7699724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7736071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7742094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7748401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7754166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7760990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7767688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7774804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7781820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7788482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7794959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7801485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7808517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7815407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7821356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7830272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7839764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7848898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7856043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7865378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7874534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7883184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.7891962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_string_default_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8173088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8179686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8185762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8191641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8198433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8204695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8211300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8216546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8222326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8229377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8235152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8241334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8247034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8253438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8259879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8266165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8272270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8278252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8284459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8291089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8296888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8302960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8308989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8315008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8321342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8327623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8334048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8342928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8350302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8359528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8370143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8379128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8389497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8398255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8405318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8412119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8418996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8425130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8431648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8442665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8444085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8450116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8455677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8461349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8467208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8473432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8480118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8485880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8491574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8497553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8503475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8509506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8515396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8521464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8527511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8533478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8539753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8545830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8551820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8557948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8564322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8570377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8576223Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8581931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8588278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8594252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8600404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8606518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8612967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8618852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8625075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8631571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8637780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8643655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8655987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8662459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8669089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8675574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8682033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8688951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8695511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8701907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8708474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8715351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8721828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8728643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8735892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8742500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8749703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8756380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8762985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8769716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8776552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8783808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8790367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8797766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8804247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8811011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8817312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8823841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8830611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8837164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8844443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8850710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8859772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8869095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8878486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8886147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8892566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8899459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8905795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8911568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8918284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8923902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8929494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8936450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8942450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8948347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8954361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8960398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8966717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8972831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8978470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.8984032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9199538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9206360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9213434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9226397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9230345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9236465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9243050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9248860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9255623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9261634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9268341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9274224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9280696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9287303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9294084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9300533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9306583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9312954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9319285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9325394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9331637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9337516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9343398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9350044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9356156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9362572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9369094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9375816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9382209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9388423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9395185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9401257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9407372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9413324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9419102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9425545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9431392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9437260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9443046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9449335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9455655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9461688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9468090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9474230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9480361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9486333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9492796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9499032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9505968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9511787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9518109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9524336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9530199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9536010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9541831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9547877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9553887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9560766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9567146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9573156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9579634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9586626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9593108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9599251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9605977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9612086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9618342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9624386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9630405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9636537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9642450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9648419Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9654519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9660719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9667473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9674155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9681207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9688109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9695605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9702051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9709013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9716216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9722915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9729681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9736106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9742836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9749933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9757534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9764388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9770865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9777507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9784590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9791332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9798773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9805691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9812501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9819284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9826228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9833225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9840293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9847004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9854024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9861370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9870996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9878449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9887348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9894747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9901362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9907879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9914597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9920481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9927498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9934036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9940549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9947365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9953392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9959335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9965236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9971962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9978317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9984880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9990848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:41.9996799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0003302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0009416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0016184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0022349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0028658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0035190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0041276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0047437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0053456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0089424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0095567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0101374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0107528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0114367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0120677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0126536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0132804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0139254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0145375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0151283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0156962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0162238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0168369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0174945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0181666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0188173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0194510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0200723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0207097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0213289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0219517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0225841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0232438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0239336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0245967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0253143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0260125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0267087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0273620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0280303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0287082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0293805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0300975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0308178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0315391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0322063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0328749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0335624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0342084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0348907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0366050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0375922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0385613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0392498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0399184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0406289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0413332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0434177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0440237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0446055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0452396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0458991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0465009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0471650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0477966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0484269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0490405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0496127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0502536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0508835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0514517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0520172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0526084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0532412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0538444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0544458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-09-07T06:45:42.0558481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0563736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0569197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0574459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0579850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0585231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0590683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0595832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0602051Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-09-07T06:45:42.0605845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-09-07T06:45:42.0611112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-09-07T06:45:42.0616374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0622429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0648074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0661089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0666623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0671815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0676789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0682400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0687429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0692509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0705416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0710897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0716376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0722806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0728452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0733437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0738824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0743962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0749259Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0754756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0761547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0767686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0773084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0778827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0784408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0790070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0795681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0801214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0807200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0827815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0834110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0840125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0845883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0851692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0857460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0883002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0891332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-09-07T06:45:42.0900657Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-09-07T06:45:42.0906070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-09-07T06:45:42.0913597Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-09-07T06:45:42.0917193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail\XPUHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu\detail 2025-09-07T06:45:42.0925205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-09-07T06:45:42.0931926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-09-07T06:45:42.0951253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-09-07T06:45:42.0955935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-09-07T06:45:42.0962379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-09-07T06:45:42.0975725Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-09-07T06:45:42.0980609Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-09-07T06:45:42.0983854Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.0988993Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.0994345Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.0999850Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1018010Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1023655Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1029593Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1034798Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1040296Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1046270Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1051545Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1056816Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1062061Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1067771Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1073186Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1078548Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1084192Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1089568Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1095900Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1101904Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1119909Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1125443Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1130758Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1136288Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-09-07T06:45:42.1139475Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\alloc_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1144862Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\COW.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1149978Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\COWDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1155296Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1173104Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\FakeGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1178320Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\GPUTrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1184163Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1190220Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineDeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1196227Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1202296Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\InlineStreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1208473Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1214311Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1220501Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyInterpreterHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1226497Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PyObjectSlot.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1232625Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1238617Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\SizesAndStrides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1244889Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1250828Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\impl\VirtualGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core\impl 2025-09-07T06:45:42.1256828Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1262623Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1269134Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1275466Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1281199Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1287420Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1293237Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1299505Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1317776Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1323737Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1329647Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1336645Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1342785Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1348803Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1354832Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1360656Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1366733Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1373568Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1379147Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1385959Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1392993Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1412348Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1418293Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1425977Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1432454Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1438720Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1444144Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-09-07T06:45:42.1450499Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-09-07T06:45:42.1453747Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1459106Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1465433Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1471195Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1489096Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1495595Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1501032Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1506492Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1511760Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1517127Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1522593Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1528319Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1533359Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1538792Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-09-07T06:45:42.1544384Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-09-07T06:45:42.1548023Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-09-07T06:45:42.1553329Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\CUDATest.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-09-07T06:45:42.1558349Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda\impl 2025-09-07T06:45:42.1563810Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-09-07T06:45:42.1566977Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-09-07T06:45:42.1571963Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-09-07T06:45:42.1577059Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-09-07T06:45:42.1582146Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-09-07T06:45:42.1585344Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\atomic.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1590575Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1595778Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\expm1f.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1601198Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1606805Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1612317Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1617480Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1635086Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1641696Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-09-07T06:45:42.1647178Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-09-07T06:45:42.1650426Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-09-07T06:45:42.1655777Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-09-07T06:45:42.1661043Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-09-07T06:45:42.1664209Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-09-07T06:45:42.1667590Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\complex_math_test_common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-09-07T06:45:42.1673684Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\complex_test_common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-09-07T06:45:42.1679609Z copying build\lib.win-amd64-cpython-39\torch\include\c10\test\util\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\test\util 2025-09-07T06:45:42.1686471Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-09-07T06:45:42.1690580Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1696828Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1702689Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1708676Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1726223Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1731571Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1737002Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1742745Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1748134Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1753984Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1759368Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1764761Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1770098Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1775930Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1781496Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1786858Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1792280Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1797896Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1803316Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1845449Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1851137Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1857058Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1862810Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1868932Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1880109Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Enumerate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1886206Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1892505Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1897886Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1903698Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1909844Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1915523Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1920890Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1926307Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\flat_hash_map.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1932768Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float4_e2m1fn_x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1937889Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1954713Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1959967Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1965172Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1970482Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1975970Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1981336Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1986597Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1991858Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.1997260Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2014259Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\floating_point_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2019357Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2025056Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2031069Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2036776Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2041676Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2046555Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2051922Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2057092Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2062512Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IntrusiveList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2068075Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2074026Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2079568Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2084881Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2102306Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2108322Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2113658Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2118967Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\logging_is_google_glog.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2124429Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\logging_is_not_google_glog.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2129779Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2136769Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2144046Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2151371Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2158218Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.2165377Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5067991Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5073592Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\order_preserving_flat_hash_map.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5080394Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5085749Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5091258Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5096192Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5101236Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5106873Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5111761Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5116829Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5122222Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5127347Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5132598Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5151710Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5157726Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Semaphore.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5163886Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5169965Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5175899Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5182928Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5189552Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5195628Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5201618Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint_elfx86.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5207695Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5213492Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5232482Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5238178Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5244781Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5252057Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5258149Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5264312Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5270227Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5276137Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5281868Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5287524Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5293491Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5299969Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5306115Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5312516Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5318200Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5324164Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5329799Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5336135Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5341513Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5347670Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5353620Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-09-07T06:45:42.5360526Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-09-07T06:45:42.5378018Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-09-07T06:45:42.5381855Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu\impl 2025-09-07T06:45:42.5388230Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-09-07T06:45:42.5391534Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-09-07T06:45:42.5396798Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl\XPUTest.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu\test\impl 2025-09-07T06:45:42.5404270Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-09-07T06:45:42.5412313Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-09-07T06:45:42.5420571Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-09-07T06:45:42.5438880Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-09-07T06:45:42.5445056Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-09-07T06:45:42.5451183Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-09-07T06:45:42.5457197Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-09-07T06:45:42.5461158Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-09-07T06:45:42.5464372Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-09-07T06:45:42.5469773Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-09-07T06:45:42.5474818Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-09-07T06:45:42.5480900Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-09-07T06:45:42.5484180Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-09-07T06:45:42.5489530Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-09-07T06:45:42.5494838Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-09-07T06:45:42.5500218Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-09-07T06:45:42.5503411Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-09-07T06:45:42.5510419Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-09-07T06:45:42.5515899Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-09-07T06:45:42.5521203Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\in_memory_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-09-07T06:45:42.5539082Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-09-07T06:45:42.5544397Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\read_adapter_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-09-07T06:45:42.5549833Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-09-07T06:45:42.5555226Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-09-07T06:45:42.5558402Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-09-07T06:45:42.5563735Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-09-07T06:45:42.5568964Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-09-07T06:45:42.5574569Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:42.5590959Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:42.5596463Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:42.5601799Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:42.5619585Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:42.5624899Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:42.5630727Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils\threadpool 2025-09-07T06:45:42.5636574Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5643351Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5661136Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5666584Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5671866Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5677091Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5682518Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5687797Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5693019Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5698310Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5703633Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5709683Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5715303Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5720660Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5725964Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5731375Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5736836Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-09-07T06:45:42.5739960Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5745227Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5751708Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5757971Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5769582Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5778675Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5783565Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5800741Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5808232Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5813528Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5818701Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5824355Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5829953Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5835695Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-09-07T06:45:42.5841608Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-09-07T06:45:42.5844825Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-09-07T06:45:42.5850151Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-09-07T06:45:42.5855683Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-09-07T06:45:42.5860879Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5865890Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.5871504Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-09-07T06:45:42.5875248Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-09-07T06:45:42.5878421Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.5883699Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.5888991Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.5895079Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.5900791Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.5919293Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.5928311Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-09-07T06:45:42.5933205Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\code_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-09-07T06:45:42.5941315Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\command_line_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-09-07T06:45:42.5950110Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-09-07T06:45:42.5954954Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\cpp 2025-09-07T06:45:42.5963151Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-09-07T06:45:42.5967451Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\csharp 2025-09-07T06:45:42.5973690Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\csharp 2025-09-07T06:45:42.5979700Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\importer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-09-07T06:45:42.5997666Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-09-07T06:45:42.6001141Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java\java_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\java 2025-09-07T06:45:42.6006575Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java\java_names.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\java 2025-09-07T06:45:42.6012297Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-09-07T06:45:42.6016143Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js\js_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\js 2025-09-07T06:45:42.6021758Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js\well_known_types_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\js 2025-09-07T06:45:42.6027329Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-09-07T06:45:42.6030789Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\objectivec 2025-09-07T06:45:42.6036132Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\objectivec 2025-09-07T06:45:42.6041457Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\parser.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-09-07T06:45:42.6049107Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-09-07T06:45:42.6053536Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php\php_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\php 2025-09-07T06:45:42.6059453Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\plugin.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-09-07T06:45:42.6065061Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\plugin.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler 2025-09-07T06:45:42.6071799Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-09-07T06:45:42.6075190Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python\python_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\python 2025-09-07T06:45:42.6080622Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-09-07T06:45:42.6083934Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\compiler\ruby 2025-09-07T06:45:42.6089255Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6095916Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6106337Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6112200Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6117970Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6123113Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6128558Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6134942Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6140357Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\field_mask.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6146095Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_enum_reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6151415Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_enum_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6157034Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6162623Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_table_driven.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6180770Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\generated_message_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6186368Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6191640Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\implicit_weak_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6197004Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\inlined_string_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6203567Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-09-07T06:45:42.6206550Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\coded_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6213385Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\gzip_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6218843Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\io_win32.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6223872Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\printer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6229426Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\strtod.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6246639Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\tokenizer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6252390Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6257795Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6263720Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\io 2025-09-07T06:45:42.6269494Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6275292Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6280806Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6286574Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6292693Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6298120Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6314859Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_type_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6320779Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6326929Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6332745Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6338118Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6343352Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6349227Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6354717Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6360473Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6365851Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6372527Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6377851Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\source_context.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6394516Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6401067Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6440266Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\bytestream.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6445626Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\callback.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6451686Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\casts.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6456738Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\common.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6461918Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\fastmem.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6467224Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6478341Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6483989Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6489161Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\map_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6494819Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\mutex.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6499923Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\once.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6505295Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\platform_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6510656Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6517606Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\status.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6524385Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\stl_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6532234Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\stringpiece.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6540885Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\strutil.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6548420Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs\template_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\stubs 2025-09-07T06:45:42.6554358Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6560804Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6566779Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6574036Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\unknown_field_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6580451Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-09-07T06:45:42.6584498Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\delimited_message_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6590529Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\field_comparator.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6596598Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\field_mask_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6613543Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\json_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6619692Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\message_differencer.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6626408Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\time_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6632492Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\type_resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6638452Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util\type_resolver_util.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf\util 2025-09-07T06:45:42.6644643Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6651210Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6658350Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-09-07T06:45:42.6676296Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify-zca.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.6693640Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.6702088Z copying build\lib.win-amd64-cpython-39\torch\include\jitprofiling.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.6708947Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-09-07T06:45:42.6712557Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6718642Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6724194Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6740402Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6746373Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6751659Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6757034Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6762251Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6767886Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6773177Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6778987Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6784533Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6789695Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6794943Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6800349Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6805465Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-09-07T06:45:42.6811387Z creating build\bdist.win-amd64\wheel\torch\include\legacy 2025-09-07T06:45:42.6814534Z copying build\lib.win-amd64-cpython-39\torch\include\legacy\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include\legacy 2025-09-07T06:45:42.6820497Z copying build\lib.win-amd64-cpython-39\torch\include\libittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.6825776Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.6831783Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-2.2 2025-09-07T06:45:42.6835372Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-09-07T06:45:42.6840702Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-override.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-09-07T06:45:42.6845954Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-stats.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-09-07T06:45:42.6862007Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-09-07T06:45:42.6867974Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-09-07T06:45:42.6871462Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6874581Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6881782Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6892535Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6898258Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6903539Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6969844Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6977904Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6985780Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.6993601Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7000755Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7006898Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7013084Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7018617Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7025041Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7031088Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7036405Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7042738Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7048111Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7054020Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7059894Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7065986Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7082330Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7088158Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7093521Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7100142Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7105852Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7112286Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7117712Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7123822Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-09-07T06:45:42.7129371Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.7135537Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.7143977Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-09-07T06:45:42.7147321Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7153058Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7158282Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7164635Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7169813Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7174771Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7190981Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\conduit 2025-09-07T06:45:42.7194265Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit\pybind11_conduit_v1.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\conduit 2025-09-07T06:45:42.7199742Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit\pybind11_platform_abi_id.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\conduit 2025-09-07T06:45:42.7205343Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\conduit\wrap_include_python_h.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\conduit 2025-09-07T06:45:42.7221533Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\critical_section.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7227909Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-09-07T06:45:42.7231024Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7236754Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7242849Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7248138Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7253517Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\dynamic_raw_ptr_cast_if_possible.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7269866Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7275446Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\function_record_pyobject.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7280712Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7286368Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7292331Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\native_enum_data.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7297816Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\pybind11_namespace_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7303158Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\struct_smart_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7309004Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7314356Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\type_caster_base.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7320803Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\using_smart_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7326897Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\value_and_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-09-07T06:45:42.7333779Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-09-07T06:45:42.7337644Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-09-07T06:45:42.7343279Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-09-07T06:45:42.7349919Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-09-07T06:45:42.7356321Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7361808Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7367519Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7373323Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7379057Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7385404Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7391302Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_simple.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7397057Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7402673Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\native_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7419963Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7421147Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7428406Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7435884Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7446801Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7454187Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-09-07T06:45:42.7457750Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-09-07T06:45:42.7464792Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7470920Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7477163Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\subinterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7489569Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\trampoline_self_life_support.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7492546Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7508038Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7513323Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\warnings.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-09-07T06:45:42.7518634Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:42.7527598Z creating build\bdist.win-amd64\wheel\torch\include\THC 2025-09-07T06:45:42.7530795Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCAtomics.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-09-07T06:45:42.7535957Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCDeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-09-07T06:45:42.7541491Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-09-07T06:45:42.7555834Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-09-07T06:45:42.7559190Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-09-07T06:45:42.7562370Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-09-07T06:45:42.7565669Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7568911Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\all.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7573960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\arg.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7579192Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7585041Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7590478Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7593812Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:42.7597237Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:42.7603164Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:42.7608355Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-09-07T06:45:42.7614080Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7619579Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7625277Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7639902Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7645262Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7650884Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7656632Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7661742Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7667084Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7672449Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\datasets 2025-09-07T06:45:42.7688540Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7694314Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:42.7698498Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:42.7706618Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\queue.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:42.7714362Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\detail 2025-09-07T06:45:42.7722315Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\example.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7730021Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7738382Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7742313Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7748480Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7755311Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7761802Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7767891Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7784903Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7790979Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\samplers 2025-09-07T06:45:42.7796333Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7801641Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:42.7805499Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:42.7811001Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:42.7816079Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:42.7821514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:42.7827232Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data\transforms 2025-09-07T06:45:42.7832399Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7838408Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\worker_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\data 2025-09-07T06:45:42.7843806Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7848993Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-09-07T06:45:42.7852297Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail\static.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\detail 2025-09-07T06:45:42.7858112Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\detail 2025-09-07T06:45:42.7863633Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\enum.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7879602Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\expanding_array.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7884835Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\fft.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7891666Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\imethod.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7899862Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7907245Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7913801Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nativert 2025-09-07T06:45:42.7919238Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nativert 2025-09-07T06:45:42.7927794Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nested.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.7935835Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.7940838Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\cloneable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.7949824Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.7954295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.7960985Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.7967114Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.7973254Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.7989793Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.7995545Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8000894Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8007379Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8012783Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8018030Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8023961Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8029514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8035036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8041007Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8046959Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8052467Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\functional 2025-09-07T06:45:42.8057838Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8063518Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8079683Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8085734Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8089144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8095496Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8101295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8107430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8113905Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8129127Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8135253Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8141315Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8147411Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8163697Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8169615Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8176085Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8182172Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8189187Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8195374Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-09-07T06:45:42.8201391Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8242123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8247457Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8253260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8259196Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8265231Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8271154Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8277286Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8283869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8289518Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8295530Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8301394Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8307895Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8313925Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8319951Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8326052Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8332074Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8338258Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8344649Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\modules 2025-09-07T06:45:42.8350646Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8357026Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8360718Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\activation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8367237Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8372889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8382562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\conv.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8388616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8398381Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8404907Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8411493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8417569Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8423662Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8429760Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\loss.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8436441Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8441812Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\padding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8447937Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8453303Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8459020Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8465570Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8471051Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8476578Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8481894Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8487778Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options\vision.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\options 2025-09-07T06:45:42.8493191Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8499298Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-09-07T06:45:42.8502822Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-09-07T06:45:42.8508441Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8513818Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\pimpl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8519642Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:42.8522975Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:42.8528564Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:42.8533738Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn\utils 2025-09-07T06:45:42.8539060Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\nn 2025-09-07T06:45:42.8544306Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8549757Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8553744Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8559066Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adam.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8564639Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8569960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8575442Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\optimizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8580995Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8596508Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:42.8600023Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:42.8605559Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:42.8610785Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-09-07T06:45:42.8625971Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8631307Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\optim 2025-09-07T06:45:42.8636493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8642386Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\ordered_dict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8648385Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-09-07T06:45:42.8651926Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\python 2025-09-07T06:45:42.8656937Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8662383Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:42.8665840Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:42.8670967Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:42.8676235Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:42.8681506Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch\serialize 2025-09-07T06:45:42.8697054Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8702515Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8707540Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\special.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8713401Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\torch.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8719041Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8724697Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8730584Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\version.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8736491Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\api\include\torch 2025-09-07T06:45:42.8744151Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8747678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\anomaly_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8753655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8759599Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8765615Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\cpp_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8782127Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\custom_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8788832Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\edge.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8794656Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8800945Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\forward_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8806894Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8813421Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:42.8817434Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:42.8823629Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:42.8829654Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:42.8835433Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:42.8853468Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:42.8861659Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\functions 2025-09-07T06:45:42.8869477Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\FunctionsManual.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8878714Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\function_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8887465Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:42.8892337Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:42.8903344Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\python_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:42.8909408Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:42.8925782Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\VariableType.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:42.8931184Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:42.8937646Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\generated 2025-09-07T06:45:42.8944325Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8949554Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\graph_task.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8955085Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8960188Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\input_buffer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8965567Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\input_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8971779Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8977580Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8982948Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_kineto.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.8988752Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_legacy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9007852Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\profiler_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9013194Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9018996Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9024242Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_cpp_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9030430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9036394Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9041964Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_fft_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9047542Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9053471Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9071730Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9077246Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9083060Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_nested_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9089212Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_nn_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9094622Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9100898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9106297Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_special_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9111558Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_torch_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9118270Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9134458Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9140484Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\record_function_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9146675Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\saved_variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9152706Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9158427Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\symbolic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9164415Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:42.9168450Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\error_messages.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:42.9174345Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:42.9180653Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:42.9186673Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:42.9203245Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\warnings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:42.9209055Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd\utils 2025-09-07T06:45:42.9214872Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\variable.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9221586Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9227788Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\variable_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\autograd 2025-09-07T06:45:42.9233885Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:42.9240088Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-09-07T06:45:42.9243486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cpu 2025-09-07T06:45:42.9249319Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9253064Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9259041Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9265195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\device_set.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9270585Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9275938Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\GdsFile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9292727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\memory_snapshot.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9298461Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9304009Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\nccl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9309966Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\python_comm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9315624Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\python_nccl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9321593Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9327322Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\THCP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9332947Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-09-07T06:45:42.9339081Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:42.9354982Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:42.9360461Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:42.9366030Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:42.9372143Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-09-07T06:45:42.9376090Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:42.9379440Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:42.9385604Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-09-07T06:45:42.9389325Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context\container.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\context 2025-09-07T06:45:42.9395382Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\context 2025-09-07T06:45:42.9401577Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-09-07T06:45:42.9405524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\engine 2025-09-07T06:45:42.9411918Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-09-07T06:45:42.9417297Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\functions 2025-09-07T06:45:42.9424515Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\functions 2025-09-07T06:45:42.9430908Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:42.9447118Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9450539Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9456757Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9462232Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9478551Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9484249Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9489718Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9495144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9501395Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9507599Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9512609Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-09-07T06:45:42.9517629Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\autograd 2025-09-07T06:45:42.9524432Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9527726Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9533677Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9538770Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\c10d.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9543779Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9549394Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-09-07T06:45:42.9552923Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-09-07T06:45:42.9559207Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-09-07T06:45:42.9564565Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-09-07T06:45:42.9578034Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_plane 2025-09-07T06:45:42.9583479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\control_plane 2025-09-07T06:45:42.9589239Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:42.9592747Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:42.9598334Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:42.9603631Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-09-07T06:45:42.9612819Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\debug.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9617737Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9623161Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\error.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9628940Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9634906Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9640480Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9645870Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9651414Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9657251Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9662836Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9668373Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9673627Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9679043Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9684327Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9689852Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9694809Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9700760Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9715826Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9721136Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9727309Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9733278Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9739753Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9745674Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9752148Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9757877Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9774712Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9780727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9787026Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:42.9791109Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:42.9796869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:42.9802453Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\quantization 2025-09-07T06:45:42.9819242Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9825360Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9831959Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9838023Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9843988Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\socket.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9849977Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9856140Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9862264Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9866349Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9872740Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9878703Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9894815Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9900899Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9942631Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9948908Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-09-07T06:45:42.9955123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9967062Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9973260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9979404Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9984775Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9990978Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:42.9996446Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:43.0001482Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:43.0007285Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:43.0012633Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-09-07T06:45:43.0018452Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0022568Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0028368Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\message.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0033675Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-09-07T06:45:43.0037139Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\metrics 2025-09-07T06:45:43.0042516Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-09-07T06:45:43.0045939Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\profiler 2025-09-07T06:45:43.0051405Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\profiler 2025-09-07T06:45:43.0056629Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0072614Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0078123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0083696Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0089144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0094537Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0099793Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0105293Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0110791Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0116081Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0121443Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0126868Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0132438Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0137815Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0144041Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0149260Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0154676Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0170520Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0175839Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0181655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0187483Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-09-07T06:45:43.0190929Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\testing 2025-09-07T06:45:43.0196455Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc\testing 2025-09-07T06:45:43.0201466Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0206824Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0212092Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0217517Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0222838Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\rpc 2025-09-07T06:45:43.0228549Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0234782Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0241115Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0244574Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cache_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0250570Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0257238Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpp_shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0263269Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpython_defs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0279357Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\cpython_includes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0285380Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\debug_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0291262Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\eval_frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0297295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0303290Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\extra_state.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0309459Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0315390Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\guards.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0321165Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0326948Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0332486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\dynamo 2025-09-07T06:45:43.0337882Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0343437Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0349731Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-09-07T06:45:43.0353646Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\example_upgraders.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-09-07T06:45:43.0359896Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\pt2_archive_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-09-07T06:45:43.0365710Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-09-07T06:45:43.0371337Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\upgrader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-09-07T06:45:43.0377581Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0383569Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-09-07T06:45:43.0387067Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\functorch 2025-09-07T06:45:43.0392749Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-09-07T06:45:43.0396492Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx\node.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\fx 2025-09-07T06:45:43.0402198Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0408514Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-09-07T06:45:43.0411888Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-09-07T06:45:43.0415779Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_eager 2025-09-07T06:45:43.0423873Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_eager 2025-09-07T06:45:43.0432085Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:43.0437113Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:43.0444520Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:43.0449850Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:43.0455589Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:43.0460794Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:43.0476975Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-09-07T06:45:43.0482108Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-09-07T06:45:43.0485646Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_package 2025-09-07T06:45:43.0491632Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_package 2025-09-07T06:45:43.0496961Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:43.0510116Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:43.0515641Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:43.0521076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:43.0537931Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:43.0543237Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:43.0548786Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-09-07T06:45:43.0554045Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0557470Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0563075Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0568081Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0583939Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0589982Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0595879Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0602028Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0609677Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0616366Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0622655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0628724Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0634632Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0640667Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0646648Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-09-07T06:45:43.0652922Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:43.0656364Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:43.0660173Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:43.0666158Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:43.0676120Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:43.0681396Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:43.0687284Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:43.0692841Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-09-07T06:45:43.0712036Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:43.0717075Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:43.0725089Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:43.0733748Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:43.0752084Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:43.0758708Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-09-07T06:45:43.0765001Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:43.0770209Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:43.0786020Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:43.0792072Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:43.0798149Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch 2025-09-07T06:45:43.0803431Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\array_ref_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-09-07T06:45:43.0808834Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_prefix.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-09-07T06:45:43.0815454Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:43.0819481Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:43.0824733Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:43.0829822Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:43.0834742Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:43.0840087Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:43.0854053Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:43.0859138Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:43.0864019Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:43.0869215Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-09-07T06:45:43.0874195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:43.0879828Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-09-07T06:45:43.0884735Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\inductor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-09-07T06:45:43.0890180Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-09-07T06:45:43.0895525Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-09-07T06:45:43.0898874Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\instruction_counter 2025-09-07T06:45:43.0903952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0909363Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.0914753Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-09-07T06:45:43.0917986Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-09-07T06:45:43.0921198Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\compilation_unit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-09-07T06:45:43.0926637Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\function_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-09-07T06:45:43.0932019Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-09-07T06:45:43.0937785Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-09-07T06:45:43.0943874Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api\object.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\api 2025-09-07T06:45:43.0960709Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.0963869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.0969259Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.0974791Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.0980655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.0996730Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.1002115Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.1007832Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.1013224Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.1018506Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends 2025-09-07T06:45:43.1023864Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-09-07T06:45:43.1027523Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-09-07T06:45:43.1030930Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-09-07T06:45:43.1040555Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:43.1044115Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:43.1049245Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:43.1054457Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:43.1069776Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:43.1075293Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\coreml\objc 2025-09-07T06:45:43.1080851Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-09-07T06:45:43.1084762Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-09-07T06:45:43.1088734Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-09-07T06:45:43.1095331Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-09-07T06:45:43.1099389Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-09-07T06:45:43.1105814Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-09-07T06:45:43.1109465Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-09-07T06:45:43.1115433Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\backends\xnnpack 2025-09-07T06:45:43.1121518Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-09-07T06:45:43.1125083Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-09-07T06:45:43.1128931Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\cuda 2025-09-07T06:45:43.1135199Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1138579Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1145032Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1151076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1157977Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:43.1161984Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:43.1168096Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:43.1174014Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-09-07T06:45:43.1180210Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-09-07T06:45:43.1184442Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-09-07T06:45:43.1190877Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-09-07T06:45:43.1196650Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1202095Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1219010Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1225054Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1231351Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1237724Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1243772Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1249579Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1255556Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\fuser 2025-09-07T06:45:43.1261607Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1265955Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1271658Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1277253Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1283272Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1299278Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1304402Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1310284Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1315655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1320857Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1326342Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1331725Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\codegen\onednn 2025-09-07T06:45:43.1337377Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-09-07T06:45:43.1340716Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda\cuda.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\cuda 2025-09-07T06:45:43.1346841Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1350361Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1355665Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1360762Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1376354Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1381582Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1386821Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\error_report.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1392269Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1397369Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1403106Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1408828Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1413952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\lexer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1420072Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1425601Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1431124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1436630Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1441856Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1447545Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\resolver.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1453014Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1458529Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1463933Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1481170Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\source_range.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1486995Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\source_ref.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1492382Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\strtod.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1497465Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1503486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1508916Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tree.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1515238Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\tree_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1521407Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\frontend 2025-09-07T06:45:43.1527293Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1530617Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1536141Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\attributes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1574910Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1580337Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1590625Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\graph_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1595564Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1601715Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\irparser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1607268Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\ir_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1612562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\named_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1617891Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\node_hashing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1623378Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\scope.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1629080Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1634430Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir\type_hashing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\ir 2025-09-07T06:45:43.1639553Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\jit_log.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-09-07T06:45:43.1644855Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\jit_opt_limit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-09-07T06:45:43.1660688Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1663885Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\code.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1669826Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:43.1673213Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:43.1678317Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:43.1683657Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:43.1699722Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\compatibility 2025-09-07T06:45:43.1704964Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1710273Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\file_format.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1724941Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1731333Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1736793Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1742806Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1748746Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1754911Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1760739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1766636Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1772776Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1776316Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1782285Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1789024Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1804954Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1810849Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1817157Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1823145Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\model_tracer 2025-09-07T06:45:43.1829412Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1835479Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:43.1839364Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:43.1845243Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:43.1851059Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\nnc 2025-09-07T06:45:43.1857193Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1863154Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1869143Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1875071Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1881318Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1887079Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1893043Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1899084Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1915909Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:43.1919332Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\export_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:43.1925176Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-09-07T06:45:43.1928409Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train\optim 2025-09-07T06:45:43.1934401Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:43.1940202Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile\train 2025-09-07T06:45:43.1946009Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\type_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1951898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\mobile 2025-09-07T06:45:43.1957934Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:43.1961122Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:43.1966493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:43.1971660Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:43.1978239Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders\version_map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\operator_upgraders 2025-09-07T06:45:43.1994761Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.1998040Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\add_if_then_else.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2003213Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2008144Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\autocast.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2013297Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2028342Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\batch_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2033957Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\canonicalize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2039179Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2044557Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2049527Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2054576Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2060038Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2066728Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\concat_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2071860Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2076958Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2082410Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2087738Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2094074Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-09-07T06:45:43.2098435Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-09-07T06:45:43.2105220Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2111352Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2146757Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2152459Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2158270Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2164359Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2171364Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2177232Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2183201Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2189376Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\freeze_module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.2195455Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3111640Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3116848Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3122478Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3127932Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3133280Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3138796Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3144799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3150158Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3155155Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3168359Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3177880Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3183542Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3188808Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inliner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3194022Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3199479Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3204592Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3209882Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\inplace_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3215289Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\insert_guards.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3228634Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3234486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lift_closures.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3239612Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\liveness.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3245101Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3251103Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3257190Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3262670Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3268231Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3273446Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3279098Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3284308Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3305613Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3312147Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3315718Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3321385Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3326999Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\constant_map.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3333725Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3347221Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3351739Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3357497Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3362975Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3368539Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3373599Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3378689Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3383678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3389269Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3395003Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:43.3398930Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:43.3403951Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:43.3409136Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:43.3423238Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-09-07T06:45:43.3428769Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3433939Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3439262Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3444355Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3449446Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3454514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3469919Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\onnx 2025-09-07T06:45:43.3476011Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3482163Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\pass_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3488374Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3493801Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3499367Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3505545Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3511440Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3517172Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3532847Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3536221Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3541896Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3548083Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3553068Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3566938Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3572490Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3577882Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3584286Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3589730Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\quantization 2025-09-07T06:45:43.3595729Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3601431Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3606533Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3612292Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_expands.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3618255Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3623544Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3629856Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3635562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3649619Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3654984Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3660690Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3666493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3671823Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3677546Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3683442Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3689505Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3695271Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3701611Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3707827Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:43.3711576Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:43.3717199Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\memory_dag.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:43.3722991Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:43.3737684Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\op_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:43.3743106Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes\utils 2025-09-07T06:45:43.3748951Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3755191Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3761196Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3767076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\passes 2025-09-07T06:45:43.3783899Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3784946Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3786026Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\module_python.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3788265Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3793931Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\pybind_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3800399Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3815314Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3820632Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_dict.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3826036Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3831559Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3837170Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3843059Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3849251Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3855285Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\python_tree_views.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3861368Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\script_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3867123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3873048Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\python 2025-09-07T06:45:43.3878920Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\resource_guard.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit 2025-09-07T06:45:43.3885971Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3890026Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3896464Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\autodiff.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3902957Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3908778Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3923491Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3929880Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3936341Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\exception_message.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3942334Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3950868Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3956988Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3965372Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\instruction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.3974525Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:43.3979889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:43.3988736Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:43.3997328Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:43.4005021Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\interpreter 2025-09-07T06:45:43.4021678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4028289Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4033963Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4040059Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\logging.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4045267Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\operator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4050992Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\operator_options.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4056855Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\print_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4062276Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4077716Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4083661Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4089848Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\script_profile.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4095415Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4101072Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4107903Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4113749Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4119656Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4123278Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4128616Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4134866Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4140290Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\memory_planner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4145870Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4151239Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\passes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4166857Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4172397Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4178114Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\static_method.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4216929Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime\static 2025-09-07T06:45:43.4222756Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4233436Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4239146Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4244629Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4250324Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\runtime 2025-09-07T06:45:43.4256632Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4260257Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4266458Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4272008Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4287182Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4292810Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4298763Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4304080Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4309486Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4314576Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4320059Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_read.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4325762Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\import_source.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4331123Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4337838Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4343005Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickle.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4348468Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4354089Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4359320Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\python_print.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4364774Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4370921Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4377112Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\storage_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4392187Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4398305Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\unpickler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-09-07T06:45:43.4405092Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4408767Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4414976Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4421161Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4427296Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4442681Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4450744Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4458752Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4467202Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4475709Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4482353Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4489500Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4495637Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4501790Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4508327Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4514332Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4519603Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4525661Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4531317Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4536913Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4542985Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4548420Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4563284Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4569184Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4575062Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4580462Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4585960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4591696Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4597411Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4602601Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4608267Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4613585Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4619665Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4633600Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4639075Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4645007Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4648703Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4653862Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4658837Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4663952Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4668938Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4683524Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4688805Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4694383Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4699581Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr\operators 2025-09-07T06:45:43.4704622Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4710316Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4715715Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4721404Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4726829Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4731944Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4737720Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4743244Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\tensorexpr 2025-09-07T06:45:43.4749200Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:43.4752503Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:43.4757733Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\file_check.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:43.4763847Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\testing 2025-09-07T06:45:43.4770234Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.4776383Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-09-07T06:45:43.4779801Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:43.4783659Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:43.4790305Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:43.4796444Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:43.4802414Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\backend 2025-09-07T06:45:43.4818219Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4821565Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\cache.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4827473Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\config.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4833454Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\debug_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4839734Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4845560Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4860960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4867199Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-09-07T06:45:43.4870644Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\internal_ops 2025-09-07T06:45:43.4876357Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4882190Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4888368Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4894403Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4900519Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ir_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4906916Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4912950Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\metrics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4918678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\multi_wait.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4924826Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-09-07T06:45:43.4929184Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\ops 2025-09-07T06:45:43.4934905Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core\ops 2025-09-07T06:45:43.4940710Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\permutation_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4947295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\shape.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4953400Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\shape_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4960419Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4967704Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4975802Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\tensor_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4983973Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4991330Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\trie.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.4997373Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\unique.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.5013637Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\core 2025-09-07T06:45:43.5019803Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:43.5023424Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:43.5031960Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:43.5038588Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\generated 2025-09-07T06:45:43.5044209Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-09-07T06:45:43.5047414Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\python 2025-09-07T06:45:43.5052516Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python\python_util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\python 2025-09-07T06:45:43.5058134Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5071584Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\config.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5077050Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5082909Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5088443Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:43.5101763Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:43.5107652Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:43.5113585Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend\ops 2025-09-07T06:45:43.5119392Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5125235Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5130665Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5136058Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5142067Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5147553Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_node.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5152897Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\lazy\ts_backend 2025-09-07T06:45:43.5158174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5173170Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5178485Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-09-07T06:45:43.5181746Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\counters.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-09-07T06:45:43.5187000Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\events.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-09-07T06:45:43.5192309Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor\python_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\monitor 2025-09-07T06:45:43.5197602Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-09-07T06:45:43.5200943Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mps 2025-09-07T06:45:43.5206035Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-09-07T06:45:43.5209191Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mtia 2025-09-07T06:45:43.5214385Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia\profiler 2025-09-07T06:45:43.5217725Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mtia\profiler 2025-09-07T06:45:43.5223654Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-09-07T06:45:43.5227112Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\multiprocessing 2025-09-07T06:45:43.5232425Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-09-07T06:45:43.5235655Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\back_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-09-07T06:45:43.5240930Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-09-07T06:45:43.5246212Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx\onnx.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\onnx 2025-09-07T06:45:43.5251469Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5254658Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\api.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5259719Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\collection.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5265599Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\combined_traceback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5270901Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\containers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5285646Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\data_flow.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5290894Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\events.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5296362Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5301703Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\kineto_shim.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5307359Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:43.5310794Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:43.5316404Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:43.5321670Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\orchestration 2025-09-07T06:45:43.5327307Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\perf-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5333089Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\perf.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5339158Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:43.5343174Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:43.5349393Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:43.5355503Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\python 2025-09-07T06:45:43.5361555Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:43.5365935Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:43.5371667Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:43.5377246Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:43.5392585Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\standalone 2025-09-07T06:45:43.5398515Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-09-07T06:45:43.5401795Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs\base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\stubs 2025-09-07T06:45:43.5408230Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5412004Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\action.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5417862Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\communicate.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5424506Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5430410Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5445694Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5451917Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5457769Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5465849Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\fde.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5473725Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\lexer.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5481770Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5489807Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5495869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\range_table.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5501770Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\sections.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5507996Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5513928Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5519177Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler\unwind 2025-09-07T06:45:43.5525089Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\util.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\profiler 2025-09-07T06:45:43.5530410Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5535678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreterHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5541446Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5546775Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5552104Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5557570Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5573140Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5578703Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5581972Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\accelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5587990Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5593338Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5599002Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\stableivalue_conversions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5604703Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5620361Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5626575Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor_struct.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-09-07T06:45:43.5632819Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5637845Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5643301Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5648788Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5654005Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-09-07T06:45:43.5657415Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor\python_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\tensor 2025-09-07T06:45:43.5663047Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5668618Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5674124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5679514Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.5685407Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5688620Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\byte_order.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5694080Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5699529Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\cuda_enabled.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5704688Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\device_lazy_init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5721039Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\disable_torch_function.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5726604Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\generated_serialization_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5733921Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\init.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5739245Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\invalid_arguments.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5744282Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\nested.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5749565Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\numpy_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5754801Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\object_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5760088Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\out_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5765089Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pybind.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5771145Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5776919Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pyobject_preservation.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5782803Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5789676Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_arg_parser.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5796493Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_compat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5802683Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5808728Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_numbers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5824450Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_raii.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5830522Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_scalars.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5836858Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5885620Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5891649Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_symnode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5898032Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5904793Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\python_tuples.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5911732Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\schema_info.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5917858Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\six.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5923983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\structseq.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5934846Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_apply.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5940833Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_dtypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5946253Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5952732Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_layouts.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5958889Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_list.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5967870Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5975803Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_new.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5984519Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.5993034Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_qschemes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.6010376Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\tensor_types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.6016314Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.6022877Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\throughput_benchmark.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.6028544Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.6035562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.6042798Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils\verbose.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\utils 2025-09-07T06:45:43.6048799Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-09-07T06:45:43.6055356Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-09-07T06:45:43.6058681Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-09-07T06:45:43.6063870Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-09-07T06:45:43.6069390Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\xpu 2025-09-07T06:45:43.6075948Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-09-07T06:45:43.6082945Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-09-07T06:45:43.6088471Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-09-07T06:45:43.6103831Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly 2025-09-07T06:45:43.6107083Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\core 2025-09-07T06:45:43.6110236Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\core 2025-09-07T06:45:43.6115538Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\cpu 2025-09-07T06:45:43.6119218Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\cpu\vec 2025-09-07T06:45:43.6122572Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\intrinsics.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec 2025-09-07T06:45:43.6128325Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\cpu\vec\vec256 2025-09-07T06:45:43.6131706Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec\vec256 2025-09-07T06:45:43.6137230Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec\vec256 2025-09-07T06:45:43.6142167Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\cpu\vec\vec_half.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\cpu\vec 2025-09-07T06:45:43.6147914Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\macros 2025-09-07T06:45:43.6151328Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-09-07T06:45:43.6156346Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-09-07T06:45:43.6161519Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-09-07T06:45:43.6167389Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6170581Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6175869Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6180981Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6186167Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6191957Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6197273Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6212872Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6218627Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6224011Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6229494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6235040Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6240381Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6245691Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\floating_point_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6250872Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6257037Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6262257Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6267320Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6272462Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6277991Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6283583Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\shim_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6289669Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\util 2025-09-07T06:45:43.6295511Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-09-07T06:45:43.6301848Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-09-07T06:45:43.6309460Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-09-07T06:45:43.6327515Z creating build\bdist.win-amd64\wheel\torch\jit 2025-09-07T06:45:43.6331366Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6338035Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6344596Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6350564Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-09-07T06:45:43.6354224Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-09-07T06:45:43.6360257Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6375496Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6381404Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6387235Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6392903Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6398893Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6404857Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6410718Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6416714Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6422812Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6428636Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6434575Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6440875Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6446845Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6452714Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6458970Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-09-07T06:45:43.6462190Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-09-07T06:45:43.6469973Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-09-07T06:45:43.6476382Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6484192Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6491031Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6498300Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6504174Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6520705Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6527592Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6533279Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6539727Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-09-07T06:45:43.6546495Z creating build\bdist.win-amd64\wheel\torch\lib 2025-09-07T06:45:43.6549675Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6557398Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6563332Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6580816Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6586762Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6601855Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6614550Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6624815Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6632369Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6638988Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.6645475Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:43.7774311Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4054327Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4078807Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4090792Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4098009Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4420336Z copying build\lib.win-amd64-cpython-39\torch\lib\libittnotify.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4430044Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4479675Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.4836343Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5206713Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-09-07T06:45:44.5210652Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-09-07T06:45:44.5216076Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-09-07T06:45:44.5221619Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-09-07T06:45:44.5227286Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-09-07T06:45:44.5232905Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-09-07T06:45:44.5236131Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-09-07T06:45:44.5241398Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5282734Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5290025Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5295356Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5300585Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5380162Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5386101Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5391408Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5402484Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.5408443Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.7685168Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:44.7947758Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:45.0095187Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:45.0130170Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:45.0135964Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:45.0295853Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:45.0305312Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:45.0337624Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-09-07T06:45:45.0343288Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:45.0351329Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-09-07T06:45:45.0354604Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-09-07T06:45:45.0362950Z creating build\bdist.win-amd64\wheel\torch\masked 2025-09-07T06:45:45.0366148Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-09-07T06:45:45.0369964Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0375904Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0381989Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0388222Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0394426Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0411340Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0416993Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0423685Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-09-07T06:45:45.0429097Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-09-07T06:45:45.0435921Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-09-07T06:45:45.0442735Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-09-07T06:45:45.0448755Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-09-07T06:45:45.0452064Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-09-07T06:45:45.0458850Z creating build\bdist.win-amd64\wheel\torch\mps 2025-09-07T06:45:45.0463997Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-09-07T06:45:45.0469545Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-09-07T06:45:45.0477587Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-09-07T06:45:45.0483238Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-09-07T06:45:45.0486391Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-09-07T06:45:45.0491592Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-09-07T06:45:45.0497263Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-09-07T06:45:45.0503120Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-09-07T06:45:45.0506344Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-09-07T06:45:45.0511877Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-09-07T06:45:45.0523791Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-09-07T06:45:45.0530646Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-09-07T06:45:45.0536013Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-09-07T06:45:45.0782269Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-09-07T06:45:45.0788608Z creating build\bdist.win-amd64\wheel\torch\nested 2025-09-07T06:45:45.0792262Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-09-07T06:45:45.0795781Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-09-07T06:45:45.0802959Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-09-07T06:45:45.0810700Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-09-07T06:45:45.0818320Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-09-07T06:45:45.1060497Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-09-07T06:45:45.1066929Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-09-07T06:45:45.1076228Z creating build\bdist.win-amd64\wheel\torch\nn 2025-09-07T06:45:45.1081591Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-09-07T06:45:45.1084872Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-09-07T06:45:45.1091720Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-09-07T06:45:45.1094988Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-09-07T06:45:45.1100520Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-09-07T06:45:45.1105698Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-09-07T06:45:45.1112096Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-09-07T06:45:45.1246385Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-09-07T06:45:45.1253009Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-09-07T06:45:45.1256714Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-09-07T06:45:45.1262486Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-09-07T06:45:45.1268421Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.1274651Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.1280609Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.6491991Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.6498910Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.6505264Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.6512671Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-09-07T06:45:45.6516947Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-09-07T06:45:45.6520595Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-09-07T06:45:45.6526594Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-09-07T06:45:45.6532450Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-09-07T06:45:45.6536014Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:45.6539967Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\conv_fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:45.6546402Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\linear_fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:45.6552140Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:45.6557778Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat\modules 2025-09-07T06:45:45.6702340Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-09-07T06:45:45.6707684Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-09-07T06:45:45.6711012Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:45.6714215Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:45.6717595Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:45.6723053Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic\modules 2025-09-07T06:45:45.6727906Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\dynamic 2025-09-07T06:45:45.6732884Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:45.6736458Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:45.6741467Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:45.6747882Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:45.6753483Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized\modules 2025-09-07T06:45:45.6758574Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-09-07T06:45:45.6764163Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-09-07T06:45:45.6771093Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-09-07T06:45:45.6774220Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6780879Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6786540Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6792744Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6928026Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6935085Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6942579Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6948721Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6955223Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6961136Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6967102Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6973738Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6980202Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6986147Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.6993326Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7000838Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7006953Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7013969Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7019711Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7026610Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7033729Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7040809Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7047784Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7054070Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.7060194Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.8587932Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-09-07T06:45:45.8594701Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-09-07T06:45:45.8598146Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8604648Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8610724Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8617303Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8726956Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8733256Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8738579Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8744198Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-09-07T06:45:45.8749599Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.8755372Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:45.8761746Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-09-07T06:45:45.8765448Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-09-07T06:45:45.8770794Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-09-07T06:45:45.8774245Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic\modules 2025-09-07T06:45:45.8779612Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic\modules 2025-09-07T06:45:45.8784421Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-09-07T06:45:45.8789466Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-09-07T06:45:45.8792935Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-09-07T06:45:45.8798936Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-09-07T06:45:45.8805297Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-09-07T06:45:45.8810284Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-09-07T06:45:45.8815078Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-09-07T06:45:45.8820321Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-09-07T06:45:45.8823523Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-09-07T06:45:45.8826830Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-09-07T06:45:45.8831946Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-09-07T06:45:45.8837049Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-09-07T06:45:45.8842677Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-09-07T06:45:45.8849342Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-09-07T06:45:45.8852525Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-09-07T06:45:45.8856220Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:45.8859109Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:45.8864349Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:45.8869566Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:45.8874924Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic\modules 2025-09-07T06:45:45.8880699Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-09-07T06:45:45.8885896Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-09-07T06:45:45.8891265Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-09-07T06:45:45.8894564Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.8899756Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.8905310Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.8911466Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.8968380Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.9091664Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.9098353Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.9104907Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.9113277Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.9121308Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.9127423Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-09-07T06:45:45.9134310Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-09-07T06:45:46.4251031Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-09-07T06:45:46.4254207Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-09-07T06:45:46.4259691Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-09-07T06:45:46.4264889Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-09-07T06:45:46.4270112Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-09-07T06:45:46.4275738Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-09-07T06:45:46.4281062Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference\modules 2025-09-07T06:45:46.4286413Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-09-07T06:45:46.4292028Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-09-07T06:45:46.4297861Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-09-07T06:45:46.4301341Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4306937Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4312445Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4317846Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4322939Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4443975Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4449882Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4455913Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4462169Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4473192Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4479308Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4485756Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4491882Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4498668Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4502969Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4509379Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\conv_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4515625Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4654092Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4662311Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4668964Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4675253Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4681380Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4687544Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4692953Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils\_expanded_weights 2025-09-07T06:45:46.4698790Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4704445Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4710280Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-09-07T06:45:46.4716519Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:46.4721902Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-09-07T06:45:46.4728189Z creating build\bdist.win-amd64\wheel\torch\numa 2025-09-07T06:45:46.4731464Z copying build\lib.win-amd64-cpython-39\torch\numa\binding.py -> build\bdist.win-amd64\wheel\.\torch\numa 2025-09-07T06:45:46.4737724Z copying build\lib.win-amd64-cpython-39\torch\numa\__init__.py -> build\bdist.win-amd64\wheel\.\torch\numa 2025-09-07T06:45:46.4744822Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-09-07T06:45:46.4747905Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4753367Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4759090Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-09-07T06:45:46.4762205Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_dtype_mappings.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-09-07T06:45:46.4768000Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-09-07T06:45:46.4773455Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-09-07T06:45:46.4778652Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-09-07T06:45:46.4784647Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4790210Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4882139Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4887240Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4892469Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4897730Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4903364Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4908748Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4914434Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4919900Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4925065Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4930205Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4935527Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4941053Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4947076Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4952596Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:46.4957907Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:47.0106027Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:47.0111686Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:47.0118467Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-09-07T06:45:47.0122791Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0126475Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0132700Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0139539Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0146343Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0395017Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0400322Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0407313Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0412660Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0418267Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0423772Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0428807Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0433796Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0439103Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0445161Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0450581Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0456399Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0461770Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0467276Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0472959Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0478182Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0484130Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:47.0487671Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:47.0491532Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:47.0496472Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:47.0501846Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:47.0507060Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:47.0512179Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:47.0517373Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-09-07T06:45:47.0523184Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:47.0528948Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:47.0534354Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib 2025-09-07T06:45:47.0678603Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_type_casting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.0685755Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.6161438Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-09-07T06:45:47.6166242Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-09-07T06:45:47.6170039Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-09-07T06:45:47.6173196Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\type_promotion.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-09-07T06:45:47.6179993Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-09-07T06:45:47.6185013Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-09-07T06:45:47.6190266Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-09-07T06:45:47.6195745Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-09-07T06:45:47.6200845Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6204184Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6209595Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6215470Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6682404Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6688777Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6694962Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6701549Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6708030Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6714724Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6720466Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6726155Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6738060Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6739392Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6744148Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6749325Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6754911Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6760627Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6766266Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.6774463Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.7933122Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.7939376Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.7944932Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.7950326Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.7956050Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\torchscript_exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\torchscript_exporter 2025-09-07T06:45:47.7960282Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-09-07T06:45:47.7977397Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-09-07T06:45:47.7982395Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-09-07T06:45:47.7988995Z creating build\bdist.win-amd64\wheel\torch\optim 2025-09-07T06:45:47.7992508Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.7998116Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8003688Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8010163Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8016672Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8024160Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8032585Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8053886Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8063015Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8069427Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8076300Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8082546Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8088729Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8094832Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8101083Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8107028Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8113386Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8119765Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8132641Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-09-07T06:45:47.8133491Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-09-07T06:45:47.8136576Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-09-07T06:45:47.8142324Z copying build\lib.win-amd64-cpython-39\torch\optim\_muon.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8147925Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-09-07T06:45:47.8153411Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:47.8172326Z creating build\bdist.win-amd64\wheel\torch\package 2025-09-07T06:45:47.8175668Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-09-07T06:45:47.8179426Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\find_first_use_of_broken_modules.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-09-07T06:45:47.8185435Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-09-07T06:45:47.8191401Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-09-07T06:45:47.8208374Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-09-07T06:45:47.8213888Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8219235Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8224664Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8241402Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8246671Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8252978Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8258753Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8263989Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8269924Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8275167Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8280367Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8285940Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8291256Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8296512Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8301723Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-09-07T06:45:47.8307002Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-09-07T06:45:47.8310075Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-09-07T06:45:47.8315177Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-09-07T06:45:47.8321130Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-09-07T06:45:47.8326140Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-09-07T06:45:47.8332122Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-09-07T06:45:47.8349511Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-09-07T06:45:47.8354697Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-09-07T06:45:47.8360205Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:47.8364909Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-09-07T06:45:47.8368162Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:47.8373576Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:47.8378790Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:47.8421136Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-09-07T06:45:47.8424346Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:47.8453846Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:47.8458952Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:47.8464822Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:47.8622696Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0062159Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0067474Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0072641Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0078328Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0083501Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0089745Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0095121Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-09-07T06:45:48.0100224Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0105939Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0111342Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0116679Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0122004Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0129204Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0135440Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0141202Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0146835Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0157667Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0163542Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0169555Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0175724Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-09-07T06:45:48.0182199Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.0188316Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.0194018Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.0199966Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.0206583Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.0214668Z creating build\bdist.win-amd64\wheel\torch\share 2025-09-07T06:45:48.0218170Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-09-07T06:45:48.0222039Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-09-07T06:45:48.0225919Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-09-07T06:45:48.0233846Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0237318Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0245190Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0253344Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0271495Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0278140Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0284370Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0290597Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-09-07T06:45:48.0296175Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-09-07T06:45:48.0299710Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-09-07T06:45:48.0305595Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-09-07T06:45:48.0311200Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:48.0325727Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:48.0331641Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:48.0335166Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:48.0340411Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:48.0345914Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:48.0362286Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-09-07T06:45:48.0367802Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:48.0374328Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-09-07T06:45:48.0391041Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0394437Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\cuda.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0399839Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\gflags.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0405049Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\glog.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0410331Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0426724Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\mkl.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0432300Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0437409Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\protobuf.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0442659Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\utils.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0448264Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public\xpu.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\public 2025-09-07T06:45:48.0453803Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-09-07T06:45:48.0456967Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-09-07T06:45:48.0462533Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-09-07T06:45:48.0467768Z creating build\bdist.win-amd64\wheel\torch\signal 2025-09-07T06:45:48.0470926Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-09-07T06:45:48.0473980Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-09-07T06:45:48.0479624Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-09-07T06:45:48.0484551Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-09-07T06:45:48.0489648Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-09-07T06:45:48.0492885Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-09-07T06:45:48.0498807Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-09-07T06:45:48.0504089Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-09-07T06:45:48.0523565Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-09-07T06:45:48.0529804Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-09-07T06:45:48.0539988Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-09-07T06:45:48.0546872Z creating build\bdist.win-amd64\wheel\torch\special 2025-09-07T06:45:48.0561409Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-09-07T06:45:48.0567770Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.0577390Z creating build\bdist.win-amd64\wheel\torch\test 2025-09-07T06:45:48.0580687Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0591272Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0602028Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0612260Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0634344Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0646867Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0657400Z copying build\lib.win-amd64-cpython-39\torch\test\c10_AllocatorConfig_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0667484Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0676745Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0685997Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0695454Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0705652Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0714800Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0725008Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0735333Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0746825Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0760369Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0770955Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0790700Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0799777Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0809012Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0818436Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0827453Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0836143Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDATest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0845314Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0867431Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0875948Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0884970Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0894599Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Enumerate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0903492Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0912067Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0921293Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0929435Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0949387Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0957802Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0966257Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0975307Z copying build\lib.win-amd64-cpython-39\torch\test\c10_IntrusiveList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0983971Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.0991907Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1006869Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1015166Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1043987Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1053721Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1063119Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1072704Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1081878Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1093058Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1102978Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1112138Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1121988Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Semaphore_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1140768Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1150737Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1165516Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1175356Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1183829Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1193859Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1202654Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1212682Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1232203Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1244758Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1257402Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1268279Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1278209Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1287639Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1297090Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1310022Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1319587Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1351404Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1360298Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1372035Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocatorTraceTracker_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1380407Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1389401Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_apply_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1398485Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_atomic_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1407930Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_caching_host_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1417221Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1427015Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1435673Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cub_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1445021Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cudnn_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1453798Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1462325Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_distributions_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1472714Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1481875Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_exchange_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1490022Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1499019Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1528460Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_integer_divider_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1536749Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1545697Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1555976Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1564631Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_stream_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1574219Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_vectorized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1583091Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1593331Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1601969Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1610832Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1620034Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1629276Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1638732Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1657667Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1662305Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1672015Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1685062Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1717003Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1730103Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1742135Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1752259Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1762012Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1772671Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1785070Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1796574Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1806132Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1816250Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1825275Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1834370Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1843360Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1852784Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1864700Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1878129Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1890908Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1900246Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1929547Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1938985Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1950175Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1960499Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1970007Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1980021Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.1990673Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2000679Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2010953Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2021235Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2032313Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2042675Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2052334Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2060880Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2071050Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2080121Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2100793Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2109921Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2123013Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-09-07T06:45:48.2132908Z creating build\bdist.win-amd64\wheel\torch\testing 2025-09-07T06:45:48.2136097Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-09-07T06:45:48.2142526Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-09-07T06:45:48.2149556Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-09-07T06:45:48.2153022Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2159678Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2165425Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2179850Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-09-07T06:45:48.2183077Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-09-07T06:45:48.2195111Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2200889Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2207634Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2214128Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2219696Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2225096Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2231477Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2237006Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2254044Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2261163Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2272082Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mps.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2281061Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2292100Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2302495Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2310950Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2329339Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2336061Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2341528Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2350954Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2356825Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2363370Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2369252Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-09-07T06:45:48.2372498Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-09-07T06:45:48.2377485Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-09-07T06:45:48.2383136Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-09-07T06:45:48.2388663Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-09-07T06:45:48.2392401Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2397896Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\common_state_dict.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2403426Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2418938Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2462807Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2468232Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2473579Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\multi_threaded_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2479449Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-09-07T06:45:48.2482733Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-09-07T06:45:48.2486077Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn\api 2025-09-07T06:45:48.2492081Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn\api 2025-09-07T06:45:48.2496487Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\nn 2025-09-07T06:45:48.2500989Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2504332Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2511533Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2517344Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:48.2520781Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:48.2526314Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:48.2531721Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\examples 2025-09-07T06:45:48.2536415Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2546357Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2551808Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:48.2555169Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:48.2561215Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:48.2567849Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:48.2573875Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc\jit 2025-09-07T06:45:48.2578911Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2584961Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\rpc_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2593683Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2599556Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\rpc 2025-09-07T06:45:48.2604539Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2610525Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-09-07T06:45:48.2613998Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:48.2617839Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:48.2628422Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:48.2634113Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-09-07T06:45:48.2639801Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\test_common.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard 2025-09-07T06:45:48.2645557Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_shard 2025-09-07T06:45:48.2651066Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-09-07T06:45:48.2654595Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_tensor 2025-09-07T06:45:48.2661138Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed\_tensor 2025-09-07T06:45:48.2666346Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-09-07T06:45:48.2671351Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2677506Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2683766Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2689893Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2705855Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2711719Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-09-07T06:45:48.2715347Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-09-07T06:45:48.2727134Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-09-07T06:45:48.2732004Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2738817Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2744358Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2751457Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2758064Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2769322Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2775013Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2792558Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-09-07T06:45:48.2795952Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-09-07T06:45:48.2803526Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2806892Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\fft.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2813018Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\linalg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2819300Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\nested.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2826202Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\signal.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2831416Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\sparse.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2837281Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\special.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2853976Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\_masked.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2859811Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo\definitions 2025-09-07T06:45:48.2864832Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-09-07T06:45:48.2870187Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-09-07T06:45:48.2875531Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-09-07T06:45:48.2880795Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-09-07T06:45:48.2884091Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-09-07T06:45:48.2893737Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-09-07T06:45:48.2899097Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-09-07T06:45:48.2904310Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-09-07T06:45:48.2919875Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-09-07T06:45:48.2925151Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-09-07T06:45:48.2930271Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2935534Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2941871Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2947970Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-09-07T06:45:48.2951300Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\future_div.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-09-07T06:45:48.2956438Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\no_future_div.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-09-07T06:45:48.2961493Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\test_module 2025-09-07T06:45:48.2965799Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2971793Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2977816Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2983339Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-09-07T06:45:48.2987886Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-09-07T06:45:48.3003240Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-09-07T06:45:48.3008606Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.3013971Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.3019943Z creating build\bdist.win-amd64\wheel\torch\utils 2025-09-07T06:45:48.3023133Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-09-07T06:45:48.3026376Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-09-07T06:45:48.3031535Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3037431Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-09-07T06:45:48.3040748Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-09-07T06:45:48.3043850Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-09-07T06:45:48.3049049Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-09-07T06:45:48.3054243Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-09-07T06:45:48.3059505Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-09-07T06:45:48.3065519Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-09-07T06:45:48.3082029Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-09-07T06:45:48.3085783Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:48.3088936Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\binary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:48.3094272Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:48.3099506Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:48.3104769Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\spectral.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:48.3120280Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\unary.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:48.3125562Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\op_fuzzers 2025-09-07T06:45:48.3130104Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-09-07T06:45:48.3133250Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3138862Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3144098Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3149404Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3154591Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3160300Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3176676Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3182666Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3189393Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:48.3193328Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:48.3199266Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:48.3205502Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:48.3221633Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:48.3228103Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:48.3238450Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils\valgrind_wrapper 2025-09-07T06:45:48.3243471Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3249271Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-09-07T06:45:48.3253654Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-09-07T06:45:48.3261279Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-09-07T06:45:48.3276773Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-09-07T06:45:48.3283201Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-09-07T06:45:48.3291345Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3298439Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3305738Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3312533Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3317683Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3325587Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-09-07T06:45:48.3329253Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3334365Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3341688Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-09-07T06:45:48.3345882Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:48.3349451Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\dataframes.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:48.3354887Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:48.3360148Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\datapipes.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:48.3375557Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\structures.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:48.3380852Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\dataframe 2025-09-07T06:45:48.3386308Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-09-07T06:45:48.3391921Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-09-07T06:45:48.3397736Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-09-07T06:45:48.3403109Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3416408Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\callable.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3421988Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\combinatorics.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3427781Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\combining.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3433628Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\filelister.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3448321Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\fileopener.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3453511Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\grouping.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3458843Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\routeddecoder.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3463999Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\selecting.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3469179Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\sharding.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3474229Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\streamreader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3479658Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3484824Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\iter 2025-09-07T06:45:48.3490223Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-09-07T06:45:48.3493469Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\callable.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-09-07T06:45:48.3498684Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\combinatorics.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-09-07T06:45:48.3503954Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\combining.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-09-07T06:45:48.3509287Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\grouping.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-09-07T06:45:48.3514319Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-09-07T06:45:48.3529176Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\map 2025-09-07T06:45:48.3534362Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-09-07T06:45:48.3537580Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-09-07T06:45:48.3543095Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\decoder.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-09-07T06:45:48.3548353Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\snapshot.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-09-07T06:45:48.3553681Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes\utils 2025-09-07T06:45:48.3557811Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-09-07T06:45:48.3563142Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-09-07T06:45:48.3568967Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-09-07T06:45:48.3575242Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-09-07T06:45:48.3580773Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3596666Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3602563Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3608277Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3614107Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3620013Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-09-07T06:45:48.3623764Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-09-07T06:45:48.3629712Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-09-07T06:45:48.3635641Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-09-07T06:45:48.3641649Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-09-07T06:45:48.3647651Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-09-07T06:45:48.3663658Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-09-07T06:45:48.3669756Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-09-07T06:45:48.3675571Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3682139Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3687900Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3693809Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3700459Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-09-07T06:45:48.3704262Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-09-07T06:45:48.3710263Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-09-07T06:45:48.3720076Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-09-07T06:45:48.3726540Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-09-07T06:45:48.3742677Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-09-07T06:45:48.3747711Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3753208Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-09-07T06:45:48.3756698Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-09-07T06:45:48.3762021Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-09-07T06:45:48.3769363Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3777198Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3785443Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-09-07T06:45:48.3790218Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-09-07T06:45:48.3797318Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-09-07T06:45:48.3803187Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-09-07T06:45:48.3809305Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-09-07T06:45:48.3815029Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-09-07T06:45:48.3831179Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-09-07T06:45:48.3836066Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3842351Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3857855Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-09-07T06:45:48.3861049Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-09-07T06:45:48.3866142Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-09-07T06:45:48.3870994Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3877264Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-09-07T06:45:48.3880716Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3886667Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3892473Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3897652Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3912613Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3918312Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3923515Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3928841Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3933878Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-09-07T06:45:48.3938887Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3944663Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-09-07T06:45:48.3947674Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-09-07T06:45:48.3953418Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-09-07T06:45:48.3957668Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3963437Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3968711Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3973955Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3983901Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.3989349Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4004484Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4009928Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4015277Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4020514Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4027074Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4032360Z copying build\lib.win-amd64-cpython-39\torch\utils\_dtype_abbrs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4041136Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4046342Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4051775Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4067362Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4073210Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4079258Z copying build\lib.win-amd64-cpython-39\torch\utils\_helion.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4084697Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4090667Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4096225Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4102121Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4112541Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4152981Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4159064Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-09-07T06:45:48.4163030Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-09-07T06:45:48.4169620Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-09-07T06:45:48.4174703Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-09-07T06:45:48.4178543Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4184989Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4190658Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4196406Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4202822Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4213726Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4219722Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4225617Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4231504Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4238097Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-09-07T06:45:48.4244051Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4260224Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4266785Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4275600Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4281964Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4290635Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-09-07T06:45:48.4297169Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.4303466Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-09-07T06:45:48.4307023Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-09-07T06:45:48.4313070Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-09-07T06:45:48.4319222Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-09-07T06:45:48.4325178Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-09-07T06:45:48.4330329Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-09-07T06:45:48.4335618Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-09-07T06:45:48.4517092Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:48.4522944Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-09-07T06:45:48.4526079Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-09-07T06:45:48.4533007Z creating build\bdist.win-amd64\wheel\torch\_C 2025-09-07T06:45:48.4536291Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4541727Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4547438Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4552185Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4557183Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4696911Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4712813Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4714245Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4718951Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4725335Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-09-07T06:45:48.4728939Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-09-07T06:45:48.4734662Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-09-07T06:45:48.4740498Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-09-07T06:45:48.4746457Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-09-07T06:45:48.4752414Z creating build\bdist.win-amd64\wheel\torch\_C\_export 2025-09-07T06:45:48.4756325Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\pt2_archive_constants.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-09-07T06:45:48.4762211Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-09-07T06:45:48.4767483Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4775885Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4784262Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4791850Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4797576Z copying build\lib.win-amd64-cpython-39\torch\_C\_jit_tree_views.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4803714Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4809756Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4815630Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4820811Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4826913Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4832374Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4837437Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:48.4843542Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:49.0025593Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:49.0030906Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-09-07T06:45:49.0040489Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:49.0045986Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:49.0051349Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:49.0057321Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-09-07T06:45:49.0060975Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-09-07T06:45:49.0066366Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-09-07T06:45:49.0072335Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-09-07T06:45:49.0076519Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:49.4497109Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-09-07T06:45:49.4500166Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-09-07T06:45:49.4506081Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-09-07T06:45:49.4509354Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-09-07T06:45:49.4517054Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-09-07T06:45:49.4523207Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-09-07T06:45:49.4534916Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-09-07T06:45:49.4541365Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-09-07T06:45:49.4545277Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-09-07T06:45:49.4551528Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-09-07T06:45:49.4557070Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-09-07T06:45:49.4560225Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\aot_compile.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4566282Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-09-07T06:45:49.4570006Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4576005Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4581910Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4588291Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4599154Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4605206Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4610715Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4616465Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4622000Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4627648Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4633992Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-09-07T06:45:49.4638977Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4645046Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4659185Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4665454Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4671237Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4677587Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4689228Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4696447Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4701865Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4708116Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4715112Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4720564Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4726178Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4732424Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4738550Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4744601Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4750078Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4756690Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4762576Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4768406Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4778948Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\functional_export.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4784926Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4790403Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_registry.json -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4797598Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4803909Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4809781Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4815193Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4822730Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4828259Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4834056Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4839865Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4850532Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4858123Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\package.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4864094Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4870872Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-09-07T06:45:49.4874385Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4879621Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4885427Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4890781Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4900549Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4910024Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4915192Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4920336Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4925635Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\struct.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4930522Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4935616Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4940754Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\_collections.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4946053Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-09-07T06:45:49.4951435Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\precompile_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4956984Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4962230Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4968101Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-09-07T06:45:49.4971408Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-09-07T06:45:49.4977731Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-09-07T06:45:49.4983427Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-09-07T06:45:49.4989391Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-09-07T06:45:49.4993756Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.4999561Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5006434Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5012480Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5024675Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5030341Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5035964Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5041623Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_dont_skip_tracing_functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5047038Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5052421Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5060300Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5065916Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5073951Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-09-07T06:45:49.5077156Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5083336Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5091254Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5098003Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5103326Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5114369Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5120549Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5126432Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5136016Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5143379Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5149213Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5154665Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5160629Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5172148Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5178454Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5184327Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5189719Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5195101Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5201362Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5208870Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5214710Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5221680Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-09-07T06:45:49.5227324Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5238055Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-09-07T06:45:49.5243665Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:49.5249239Z creating build\bdist.win-amd64\wheel\torch\_export 2025-09-07T06:45:49.5252455Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5259390Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-09-07T06:45:49.5262512Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-09-07T06:45:49.5268995Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-09-07T06:45:49.5272316Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\assume_constant_result.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5277431Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5282789Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5292691Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5298266Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5303661Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5309713Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_closed_over_variable.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5314869Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5320079Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5325547Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\constrain_as_size_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5330882Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\constrain_as_value_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5336298Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5341356Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5346434Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_assert.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5351890Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_constructor.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5357104Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_if_guard.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5362724Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_map.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5373078Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_round.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5384858Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_slicing.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5390347Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dynamic_shape_view.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5395916Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\fn_with_kwargs.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5402311Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5407492Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5412764Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\model_attr_mutation.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5418438Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5423777Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\null_context_manager.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5435067Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5440975Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5445478Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5451629Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5456811Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_for_loop.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5461750Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5466914Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5476235Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\type_reflection_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5481987Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5491747Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\user_input_mutation.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5496818Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-09-07T06:45:49.5502247Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-09-07T06:45:49.5507355Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-09-07T06:45:49.5512589Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-09-07T06:45:49.5517446Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5522631Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5529161Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-09-07T06:45:49.5537376Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5542909Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5548224Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5558931Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5564121Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5569472Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5575319Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5581200Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_autocast_with_hop_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5586832Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5593034Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5598481Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5603851Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\replace_with_hop_pass_util.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5609214Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5614491Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-09-07T06:45:49.5619440Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5626239Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-09-07T06:45:49.5629535Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-09-07T06:45:49.5653691Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-09-07T06:45:49.5658723Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-09-07T06:45:49.5663331Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-09-07T06:45:49.5673213Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5674250Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5679316Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5684576Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5694782Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5700766Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5708202Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5714140Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-09-07T06:45:49.5718494Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5723767Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5730078Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5735834Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5741202Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-09-07T06:45:49.5747269Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-09-07T06:45:49.5750773Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5757197Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5763106Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5769194Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5778976Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5784874Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5794150Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5799655Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5805361Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5810812Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5817217Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5822770Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5828841Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5834937Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5842833Z copying build\lib.win-amd64-cpython-39\torch\_functorch\predispatch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5848721Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5854171Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5859389Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5865038Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5870858Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5881494Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.5887553Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:49.5891380Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:49.5896826Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:49.5902228Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:49.5911738Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:49.5917078Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-09-07T06:45:49.5922285Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5925621Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5932257Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5938558Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\descriptors.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5949154Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\frontend_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5954666Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5960388Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5965808Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_capture.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5971654Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_capture_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5977942Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\graph_compile.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5984452Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\input_output_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5990518Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.5995940Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.6002935Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.6009290Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.6014664Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.6020549Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.6026322Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-09-07T06:45:49.6031306Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-09-07T06:45:49.6036482Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:49.6043404Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-09-07T06:45:49.6046753Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\aoti_call_delegate.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6052943Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6058965Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6070347Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6075443Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6081111Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6086798Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\executorch_call_delegate.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6092312Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6099442Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6107244Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6113580Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6119807Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6126213Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6132201Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6142815Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\run_const_graph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6149188Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6155776Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6162788Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6168357Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6174402Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\triton_kernel_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6181544Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6188123Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6200169Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6206031Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6211963Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-09-07T06:45:49.6219609Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-09-07T06:45:49.6223455Z creating build\bdist.win-amd64\wheel\torch\_inductor\analysis 2025-09-07T06:45:49.6227513Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\device_info.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-09-07T06:45:49.6233709Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\profile_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-09-07T06:45:49.6240230Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-09-07T06:45:49.6245384Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6251379Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6262074Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6268481Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-09-07T06:45:49.6271863Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:49.6275419Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:49.6281056Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:49.6286913Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:49.6300330Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:49.6306533Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:49.6312592Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-09-07T06:45:49.6317587Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-09-07T06:45:49.6323664Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-09-07T06:45:49.6334509Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-09-07T06:45:49.6342862Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-09-07T06:45:49.6349786Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-09-07T06:45:49.6355096Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6361883Z copying build\lib.win-amd64-cpython-39\torch\_inductor\await_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6368087Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6373226Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6379835Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6388141Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-09-07T06:45:49.6391375Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6398089Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-09-07T06:45:49.6401460Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\aoti_runtime 2025-09-07T06:45:49.6407262Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6412985Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6425124Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6433790Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6439166Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6445063Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6451536Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6457269Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6463629Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6469305Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6475354Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6481260Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6489523Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6496146Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6504278Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6510417Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6516828Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6520998Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6526820Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6532487Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6538981Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6553094Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6559285Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:49.6562950Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-09-07T06:45:49.6566802Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:49.6570974Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:49.6584742Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:49.6586604Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda 2025-09-07T06:45:49.6590519Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-09-07T06:45:49.6594710Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot 2025-09-07T06:45:49.6600444Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-09-07T06:45:49.6604045Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-09-07T06:45:49.6609601Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy 2025-09-07T06:45:49.6615301Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports 2025-09-07T06:45:49.6620176Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:49.6626359Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:49.6638014Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-09-07T06:45:49.6642735Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6648802Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6655079Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6661666Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6667893Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6675032Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\serialization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6681517Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-09-07T06:45:49.6687124Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6698004Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:49.6701353Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\cutedsl_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:49.6708106Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\cutedsl_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:49.6714254Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\cutedsl_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:49.6724235Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\cutedsl_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:49.6730078Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cutedsl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cutedsl 2025-09-07T06:45:49.6735725Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6741730Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6748874Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6755250Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6761948Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6768113Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\mtia 2025-09-07T06:45:49.6772249Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\mtia 2025-09-07T06:45:49.6778271Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\mtia 2025-09-07T06:45:49.6782831Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6789713Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\python_wrapper_mtia.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6796018Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6799374Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_conv_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6805659Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6811459Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6817540Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6829900Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6836639Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6842760Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6848836Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6854854Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6861074Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6866954Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6872960Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6878380Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-09-07T06:45:49.6882704Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\segmented_tree.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6888844Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6899613Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6905532Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6910733Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6918871Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6924900Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6930360Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6935982Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6943264Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper_fxir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6949349Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-09-07T06:45:49.6952659Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-09-07T06:45:49.6958217Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-09-07T06:45:49.6962691Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-09-07T06:45:49.6967071Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6973467Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms_debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6979739Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6985237Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6991277Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.6997230Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7004173Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7009715Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7015618Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7021473Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-09-07T06:45:49.7029853Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-09-07T06:45:49.7035296Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\tracked_process_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-09-07T06:45:49.7040452Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-09-07T06:45:49.7045908Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-09-07T06:45:49.7054642Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-09-07T06:45:49.7059762Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7066532Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7071933Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7078367Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7084470Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7092426Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7097744Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7103258Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7109311Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7115208Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7121108Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7131604Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7136689Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7141922Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7147829Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7154154Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7161335Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-09-07T06:45:49.7164581Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7170844Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7177260Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\bucketing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7183825Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7195114Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7201025Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7206941Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7213128Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7219121Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7225010Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7231599Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\group_batch_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7238425Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7244959Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7251402Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7272509Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7279473Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7285561Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7292031Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7299100Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7305502Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7313550Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7324531Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7332158Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7335711Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7343263Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7351226Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7363527Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7369545Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7375462Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7381767Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7387996Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7393925Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7399896Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7405793Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7412955Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7418950Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7425141Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7430695Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7436343Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7443406Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7449697Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7460513Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7470968Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7476493Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7481952Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7487497Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7493910Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7499388Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7505058Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7514976Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7520629Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-09-07T06:45:49.7525009Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7532107Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-09-07T06:45:49.7536518Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7541779Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7549035Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7554260Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7559884Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7565124Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7578463Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7584342Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-09-07T06:45:49.7587564Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-09-07T06:45:49.7592896Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-09-07T06:45:49.7598914Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel\flex 2025-09-07T06:45:49.7602009Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-09-07T06:45:49.7607297Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-09-07T06:45:49.7613030Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\flex_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-09-07T06:45:49.7618439Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-09-07T06:45:49.7623820Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:49.7632762Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\common.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:49.7638556Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:49.7643815Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:49.7658152Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:49.7663705Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\templates\utilities.py.jinja -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex\templates 2025-09-07T06:45:49.7668835Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel\flex 2025-09-07T06:45:49.7673606Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-09-07T06:45:49.7683139Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-09-07T06:45:49.7688458Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-09-07T06:45:49.7698194Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-09-07T06:45:49.7703585Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-09-07T06:45:49.7708767Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel_inputs.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7714145Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel_template_choice.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7719784Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7725677Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7733360Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7739115Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7744433Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7750510Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7757618Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7763033Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7777268Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7786271Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7792378Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-09-07T06:45:49.7795762Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-09-07T06:45:49.7800749Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-09-07T06:45:49.7806168Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-09-07T06:45:49.7811159Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7817886Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7823484Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7829104Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_gemm_autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7838921Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-09-07T06:45:49.7842100Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7847990Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7853865Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7859360Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7870390Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7875886Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7881110Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7886281Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7891496Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7897265Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7902550Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7907855Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7913721Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7921070Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-09-07T06:45:49.7925464Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7933084Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7938303Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7950399Z copying build\lib.win-amd64-cpython-39\torch\_inductor\shape_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7956537Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7965741Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7975481Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.7983866Z creating build\bdist.win-amd64\wheel\torch\_inductor\template_heuristics 2025-09-07T06:45:49.7988924Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\aten.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.7995014Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\base.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8000773Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\contiguous_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8008408Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\decompose_k.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8113670Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8118750Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\registry.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8123953Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8130408Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\triton_addmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8135763Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\template_heuristics 2025-09-07T06:45:49.8140618Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.8152898Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.8158225Z copying build\lib.win-amd64-cpython-39\torch\_inductor\tiling_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.8164380Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:49.8171090Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:50.3323662Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:50.3329956Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:50.3336378Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:50.3495469Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-09-07T06:45:50.3503829Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.3514743Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-09-07T06:45:50.8804699Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8811106Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8816696Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8822388Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8828402Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8918523Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8924148Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8929489Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8935383Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8941785Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8946900Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-09-07T06:45:50.8953579Z creating build\bdist.win-amd64\wheel\torch\_library 2025-09-07T06:45:50.8956842Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.8962093Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.8968688Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.8979904Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.8998057Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.9003913Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.9014477Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.9018711Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.9024304Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.9029817Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-09-07T06:45:50.9034948Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9040337Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9046883Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-09-07T06:45:50.9050060Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-09-07T06:45:50.9055758Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-09-07T06:45:50.9061581Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-09-07T06:45:50.9068045Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-09-07T06:45:50.9084665Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-09-07T06:45:50.9089693Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9095067Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9102930Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9108755Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-09-07T06:45:50.9111842Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9117921Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9122534Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9128033Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-09-07T06:45:50.9131099Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-09-07T06:45:50.9137423Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-09-07T06:45:50.9142337Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9147609Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9167599Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9173060Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9178816Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9184936Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9191374Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9197574Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9204018Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9210107Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9215897Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9221687Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9227823Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9233974Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-09-07T06:45:50.9239555Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9247103Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-09-07T06:45:50.9250629Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-09-07T06:45:50.9256787Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-09-07T06:45:50.9262562Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-09-07T06:45:50.9268299Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-09-07T06:45:50.9274132Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-09-07T06:45:50.9293073Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-09-07T06:45:50.9296704Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-09-07T06:45:50.9303048Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-09-07T06:45:50.9310232Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9316552Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-09-07T06:45:50.9319494Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-09-07T06:45:50.9326302Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-09-07T06:45:50.9329828Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-09-07T06:45:50.9335870Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-09-07T06:45:50.9339440Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-09-07T06:45:50.9342800Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-09-07T06:45:50.9349202Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-09-07T06:45:50.9355748Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-09-07T06:45:50.9359040Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-09-07T06:45:50.9364542Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-09-07T06:45:50.9370045Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-09-07T06:45:50.9390287Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9419442Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9427970Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9433796Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9439813Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-09-07T06:45:50.9444143Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-09-07T06:45:50.9450934Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-09-07T06:45:50.9456271Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-09-07T06:45:50.9472604Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-09-07T06:45:50.9476030Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9482434Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9489300Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9506315Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9513096Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9519650Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9525075Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9530838Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-09-07T06:45:50.9535822Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9542207Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9549712Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9556063Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9560684Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9571639Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9589291Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9595466Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-09-07T06:45:50.9598898Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-09-07T06:45:50.9602668Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-09-07T06:45:50.9609994Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-09-07T06:45:50.9615793Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-09-07T06:45:50.9621367Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-09-07T06:45:50.9627189Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9632804Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9651759Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9657866Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9664335Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9670099Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9676171Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-09-07T06:45:50.9696096Z creating build\bdist.win-amd64\wheel\torchgen 2025-09-07T06:45:50.9699766Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-09-07T06:45:50.9702823Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-09-07T06:45:50.9708853Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-09-07T06:45:50.9713919Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-09-07T06:45:50.9717448Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9724998Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9731229Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9737117Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9742855Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9760022Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9764826Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9771225Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9814481Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9820291Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9827093Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-09-07T06:45:50.9830283Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-09-07T06:45:50.9836964Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-09-07T06:45:50.9842232Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-09-07T06:45:50.9847707Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-09-07T06:45:50.9852856Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9858183Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9863616Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-09-07T06:45:50.9868586Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9874002Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9880319Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-09-07T06:45:50.9884037Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-09-07T06:45:50.9890593Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-09-07T06:45:50.9896364Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-09-07T06:45:50.9902102Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-09-07T06:45:50.9914523Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-09-07T06:45:50.9920918Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-09-07T06:45:50.9926135Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9943621Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9949436Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9955907Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9961743Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9968220Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9974210Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9979402Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9984974Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9991907Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:50.9998502Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-09-07T06:45:51.0001855Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-09-07T06:45:51.0007652Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-09-07T06:45:51.0012786Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-09-07T06:45:51.0028240Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-09-07T06:45:51.0031389Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-09-07T06:45:51.0034448Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-09-07T06:45:51.0037684Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-09-07T06:45:51.0049215Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-09-07T06:45:51.0055349Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0058656Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0064119Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0069817Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0086257Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0091488Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0097261Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0102681Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0108117Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0113211Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0118252Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0123154Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0128655Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0134195Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0139718Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0145346Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0150525Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0156140Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0161285Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0166767Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0183624Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0189497Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0194499Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0199500Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0205227Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0210304Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0216206Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0222023Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0228644Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0233877Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0249967Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0255391Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0260606Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0265682Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0271668Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0277101Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0282280Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0287295Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0292511Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0308730Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-09-07T06:45:51.0314734Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-09-07T06:45:51.0317943Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0322924Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0328130Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0333588Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0339016Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0357384Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0362625Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0368011Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0374182Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0380369Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0386589Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0392453Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0397990Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0404509Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0409864Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0416006Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0421840Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0425432Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0432128Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0439429Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0458428Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0466804Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0474461Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0482392Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0488619Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0494578Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0501389Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0507624Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0513237Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_return_types.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0519739Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_return_types.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0525466Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0530987Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0537333Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0542687Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0559300Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0565705Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0571354Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0577400Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0582772Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0588375Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-09-07T06:45:51.0593530Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-09-07T06:45:51.0598424Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-09-07T06:45:51.0601734Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-09-07T06:45:51.0606837Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-09-07T06:45:51.0612094Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-09-07T06:45:51.0617350Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-09-07T06:45:51.0620567Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-09-07T06:45:51.0631212Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-09-07T06:45:51.0637631Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-09-07T06:45:51.0654135Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-09-07T06:45:51.0658809Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:51.0665381Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:51.0671593Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-09-07T06:45:51.0684681Z running install_egg_info 2025-09-07T06:45:51.0790161Z running egg_info 2025-09-07T06:45:51.0881877Z creating torch.egg-info 2025-09-07T06:45:51.0885184Z writing torch.egg-info\PKG-INFO 2025-09-07T06:45:51.0924574Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-09-07T06:45:51.0929817Z writing entry points to torch.egg-info\entry_points.txt 2025-09-07T06:45:51.0949516Z writing requirements to torch.egg-info\requires.txt 2025-09-07T06:45:51.0953625Z writing top-level names to torch.egg-info\top_level.txt 2025-09-07T06:45:51.0957375Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-09-07T06:45:52.3518543Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-09-07T06:45:52.3524503Z reading manifest template 'MANIFEST.in' 2025-09-07T06:45:52.3552935Z warning: no files found matching 'BUILD' 2025-09-07T06:45:52.3556954Z warning: no files found matching '*.BUILD' 2025-09-07T06:45:52.3563989Z warning: no files found matching 'BUCK' 2025-09-07T06:45:52.3588968Z warning: no files found matching '[Mm]akefile.*' 2025-09-07T06:45:52.3598702Z warning: no files found matching '*.[Dd]ockerfile' 2025-09-07T06:45:52.3603134Z warning: no files found matching '[Dd]ockerfile.*' 2025-09-07T06:46:01.9505214Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-09-07T06:46:02.0851101Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-09-07T06:46:02.2177438Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-09-07T06:46:02.3522997Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-09-07T06:46:02.4850055Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-09-07T06:46:03.0348410Z no previously-included directories found matching '*\.git' 2025-09-07T06:46:03.2663915Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-09-07T06:46:03.4008414Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-09-07T06:46:03.4008912Z adding license file 'LICENSE' 2025-09-07T06:46:03.4009175Z adding license file 'NOTICE' 2025-09-07T06:46:09.0601432Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-09-07T06:46:09.1102834Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.9.0a0+git93fb23d-py3.9.egg-info 2025-09-07T06:46:09.1209414Z running install_scripts 2025-09-07T06:46:09.1231395Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\command\bdist_wheel.py:103: RuntimeWarning: Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect 2025-09-07T06:46:09.1232283Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-09-07T06:46:09.1313881Z creating build\bdist.win-amd64\wheel\torch-2.9.0a0+git93fb23d.dist-info\WHEEL 2025-09-07T06:46:09.1322698Z creating 'dist\torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-09-07T06:46:09.1558007Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-09-07T06:46:09.1724289Z adding 'functorch/__init__.py' 2025-09-07T06:46:09.1728119Z adding 'functorch/_src/__init__.py' 2025-09-07T06:46:09.1732217Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-09-07T06:46:09.1735921Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-09-07T06:46:09.1739430Z adding 'functorch/_src/make_functional/__init__.py' 2025-09-07T06:46:09.1743317Z adding 'functorch/_src/vmap/__init__.py' 2025-09-07T06:46:09.1746828Z adding 'functorch/compile/__init__.py' 2025-09-07T06:46:09.1751252Z adding 'functorch/dim/__init__.py' 2025-09-07T06:46:09.1754573Z adding 'functorch/dim/magic_trace.py' 2025-09-07T06:46:09.1758609Z adding 'functorch/dim/op_properties.py' 2025-09-07T06:46:09.1761782Z adding 'functorch/dim/tree_map.py' 2025-09-07T06:46:09.1764973Z adding 'functorch/dim/wrap_type.py' 2025-09-07T06:46:09.1768388Z adding 'functorch/einops/__init__.py' 2025-09-07T06:46:09.1774043Z adding 'functorch/einops/_parsing.py' 2025-09-07T06:46:09.1779474Z adding 'functorch/einops/rearrange.py' 2025-09-07T06:46:09.1783463Z adding 'functorch/experimental/__init__.py' 2025-09-07T06:46:09.1786161Z adding 'functorch/experimental/control_flow.py' 2025-09-07T06:46:09.1788814Z adding 'functorch/experimental/ops.py' 2025-09-07T06:46:09.1797845Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-09-07T06:46:09.1801124Z adding 'torch/_VF.py' 2025-09-07T06:46:09.2042548Z adding 'torch/_VF.pyi' 2025-09-07T06:46:09.2074320Z adding 'torch/__config__.py' 2025-09-07T06:46:09.2077962Z adding 'torch/__future__.py' 2025-09-07T06:46:09.2118075Z adding 'torch/__init__.py' 2025-09-07T06:46:09.2128534Z adding 'torch/_appdirs.py' 2025-09-07T06:46:09.2132710Z adding 'torch/_classes.py' 2025-09-07T06:46:09.2136238Z adding 'torch/_compile.py' 2025-09-07T06:46:09.2141943Z adding 'torch/_custom_ops.py' 2025-09-07T06:46:09.2145159Z adding 'torch/_environment.py' 2025-09-07T06:46:09.2160828Z adding 'torch/_guards.py' 2025-09-07T06:46:09.2184121Z adding 'torch/_jit_internal.py' 2025-09-07T06:46:09.2189361Z adding 'torch/_linalg_utils.py' 2025-09-07T06:46:09.2205228Z adding 'torch/_lobpcg.py' 2025-09-07T06:46:09.2211466Z adding 'torch/_lowrank.py' 2025-09-07T06:46:09.2288801Z adding 'torch/_meta_registrations.py' 2025-09-07T06:46:09.2298615Z adding 'torch/_namedtensor_internals.py' 2025-09-07T06:46:09.2320703Z adding 'torch/_ops.py' 2025-09-07T06:46:09.2326694Z adding 'torch/_python_dispatcher.py' 2025-09-07T06:46:09.2329990Z adding 'torch/_size_docs.py' 2025-09-07T06:46:09.2333980Z adding 'torch/_sources.py' 2025-09-07T06:46:09.2337302Z adding 'torch/_storage_docs.py' 2025-09-07T06:46:09.2340206Z adding 'torch/_streambase.py' 2025-09-07T06:46:09.2365215Z adding 'torch/_tensor.py' 2025-09-07T06:46:09.2410725Z adding 'torch/_tensor_docs.py' 2025-09-07T06:46:09.2424421Z adding 'torch/_tensor_str.py' 2025-09-07T06:46:09.2428365Z adding 'torch/_thread_safe_fork.py' 2025-09-07T06:46:09.2569045Z adding 'torch/_torch_docs.py' 2025-09-07T06:46:09.2596513Z adding 'torch/_utils.py' 2025-09-07T06:46:09.2603646Z adding 'torch/_utils_internal.py' 2025-09-07T06:46:09.2609292Z adding 'torch/_vmap_internals.py' 2025-09-07T06:46:09.2617606Z adding 'torch/_weights_only_unpickler.py' 2025-09-07T06:46:09.2648843Z adding 'torch/functional.py' 2025-09-07T06:46:09.2663491Z adding 'torch/hub.py' 2025-09-07T06:46:09.2687438Z adding 'torch/library.py' 2025-09-07T06:46:09.2715367Z adding 'torch/overrides.py' 2025-09-07T06:46:09.2720792Z adding 'torch/py.typed' 2025-09-07T06:46:09.2725378Z adding 'torch/quasirandom.py' 2025-09-07T06:46:09.2730383Z adding 'torch/random.py' 2025-09-07T06:46:09.2733814Z adding 'torch/return_types.py' 2025-09-07T06:46:09.2738145Z adding 'torch/return_types.pyi' 2025-09-07T06:46:09.2768083Z adding 'torch/serialization.py' 2025-09-07T06:46:09.2785317Z adding 'torch/storage.py' 2025-09-07T06:46:09.2790165Z adding 'torch/torch_version.py' 2025-09-07T06:46:09.2794077Z adding 'torch/types.py' 2025-09-07T06:46:09.2797110Z adding 'torch/version.py' 2025-09-07T06:46:09.3028408Z adding 'torch/_C/_VariableFunctions.pyi' 2025-09-07T06:46:09.3148777Z adding 'torch/_C/__init__.pyi' 2025-09-07T06:46:09.3161686Z adding 'torch/_C/_aoti.pyi' 2025-09-07T06:46:09.3165842Z adding 'torch/_C/_autograd.pyi' 2025-09-07T06:46:09.3168879Z adding 'torch/_C/_cpu.pyi' 2025-09-07T06:46:09.3171723Z adding 'torch/_C/_cudnn.pyi' 2025-09-07T06:46:09.3174382Z adding 'torch/_C/_cusparselt.pyi' 2025-09-07T06:46:09.3177344Z adding 'torch/_C/_distributed_autograd.pyi' 2025-09-07T06:46:09.3185610Z adding 'torch/_C/_distributed_c10d.pyi' 2025-09-07T06:46:09.3190264Z adding 'torch/_C/_distributed_rpc.pyi' 2025-09-07T06:46:09.3193523Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-09-07T06:46:09.3196444Z adding 'torch/_C/_functions.pyi' 2025-09-07T06:46:09.3199797Z adding 'torch/_C/_functorch.pyi' 2025-09-07T06:46:09.3202635Z adding 'torch/_C/_instruction_counter.pyi' 2025-09-07T06:46:09.3205306Z adding 'torch/_C/_itt.pyi' 2025-09-07T06:46:09.3209106Z adding 'torch/_C/_jit_tree_views.pyi' 2025-09-07T06:46:09.3212239Z adding 'torch/_C/_lazy.pyi' 2025-09-07T06:46:09.3215137Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-09-07T06:46:09.3218216Z adding 'torch/_C/_monitor.pyi' 2025-09-07T06:46:09.3222250Z adding 'torch/_C/_nn.pyi' 2025-09-07T06:46:09.3225516Z adding 'torch/_C/_nvtx.pyi' 2025-09-07T06:46:09.3228488Z adding 'torch/_C/_onnx.pyi' 2025-09-07T06:46:09.3232582Z adding 'torch/_C/_profiler.pyi' 2025-09-07T06:46:09.3235513Z adding 'torch/_C/_verbose.pyi' 2025-09-07T06:46:09.3239233Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-09-07T06:46:09.3242175Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-09-07T06:46:09.3245598Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-09-07T06:46:09.3250374Z adding 'torch/_C/_dynamo/guards.pyi' 2025-09-07T06:46:09.3254453Z adding 'torch/_C/_export/__init__.pyi' 2025-09-07T06:46:09.3257468Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-09-07T06:46:09.3261167Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-09-07T06:46:09.3265140Z adding 'torch/_awaits/__init__.py' 2025-09-07T06:46:09.3268670Z adding 'torch/_custom_op/__init__.py' 2025-09-07T06:46:09.3274255Z adding 'torch/_custom_op/autograd.py' 2025-09-07T06:46:09.3284081Z adding 'torch/_custom_op/impl.py' 2025-09-07T06:46:09.3292448Z adding 'torch/_decomp/__init__.py' 2025-09-07T06:46:09.3351361Z adding 'torch/_decomp/decompositions.py' 2025-09-07T06:46:09.3361025Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-09-07T06:46:09.3366306Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-09-07T06:46:09.3370076Z adding 'torch/_dispatch/__init__.py' 2025-09-07T06:46:09.3374580Z adding 'torch/_dispatch/python.py' 2025-09-07T06:46:09.3380534Z adding 'torch/_dynamo/__init__.py' 2025-09-07T06:46:09.3386108Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-09-07T06:46:09.3390835Z adding 'torch/_dynamo/aot_compile.py' 2025-09-07T06:46:09.3395961Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-09-07T06:46:09.3420939Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-09-07T06:46:09.3427571Z adding 'torch/_dynamo/cache_size.py' 2025-09-07T06:46:09.3432047Z adding 'torch/_dynamo/callback.py' 2025-09-07T06:46:09.3435507Z adding 'torch/_dynamo/code_context.py' 2025-09-07T06:46:09.3445991Z adding 'torch/_dynamo/codegen.py' 2025-09-07T06:46:09.3468751Z adding 'torch/_dynamo/compiled_autograd.py' 2025-09-07T06:46:09.3476944Z adding 'torch/_dynamo/comptime.py' 2025-09-07T06:46:09.3491743Z adding 'torch/_dynamo/config.py' 2025-09-07T06:46:09.3518734Z adding 'torch/_dynamo/convert_frame.py' 2025-09-07T06:46:09.3524064Z adding 'torch/_dynamo/create_parameter_op.py' 2025-09-07T06:46:09.3527332Z adding 'torch/_dynamo/current_scope_id.py' 2025-09-07T06:46:09.3540843Z adding 'torch/_dynamo/debug_utils.py' 2025-09-07T06:46:09.3555528Z adding 'torch/_dynamo/decorators.py' 2025-09-07T06:46:09.3563415Z adding 'torch/_dynamo/device_interface.py' 2025-09-07T06:46:09.3567275Z adding 'torch/_dynamo/distributed.py' 2025-09-07T06:46:09.3601533Z adding 'torch/_dynamo/eval_frame.py' 2025-09-07T06:46:09.3614482Z adding 'torch/_dynamo/exc.py' 2025-09-07T06:46:09.3620146Z adding 'torch/_dynamo/external_utils.py' 2025-09-07T06:46:09.3626455Z adding 'torch/_dynamo/funcname_cache.py' 2025-09-07T06:46:09.3628495Z adding 'torch/_dynamo/functional_export.py' 2025-09-07T06:46:09.3631994Z adding 'torch/_dynamo/graph_break_hints.py' 2025-09-07T06:46:09.3658993Z adding 'torch/_dynamo/graph_break_registry.json' 2025-09-07T06:46:09.3670924Z adding 'torch/_dynamo/graph_deduplication.py' 2025-09-07T06:46:09.3679287Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-09-07T06:46:09.3683141Z adding 'torch/_dynamo/graph_utils.py' 2025-09-07T06:46:09.3741876Z adding 'torch/_dynamo/guards.py' 2025-09-07T06:46:09.3749084Z adding 'torch/_dynamo/hooks.py' 2025-09-07T06:46:09.3752715Z adding 'torch/_dynamo/logging.py' 2025-09-07T06:46:09.3757648Z adding 'torch/_dynamo/metrics_context.py' 2025-09-07T06:46:09.3762046Z adding 'torch/_dynamo/mutation_guard.py' 2025-09-07T06:46:09.3818212Z adding 'torch/_dynamo/output_graph.py' 2025-09-07T06:46:09.3834128Z adding 'torch/_dynamo/package.py' 2025-09-07T06:46:09.3848510Z adding 'torch/_dynamo/pgo.py' 2025-09-07T06:46:09.3855031Z adding 'torch/_dynamo/precompile_context.py' 2025-09-07T06:46:09.3859538Z adding 'torch/_dynamo/profiler.py' 2025-09-07T06:46:09.3863612Z adding 'torch/_dynamo/replay_record.py' 2025-09-07T06:46:09.3873255Z adding 'torch/_dynamo/resume_execution.py' 2025-09-07T06:46:09.3890913Z adding 'torch/_dynamo/side_effects.py' 2025-09-07T06:46:09.3902239Z adding 'torch/_dynamo/source.py' 2025-09-07T06:46:09.3965796Z adding 'torch/_dynamo/symbolic_convert.py' 2025-09-07T06:46:09.3974233Z adding 'torch/_dynamo/tensor_version_op.py' 2025-09-07T06:46:09.3978739Z adding 'torch/_dynamo/test_case.py' 2025-09-07T06:46:09.3982314Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-09-07T06:46:09.3988436Z adding 'torch/_dynamo/test_minifier_common.py' 2025-09-07T06:46:09.3996016Z adding 'torch/_dynamo/testing.py' 2025-09-07T06:46:09.4035387Z adding 'torch/_dynamo/trace_rules.py' 2025-09-07T06:46:09.4042911Z adding 'torch/_dynamo/types.py' 2025-09-07T06:46:09.4106322Z adding 'torch/_dynamo/utils.py' 2025-09-07T06:46:09.4113981Z adding 'torch/_dynamo/backends/__init__.py' 2025-09-07T06:46:09.4118304Z adding 'torch/_dynamo/backends/common.py' 2025-09-07T06:46:09.4123961Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-09-07T06:46:09.4131378Z adding 'torch/_dynamo/backends/debugging.py' 2025-09-07T06:46:09.4143528Z adding 'torch/_dynamo/backends/distributed.py' 2025-09-07T06:46:09.4147362Z adding 'torch/_dynamo/backends/inductor.py' 2025-09-07T06:46:09.4150672Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-09-07T06:46:09.4155013Z adding 'torch/_dynamo/backends/registry.py' 2025-09-07T06:46:09.4158107Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-09-07T06:46:09.4161302Z adding 'torch/_dynamo/backends/torchxla.py' 2025-09-07T06:46:09.4166112Z adding 'torch/_dynamo/backends/tvm.py' 2025-09-07T06:46:09.4173133Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-09-07T06:46:09.4176720Z adding 'torch/_dynamo/polyfills/_collections.py' 2025-09-07T06:46:09.4180653Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-09-07T06:46:09.4184094Z adding 'torch/_dynamo/polyfills/functools.py' 2025-09-07T06:46:09.4187244Z adding 'torch/_dynamo/polyfills/fx.py' 2025-09-07T06:46:09.4191796Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-09-07T06:46:09.4195255Z adding 'torch/_dynamo/polyfills/loader.py' 2025-09-07T06:46:09.4198740Z adding 'torch/_dynamo/polyfills/operator.py' 2025-09-07T06:46:09.4201934Z adding 'torch/_dynamo/polyfills/os.py' 2025-09-07T06:46:09.4207986Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-09-07T06:46:09.4211411Z adding 'torch/_dynamo/polyfills/struct.py' 2025-09-07T06:46:09.4214305Z adding 'torch/_dynamo/polyfills/sys.py' 2025-09-07T06:46:09.4217500Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-09-07T06:46:09.4221244Z adding 'torch/_dynamo/repro/__init__.py' 2025-09-07T06:46:09.4236463Z adding 'torch/_dynamo/repro/after_aot.py' 2025-09-07T06:46:09.4245668Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-09-07T06:46:09.4255075Z adding 'torch/_dynamo/repro/aoti.py' 2025-09-07T06:46:09.4261043Z adding 'torch/_dynamo/variables/__init__.py' 2025-09-07T06:46:09.4270503Z adding 'torch/_dynamo/variables/base.py' 2025-09-07T06:46:09.4325422Z adding 'torch/_dynamo/variables/builder.py' 2025-09-07T06:46:09.4362415Z adding 'torch/_dynamo/variables/builtin.py' 2025-09-07T06:46:09.4370461Z adding 'torch/_dynamo/variables/constant.py' 2025-09-07T06:46:09.4385177Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-09-07T06:46:09.4401650Z adding 'torch/_dynamo/variables/dicts.py' 2025-09-07T06:46:09.4409255Z adding 'torch/_dynamo/variables/distributed.py' 2025-09-07T06:46:09.4440867Z adding 'torch/_dynamo/variables/functions.py' 2025-09-07T06:46:09.4484213Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-09-07T06:46:09.4494345Z adding 'torch/_dynamo/variables/iter.py' 2025-09-07T06:46:09.4499568Z adding 'torch/_dynamo/variables/lazy.py' 2025-09-07T06:46:09.4515416Z adding 'torch/_dynamo/variables/lists.py' 2025-09-07T06:46:09.4540517Z adding 'torch/_dynamo/variables/misc.py' 2025-09-07T06:46:09.4559267Z adding 'torch/_dynamo/variables/nn_module.py' 2025-09-07T06:46:09.4567447Z adding 'torch/_dynamo/variables/optimizer.py' 2025-09-07T06:46:09.4572029Z adding 'torch/_dynamo/variables/script_object.py' 2025-09-07T06:46:09.4575715Z adding 'torch/_dynamo/variables/sdpa.py' 2025-09-07T06:46:09.4599113Z adding 'torch/_dynamo/variables/tensor.py' 2025-09-07T06:46:09.4625997Z adding 'torch/_dynamo/variables/torch.py' 2025-09-07T06:46:09.4637862Z adding 'torch/_dynamo/variables/torch_function.py' 2025-09-07T06:46:09.4666564Z adding 'torch/_dynamo/variables/user_defined.py' 2025-09-07T06:46:09.4674261Z adding 'torch/_export/__init__.py' 2025-09-07T06:46:09.4699260Z adding 'torch/_export/converter.py' 2025-09-07T06:46:09.4704717Z adding 'torch/_export/error.py' 2025-09-07T06:46:09.4719648Z adding 'torch/_export/non_strict_utils.py' 2025-09-07T06:46:09.4727427Z adding 'torch/_export/pass_base.py' 2025-09-07T06:46:09.4731916Z adding 'torch/_export/tools.py' 2025-09-07T06:46:09.4754732Z adding 'torch/_export/utils.py' 2025-09-07T06:46:09.4762967Z adding 'torch/_export/verifier.py' 2025-09-07T06:46:09.4768480Z adding 'torch/_export/wrappers.py' 2025-09-07T06:46:09.4772539Z adding 'torch/_export/db/__init__.py' 2025-09-07T06:46:09.4776621Z adding 'torch/_export/db/case.py' 2025-09-07T06:46:09.4779743Z adding 'torch/_export/db/gen_example.py' 2025-09-07T06:46:09.4783036Z adding 'torch/_export/db/logging.py' 2025-09-07T06:46:09.4788119Z adding 'torch/_export/db/examples/__init__.py' 2025-09-07T06:46:09.4791290Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-09-07T06:46:09.4794295Z adding 'torch/_export/db/examples/autograd_function.py' 2025-09-07T06:46:09.4797194Z adding 'torch/_export/db/examples/class_method.py' 2025-09-07T06:46:09.4800465Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-09-07T06:46:09.4803586Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-09-07T06:46:09.4806900Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-09-07T06:46:09.4809924Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-09-07T06:46:09.4812943Z adding 'torch/_export/db/examples/cond_operands.py' 2025-09-07T06:46:09.4816042Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-09-07T06:46:09.4819021Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-09-07T06:46:09.4822044Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-09-07T06:46:09.4825297Z adding 'torch/_export/db/examples/decorator.py' 2025-09-07T06:46:09.4828127Z adding 'torch/_export/db/examples/dictionary.py' 2025-09-07T06:46:09.4831076Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-09-07T06:46:09.4834157Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-09-07T06:46:09.4837220Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-09-07T06:46:09.4840186Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-09-07T06:46:09.4843319Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-09-07T06:46:09.4846276Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-09-07T06:46:09.4849341Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-09-07T06:46:09.4852319Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-09-07T06:46:09.4855436Z adding 'torch/_export/db/examples/list_contains.py' 2025-09-07T06:46:09.4858403Z adding 'torch/_export/db/examples/list_unpack.py' 2025-09-07T06:46:09.4861549Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-09-07T06:46:09.4864650Z adding 'torch/_export/db/examples/nested_function.py' 2025-09-07T06:46:09.4867773Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-09-07T06:46:09.4870676Z adding 'torch/_export/db/examples/optional_input.py' 2025-09-07T06:46:09.4873741Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-09-07T06:46:09.4876747Z adding 'torch/_export/db/examples/scalar_output.py' 2025-09-07T06:46:09.4879870Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-09-07T06:46:09.4882861Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-09-07T06:46:09.4885790Z adding 'torch/_export/db/examples/static_if.py' 2025-09-07T06:46:09.4888819Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-09-07T06:46:09.4891792Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-09-07T06:46:09.4894814Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-09-07T06:46:09.4897690Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-09-07T06:46:09.4901540Z adding 'torch/_export/pass_infra/__init__.py' 2025-09-07T06:46:09.4904644Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-09-07T06:46:09.4907899Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-09-07T06:46:09.4911767Z adding 'torch/_export/passes/__init__.py' 2025-09-07T06:46:09.4915487Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-09-07T06:46:09.4920936Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-09-07T06:46:09.4925449Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-09-07T06:46:09.4931359Z adding 'torch/_export/passes/constant_folding.py' 2025-09-07T06:46:09.4935469Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-09-07T06:46:09.4939030Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-09-07T06:46:09.4946339Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-09-07T06:46:09.4950074Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-09-07T06:46:09.4954751Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-09-07T06:46:09.4964539Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-09-07T06:46:09.4968485Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-09-07T06:46:09.4972145Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-09-07T06:46:09.4976832Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-09-07T06:46:09.4980939Z adding 'torch/_export/serde/__init__.py' 2025-09-07T06:46:09.4986550Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-09-07T06:46:09.4991677Z adding 'torch/_export/serde/export_schema.thrift' 2025-09-07T06:46:09.4998644Z adding 'torch/_export/serde/schema.py' 2025-09-07T06:46:09.5003907Z adding 'torch/_export/serde/schema.yaml' 2025-09-07T06:46:09.5012775Z adding 'torch/_export/serde/schema_check.py' 2025-09-07T06:46:09.5061355Z adding 'torch/_export/serde/serialize.py' 2025-09-07T06:46:09.5068621Z adding 'torch/_export/serde/union.py' 2025-09-07T06:46:09.5072846Z adding 'torch/_functorch/__init__.py' 2025-09-07T06:46:09.5101454Z adding 'torch/_functorch/aot_autograd.py' 2025-09-07T06:46:09.5110966Z adding 'torch/_functorch/apis.py' 2025-09-07T06:46:09.5154283Z adding 'torch/_functorch/autograd_function.py' 2025-09-07T06:46:09.5158428Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-09-07T06:46:09.5162802Z adding 'torch/_functorch/benchmark_utils.py' 2025-09-07T06:46:09.5167895Z adding 'torch/_functorch/compile_utils.py' 2025-09-07T06:46:09.5174398Z adding 'torch/_functorch/compilers.py' 2025-09-07T06:46:09.5182831Z adding 'torch/_functorch/config.py' 2025-09-07T06:46:09.5187492Z adding 'torch/_functorch/deprecated.py' 2025-09-07T06:46:09.5212032Z adding 'torch/_functorch/eager_transforms.py' 2025-09-07T06:46:09.5219156Z adding 'torch/_functorch/functional_call.py' 2025-09-07T06:46:09.5226555Z adding 'torch/_functorch/fx_minifier.py' 2025-09-07T06:46:09.5234951Z adding 'torch/_functorch/make_functional.py' 2025-09-07T06:46:09.5276357Z adding 'torch/_functorch/partitioners.py' 2025-09-07T06:46:09.5282867Z adding 'torch/_functorch/predispatch.py' 2025-09-07T06:46:09.5288185Z adding 'torch/_functorch/pyfunctorch.py' 2025-09-07T06:46:09.5291409Z adding 'torch/_functorch/python_key.py' 2025-09-07T06:46:09.5294400Z adding 'torch/_functorch/pytree_hacks.py' 2025-09-07T06:46:09.5302504Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-09-07T06:46:09.5306200Z adding 'torch/_functorch/utils.py' 2025-09-07T06:46:09.5313578Z adding 'torch/_functorch/vmap.py' 2025-09-07T06:46:09.5317941Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-09-07T06:46:09.5321835Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-09-07T06:46:09.5327334Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-09-07T06:46:09.5331441Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-09-07T06:46:09.5336847Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-09-07T06:46:09.5340977Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-09-07T06:46:09.5363605Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-09-07T06:46:09.5381926Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-09-07T06:46:09.5392918Z adding 'torch/_functorch/_aot_autograd/descriptors.py' 2025-09-07T06:46:09.5399112Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-09-07T06:46:09.5407951Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-09-07T06:46:09.5413589Z adding 'torch/_functorch/_aot_autograd/fx_utils.py' 2025-09-07T06:46:09.5420885Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-09-07T06:46:09.5443118Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-09-07T06:46:09.5474148Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-09-07T06:46:09.5483557Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-09-07T06:46:09.5487981Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-09-07T06:46:09.5528390Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-09-07T06:46:09.5553205Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-09-07T06:46:09.5558494Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-09-07T06:46:09.5566871Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-09-07T06:46:09.5576319Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-09-07T06:46:09.5581393Z adding 'torch/_higher_order_ops/__init__.py' 2025-09-07T06:46:09.5585038Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-09-07T06:46:09.5589080Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-09-07T06:46:09.5597513Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-09-07T06:46:09.5610884Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-09-07T06:46:09.5618074Z adding 'torch/_higher_order_ops/base_hop.py' 2025-09-07T06:46:09.5630766Z adding 'torch/_higher_order_ops/cond.py' 2025-09-07T06:46:09.5637469Z adding 'torch/_higher_order_ops/effects.py' 2025-09-07T06:46:09.5642279Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-09-07T06:46:09.5646379Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-09-07T06:46:09.5658849Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-09-07T06:46:09.5663122Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-09-07T06:46:09.5667067Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-09-07T06:46:09.5676989Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-09-07T06:46:09.5683058Z adding 'torch/_higher_order_ops/map.py' 2025-09-07T06:46:09.5687639Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-09-07T06:46:09.5691173Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-09-07T06:46:09.5706437Z adding 'torch/_higher_order_ops/scan.py' 2025-09-07T06:46:09.5712893Z adding 'torch/_higher_order_ops/schema.py' 2025-09-07T06:46:09.5716892Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-09-07T06:46:09.5721578Z adding 'torch/_higher_order_ops/torchbind.py' 2025-09-07T06:46:09.5749015Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-09-07T06:46:09.5769259Z adding 'torch/_higher_order_ops/utils.py' 2025-09-07T06:46:09.5783245Z adding 'torch/_higher_order_ops/while_loop.py' 2025-09-07T06:46:09.5790033Z adding 'torch/_higher_order_ops/wrap.py' 2025-09-07T06:46:09.5795595Z adding 'torch/_inductor/__autotune_main__.py' 2025-09-07T06:46:09.5802429Z adding 'torch/_inductor/__init__.py' 2025-09-07T06:46:09.5806976Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-09-07T06:46:09.5812118Z adding 'torch/_inductor/aoti_eager.py' 2025-09-07T06:46:09.5821963Z adding 'torch/_inductor/async_compile.py' 2025-09-07T06:46:09.5832973Z adding 'torch/_inductor/autotune_process.py' 2025-09-07T06:46:09.5837868Z adding 'torch/_inductor/await_utils.py' 2025-09-07T06:46:09.5843054Z adding 'torch/_inductor/bounds.py' 2025-09-07T06:46:09.5850306Z adding 'torch/_inductor/choices.py' 2025-09-07T06:46:09.5908101Z adding 'torch/_inductor/codecache.py' 2025-09-07T06:46:09.5916951Z adding 'torch/_inductor/comm_analysis.py' 2025-09-07T06:46:09.5922948Z adding 'torch/_inductor/comm_lowering.py' 2025-09-07T06:46:09.5946293Z adding 'torch/_inductor/comms.py' 2025-09-07T06:46:09.5951788Z adding 'torch/_inductor/comms_debug.py' 2025-09-07T06:46:09.5990905Z adding 'torch/_inductor/compile_fx.py' 2025-09-07T06:46:09.5999555Z adding 'torch/_inductor/compile_fx_async.py' 2025-09-07T06:46:09.6009004Z adding 'torch/_inductor/compile_fx_ext.py' 2025-09-07T06:46:09.6013322Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-09-07T06:46:09.6021551Z adding 'torch/_inductor/compiler_bisector.py' 2025-09-07T06:46:09.6056482Z adding 'torch/_inductor/config.py' 2025-09-07T06:46:09.6065102Z adding 'torch/_inductor/constant_folding.py' 2025-09-07T06:46:09.6092000Z adding 'torch/_inductor/cpp_builder.py' 2025-09-07T06:46:09.6100923Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-09-07T06:46:09.6142996Z adding 'torch/_inductor/cudagraph_trees.py' 2025-09-07T06:46:09.6152108Z adding 'torch/_inductor/cudagraph_utils.py' 2025-09-07T06:46:09.6156599Z adding 'torch/_inductor/custom_graph_pass.py' 2025-09-07T06:46:09.6172272Z adding 'torch/_inductor/debug.py' 2025-09-07T06:46:09.6186943Z adding 'torch/_inductor/decomposition.py' 2025-09-07T06:46:09.6199574Z adding 'torch/_inductor/dependencies.py' 2025-09-07T06:46:09.6206107Z adding 'torch/_inductor/dtype_propagation.py' 2025-09-07T06:46:09.6211673Z adding 'torch/_inductor/exc.py' 2025-09-07T06:46:09.6215994Z adding 'torch/_inductor/extern_node_serializer.py' 2025-09-07T06:46:09.6220810Z adding 'torch/_inductor/freezing.py' 2025-09-07T06:46:09.6224294Z adding 'torch/_inductor/freezing_utils.py' 2025-09-07T06:46:09.6237516Z adding 'torch/_inductor/fuzzer.py' 2025-09-07T06:46:09.6244449Z adding 'torch/_inductor/fx_utils.py' 2025-09-07T06:46:09.6281588Z adding 'torch/_inductor/graph.py' 2025-09-07T06:46:09.6287008Z adding 'torch/_inductor/hooks.py' 2025-09-07T06:46:09.6292993Z adding 'torch/_inductor/index_propagation.py' 2025-09-07T06:46:09.6297906Z adding 'torch/_inductor/inductor_prims.py' 2025-09-07T06:46:09.6404639Z adding 'torch/_inductor/ir.py' 2025-09-07T06:46:09.6417331Z adding 'torch/_inductor/jagged_lowerings.py' 2025-09-07T06:46:09.6422275Z adding 'torch/_inductor/kernel_inputs.py' 2025-09-07T06:46:09.6426297Z adding 'torch/_inductor/kernel_template_choice.py' 2025-09-07T06:46:09.6436075Z adding 'torch/_inductor/loop_body.py' 2025-09-07T06:46:09.6515931Z adding 'torch/_inductor/lowering.py' 2025-09-07T06:46:09.6534621Z adding 'torch/_inductor/memory.py' 2025-09-07T06:46:09.6541778Z adding 'torch/_inductor/metrics.py' 2025-09-07T06:46:09.6553213Z adding 'torch/_inductor/mkldnn_ir.py' 2025-09-07T06:46:09.6566398Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-09-07T06:46:09.6572258Z adding 'torch/_inductor/mock_cache.py' 2025-09-07T06:46:09.6583725Z adding 'torch/_inductor/ops_handler.py' 2025-09-07T06:46:09.6588759Z adding 'torch/_inductor/optimize_indexing.py' 2025-09-07T06:46:09.6599964Z adding 'torch/_inductor/output_code.py' 2025-09-07T06:46:09.6631007Z adding 'torch/_inductor/pattern_matcher.py' 2025-09-07T06:46:09.6637679Z adding 'torch/_inductor/quantized_lowerings.py' 2025-09-07T06:46:09.6643909Z adding 'torch/_inductor/remote_cache.py' 2025-09-07T06:46:09.6647425Z adding 'torch/_inductor/remote_gemm_autotune_cache.py' 2025-09-07T06:46:09.6720083Z adding 'torch/_inductor/scheduler.py' 2025-09-07T06:46:09.6727991Z adding 'torch/_inductor/script.ld' 2025-09-07T06:46:09.6774651Z adding 'torch/_inductor/select_algorithm.py' 2025-09-07T06:46:09.6781606Z adding 'torch/_inductor/shape_propagation.py' 2025-09-07T06:46:09.6795869Z adding 'torch/_inductor/sizevars.py' 2025-09-07T06:46:09.6802094Z adding 'torch/_inductor/standalone_compile.py' 2025-09-07T06:46:09.6807016Z adding 'torch/_inductor/subgraph_lowering.py' 2025-09-07T06:46:09.6810380Z adding 'torch/_inductor/test_case.py' 2025-09-07T06:46:09.6813426Z adding 'torch/_inductor/test_operators.py' 2025-09-07T06:46:09.6823694Z adding 'torch/_inductor/tiling_utils.py' 2025-09-07T06:46:09.6830713Z adding 'torch/_inductor/triton_bundler.py' 2025-09-07T06:46:09.6876298Z adding 'torch/_inductor/utils.py' 2025-09-07T06:46:09.6885800Z adding 'torch/_inductor/virtualized.py' 2025-09-07T06:46:09.6893144Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-09-07T06:46:09.6897344Z adding 'torch/_inductor/analysis/__init__.py' 2025-09-07T06:46:09.6901510Z adding 'torch/_inductor/analysis/device_info.py' 2025-09-07T06:46:09.6912038Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-09-07T06:46:09.6916390Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-09-07T06:46:09.6921932Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-09-07T06:46:09.6927634Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-09-07T06:46:09.6932014Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-09-07T06:46:09.6935743Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-09-07T06:46:09.6943950Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-09-07T06:46:09.6952250Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-09-07T06:46:09.6957227Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-09-07T06:46:09.6961581Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-09-07T06:46:09.6965606Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-09-07T06:46:09.6968740Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-09-07T06:46:09.6972716Z adding 'torch/_inductor/codegen/__init__.py' 2025-09-07T06:46:09.6976051Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-09-07T06:46:09.6980756Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-09-07T06:46:09.7013492Z adding 'torch/_inductor/codegen/common.py' 2025-09-07T06:46:09.7088888Z adding 'torch/_inductor/codegen/cpp.py' 2025-09-07T06:46:09.7099275Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-09-07T06:46:09.7113993Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-09-07T06:46:09.7141286Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-09-07T06:46:09.7150739Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-09-07T06:46:09.7172266Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-09-07T06:46:09.7177986Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-09-07T06:46:09.7187133Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-09-07T06:46:09.7197870Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-09-07T06:46:09.7237302Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-09-07T06:46:09.7252670Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-09-07T06:46:09.7263902Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-09-07T06:46:09.7268885Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-09-07T06:46:09.7272299Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-09-07T06:46:09.7276219Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-09-07T06:46:09.7281455Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-09-07T06:46:09.7302427Z adding 'torch/_inductor/codegen/halide.py' 2025-09-07T06:46:09.7313435Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-09-07T06:46:09.7327002Z adding 'torch/_inductor/codegen/mps.py' 2025-09-07T06:46:09.7331098Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-09-07T06:46:09.7338877Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-09-07T06:46:09.7342516Z adding 'torch/_inductor/codegen/python_wrapper_mtia.py' 2025-09-07T06:46:09.7347052Z adding 'torch/_inductor/codegen/segmented_tree.py' 2025-09-07T06:46:09.7382399Z adding 'torch/_inductor/codegen/simd.py' 2025-09-07T06:46:09.7393544Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-09-07T06:46:09.7398773Z adding 'torch/_inductor/codegen/subgraph.py' 2025-09-07T06:46:09.7465091Z adding 'torch/_inductor/codegen/triton.py' 2025-09-07T06:46:09.7483143Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-09-07T06:46:09.7488767Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-09-07T06:46:09.7494049Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-09-07T06:46:09.7543078Z adding 'torch/_inductor/codegen/wrapper.py' 2025-09-07T06:46:09.7558002Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-09-07T06:46:09.7565262Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-09-07T06:46:09.7569604Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-09-07T06:46:09.7575360Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-09-07T06:46:09.7578959Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-09-07T06:46:09.7588327Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-09-07T06:46:09.7595122Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-09-07T06:46:09.7599322Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-09-07T06:46:09.7603237Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-09-07T06:46:09.7609153Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-09-07T06:46:09.7616540Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-09-07T06:46:09.7623010Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-09-07T06:46:09.7648196Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-09-07T06:46:09.7656268Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-09-07T06:46:09.7660840Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-09-07T06:46:09.7666203Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-09-07T06:46:09.7673056Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-09-07T06:46:09.7677187Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py' 2025-09-07T06:46:09.7680681Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py' 2025-09-07T06:46:09.7683536Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py' 2025-09-07T06:46:09.7686610Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py' 2025-09-07T06:46:09.7690141Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py' 2025-09-07T06:46:09.7693638Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py' 2025-09-07T06:46:09.7696343Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py' 2025-09-07T06:46:09.7699731Z adding 'torch/_inductor/codegen/cutedsl/__init__.py' 2025-09-07T06:46:09.7706827Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_kernel.py' 2025-09-07T06:46:09.7712426Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py' 2025-09-07T06:46:09.7717026Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py' 2025-09-07T06:46:09.7721647Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_template.py' 2025-09-07T06:46:09.7734522Z adding 'torch/_inductor/codegen/mtia/__init__.py' 2025-09-07T06:46:09.7734975Z adding 'torch/_inductor/codegen/mtia/device_op_overrides.py' 2025-09-07T06:46:09.7735373Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-09-07T06:46:09.7743979Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-09-07T06:46:09.7747982Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-09-07T06:46:09.7751335Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-09-07T06:46:09.7761973Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-09-07T06:46:09.7775326Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-09-07T06:46:09.7780923Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-09-07T06:46:09.7785163Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-09-07T06:46:09.7789099Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-09-07T06:46:09.7794572Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-09-07T06:46:09.7799243Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-09-07T06:46:09.7802546Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-09-07T06:46:09.7805402Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-09-07T06:46:09.7808881Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-09-07T06:46:09.7812106Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-09-07T06:46:09.7815681Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-09-07T06:46:09.7818983Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-09-07T06:46:09.7825619Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-09-07T06:46:09.7829730Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-09-07T06:46:09.7833064Z adding 'torch/_inductor/compile_worker/utils.py' 2025-09-07T06:46:09.7837048Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-09-07T06:46:09.7845876Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-09-07T06:46:09.7852884Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-09-07T06:46:09.7861400Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-09-07T06:46:09.7870530Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-09-07T06:46:09.7875905Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-09-07T06:46:09.7880335Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-09-07T06:46:09.7886376Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-09-07T06:46:09.7892036Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-09-07T06:46:09.7895857Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-09-07T06:46:09.7906819Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-09-07T06:46:09.7929095Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-09-07T06:46:09.7948612Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-09-07T06:46:09.7965879Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-09-07T06:46:09.7971477Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-09-07T06:46:09.7988965Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-09-07T06:46:09.7994771Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-09-07T06:46:09.8005745Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-09-07T06:46:09.8030718Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-09-07T06:46:09.8043027Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-09-07T06:46:09.8079282Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-09-07T06:46:09.8094698Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-09-07T06:46:09.8099601Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-09-07T06:46:09.8140661Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-09-07T06:46:09.8153210Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-09-07T06:46:09.8159205Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-09-07T06:46:09.8166091Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-09-07T06:46:09.8172158Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-09-07T06:46:09.8177572Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-09-07T06:46:09.8181967Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-09-07T06:46:09.8187085Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-09-07T06:46:09.8192714Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-09-07T06:46:09.8199103Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-09-07T06:46:09.8205440Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-09-07T06:46:09.8211254Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-09-07T06:46:09.8216333Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-09-07T06:46:09.8221350Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-09-07T06:46:09.8226281Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-09-07T06:46:09.8230892Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-09-07T06:46:09.8235500Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-09-07T06:46:09.8240079Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-09-07T06:46:09.8244208Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-09-07T06:46:09.8248986Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-09-07T06:46:09.8253732Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-09-07T06:46:09.8258054Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-09-07T06:46:09.8262323Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-09-07T06:46:09.8267028Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-09-07T06:46:09.8271553Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-09-07T06:46:09.8276086Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-09-07T06:46:09.8280000Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-09-07T06:46:09.8283329Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-09-07T06:46:09.8286437Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-09-07T06:46:09.8290050Z adding 'torch/_inductor/kernel/__init__.py' 2025-09-07T06:46:09.8295134Z adding 'torch/_inductor/kernel/bmm.py' 2025-09-07T06:46:09.8303142Z adding 'torch/_inductor/kernel/conv.py' 2025-09-07T06:46:09.8317333Z adding 'torch/_inductor/kernel/mm.py' 2025-09-07T06:46:09.8322723Z adding 'torch/_inductor/kernel/mm_common.py' 2025-09-07T06:46:09.8330941Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-09-07T06:46:09.8335821Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-09-07T06:46:09.8339665Z adding 'torch/_inductor/kernel/flex/__init__.py' 2025-09-07T06:46:09.8345439Z adding 'torch/_inductor/kernel/flex/common.py' 2025-09-07T06:46:09.8354993Z adding 'torch/_inductor/kernel/flex/flex_attention.py' 2025-09-07T06:46:09.8361404Z adding 'torch/_inductor/kernel/flex/flex_cpu.py' 2025-09-07T06:46:09.8368280Z adding 'torch/_inductor/kernel/flex/flex_decoding.py' 2025-09-07T06:46:09.8373984Z adding 'torch/_inductor/kernel/flex/templates/common.py.jinja' 2025-09-07T06:46:09.8379148Z adding 'torch/_inductor/kernel/flex/templates/flex_attention.py.jinja' 2025-09-07T06:46:09.8387938Z adding 'torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja' 2025-09-07T06:46:09.8393931Z adding 'torch/_inductor/kernel/flex/templates/flex_decode.py.jinja' 2025-09-07T06:46:09.8397713Z adding 'torch/_inductor/kernel/flex/templates/utilities.py.jinja' 2025-09-07T06:46:09.8401300Z adding 'torch/_inductor/package/__init__.py' 2025-09-07T06:46:09.8404183Z adding 'torch/_inductor/package/build_package.py' 2025-09-07T06:46:09.8408113Z adding 'torch/_inductor/package/package.py' 2025-09-07T06:46:09.8411991Z adding 'torch/_inductor/runtime/__init__.py' 2025-09-07T06:46:09.8421002Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-09-07T06:46:09.8427558Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-09-07T06:46:09.8431172Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-09-07T06:46:09.8434673Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-09-07T06:46:09.8440554Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-09-07T06:46:09.8445339Z adding 'torch/_inductor/runtime/debug_utils.py' 2025-09-07T06:46:09.8449624Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-09-07T06:46:09.8454804Z adding 'torch/_inductor/runtime/hints.py' 2025-09-07T06:46:09.8459923Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-09-07T06:46:09.8466180Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-09-07T06:46:09.8471000Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-09-07T06:46:09.8481876Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-09-07T06:46:09.8528603Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-09-07T06:46:09.8536467Z adding 'torch/_inductor/template_heuristics/__init__.py' 2025-09-07T06:46:09.8540622Z adding 'torch/_inductor/template_heuristics/aten.py' 2025-09-07T06:46:09.8544329Z adding 'torch/_inductor/template_heuristics/base.py' 2025-09-07T06:46:09.8548658Z adding 'torch/_inductor/template_heuristics/contiguous_mm.py' 2025-09-07T06:46:09.8551989Z adding 'torch/_inductor/template_heuristics/decompose_k.py' 2025-09-07T06:46:09.8555699Z adding 'torch/_inductor/template_heuristics/gemm.py' 2025-09-07T06:46:09.8560535Z adding 'torch/_inductor/template_heuristics/registry.py' 2025-09-07T06:46:09.8581083Z adding 'torch/_inductor/template_heuristics/triton.py' 2025-09-07T06:46:09.8586842Z adding 'torch/_inductor/template_heuristics/triton_addmm.py' 2025-09-07T06:46:09.8591822Z adding 'torch/_lazy/__init__.py' 2025-09-07T06:46:09.8597088Z adding 'torch/_lazy/closure.py' 2025-09-07T06:46:09.8600285Z adding 'torch/_lazy/computation.py' 2025-09-07T06:46:09.8603867Z adding 'torch/_lazy/config.py' 2025-09-07T06:46:09.8606964Z adding 'torch/_lazy/debug.py' 2025-09-07T06:46:09.8610556Z adding 'torch/_lazy/device_context.py' 2025-09-07T06:46:09.8616537Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-09-07T06:46:09.8619632Z adding 'torch/_lazy/ir_cache.py' 2025-09-07T06:46:09.8623098Z adding 'torch/_lazy/metrics.py' 2025-09-07T06:46:09.8629424Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-09-07T06:46:09.8633852Z adding 'torch/_lazy/ts_backend.py' 2025-09-07T06:46:09.8639673Z adding 'torch/_library/__init__.py' 2025-09-07T06:46:09.8646844Z adding 'torch/_library/autograd.py' 2025-09-07T06:46:09.8662533Z adding 'torch/_library/custom_ops.py' 2025-09-07T06:46:09.8670691Z adding 'torch/_library/fake_class_registry.py' 2025-09-07T06:46:09.8676949Z adding 'torch/_library/fake_impl.py' 2025-09-07T06:46:09.8683154Z adding 'torch/_library/fake_profile.py' 2025-09-07T06:46:09.8689920Z adding 'torch/_library/infer_schema.py' 2025-09-07T06:46:09.8693851Z adding 'torch/_library/simple_registry.py' 2025-09-07T06:46:09.8701398Z adding 'torch/_library/triton.py' 2025-09-07T06:46:09.8709883Z adding 'torch/_library/utils.py' 2025-09-07T06:46:09.8714421Z adding 'torch/_logging/__init__.py' 2025-09-07T06:46:09.8734339Z adding 'torch/_logging/_internal.py' 2025-09-07T06:46:09.8740139Z adding 'torch/_logging/_registrations.py' 2025-09-07T06:46:09.8743970Z adding 'torch/_logging/scribe.py' 2025-09-07T06:46:09.8747645Z adding 'torch/_logging/structured.py' 2025-09-07T06:46:09.8751728Z adding 'torch/_numpy/__init__.py' 2025-09-07T06:46:09.8755066Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-09-07T06:46:09.8761720Z adding 'torch/_numpy/_casting_dicts.py' 2025-09-07T06:46:09.8768340Z adding 'torch/_numpy/_dtypes.py' 2025-09-07T06:46:09.8773118Z adding 'torch/_numpy/_dtypes_impl.py' 2025-09-07T06:46:09.8776693Z adding 'torch/_numpy/_funcs.py' 2025-09-07T06:46:09.8799014Z adding 'torch/_numpy/_funcs_impl.py' 2025-09-07T06:46:09.8803279Z adding 'torch/_numpy/_getlimits.py' 2025-09-07T06:46:09.8811731Z adding 'torch/_numpy/_ndarray.py' 2025-09-07T06:46:09.8817497Z adding 'torch/_numpy/_normalizations.py' 2025-09-07T06:46:09.8822637Z adding 'torch/_numpy/_reductions_impl.py' 2025-09-07T06:46:09.8827598Z adding 'torch/_numpy/_ufuncs.py' 2025-09-07T06:46:09.8831310Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-09-07T06:46:09.8835955Z adding 'torch/_numpy/_util.py' 2025-09-07T06:46:09.8839398Z adding 'torch/_numpy/fft.py' 2025-09-07T06:46:09.8843406Z adding 'torch/_numpy/linalg.py' 2025-09-07T06:46:09.8847514Z adding 'torch/_numpy/random.py' 2025-09-07T06:46:09.8851366Z adding 'torch/_numpy/testing/__init__.py' 2025-09-07T06:46:09.8877776Z adding 'torch/_numpy/testing/utils.py' 2025-09-07T06:46:09.8907291Z adding 'torch/_prims/__init__.py' 2025-09-07T06:46:09.8914623Z adding 'torch/_prims/context.py' 2025-09-07T06:46:09.8918562Z adding 'torch/_prims/debug_prims.py' 2025-09-07T06:46:09.8922555Z adding 'torch/_prims/executor.py' 2025-09-07T06:46:09.8928791Z adding 'torch/_prims/rng_prims.py' 2025-09-07T06:46:09.8959229Z adding 'torch/_prims_common/__init__.py' 2025-09-07T06:46:09.8969508Z adding 'torch/_prims_common/wrappers.py' 2025-09-07T06:46:09.9047130Z adding 'torch/_refs/__init__.py' 2025-09-07T06:46:09.9056373Z adding 'torch/_refs/_conversions.py' 2025-09-07T06:46:09.9063513Z adding 'torch/_refs/fft.py' 2025-09-07T06:46:09.9071302Z adding 'torch/_refs/linalg/__init__.py' 2025-09-07T06:46:09.9075136Z adding 'torch/_refs/nn/__init__.py' 2025-09-07T06:46:09.9090625Z adding 'torch/_refs/nn/functional/__init__.py' 2025-09-07T06:46:09.9097496Z adding 'torch/_refs/special/__init__.py' 2025-09-07T06:46:09.9101698Z adding 'torch/_strobelight/__init__.py' 2025-09-07T06:46:09.9107394Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-09-07T06:46:09.9112672Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-09-07T06:46:09.9117199Z adding 'torch/_subclasses/__init__.py' 2025-09-07T06:46:09.9122910Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-09-07T06:46:09.9142040Z adding 'torch/_subclasses/fake_impls.py' 2025-09-07T06:46:09.9195808Z adding 'torch/_subclasses/fake_tensor.py' 2025-09-07T06:46:09.9204098Z adding 'torch/_subclasses/fake_utils.py' 2025-09-07T06:46:09.9216268Z adding 'torch/_subclasses/functional_tensor.py' 2025-09-07T06:46:09.9246679Z adding 'torch/_subclasses/meta_utils.py' 2025-09-07T06:46:09.9254163Z adding 'torch/_subclasses/schema_check_mode.py' 2025-09-07T06:46:09.9257888Z adding 'torch/_vendor/__init__.py' 2025-09-07T06:46:09.9261576Z adding 'torch/_vendor/packaging/__init__.py' 2025-09-07T06:46:09.9264754Z adding 'torch/_vendor/packaging/_structures.py' 2025-09-07T06:46:09.9271428Z adding 'torch/_vendor/packaging/version.py' 2025-09-07T06:46:09.9277835Z adding 'torch/accelerator/__init__.py' 2025-09-07T06:46:09.9282032Z adding 'torch/accelerator/_utils.py' 2025-09-07T06:46:09.9286661Z adding 'torch/accelerator/memory.py' 2025-09-07T06:46:09.9290596Z adding 'torch/amp/__init__.py' 2025-09-07T06:46:09.9299240Z adding 'torch/amp/autocast_mode.py' 2025-09-07T06:46:09.9311230Z adding 'torch/amp/grad_scaler.py' 2025-09-07T06:46:09.9315770Z adding 'torch/ao/__init__.py' 2025-09-07T06:46:09.9319642Z adding 'torch/ao/nn/__init__.py' 2025-09-07T06:46:09.9323492Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-09-07T06:46:09.9327258Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-09-07T06:46:09.9331190Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-09-07T06:46:09.9334961Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-09-07T06:46:09.9338753Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-09-07T06:46:09.9347363Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-09-07T06:46:09.9352639Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-09-07T06:46:09.9356290Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-09-07T06:46:09.9360026Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-09-07T06:46:09.9363556Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-09-07T06:46:09.9367132Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-09-07T06:46:09.9370563Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-09-07T06:46:09.9374350Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-09-07T06:46:09.9377713Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-09-07T06:46:09.9381359Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-09-07T06:46:09.9385591Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-09-07T06:46:09.9389792Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-09-07T06:46:09.9393412Z adding 'torch/ao/nn/qat/__init__.py' 2025-09-07T06:46:09.9396855Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-09-07T06:46:09.9400313Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-09-07T06:46:09.9403434Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-09-07T06:46:09.9407101Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-09-07T06:46:09.9411573Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-09-07T06:46:09.9415898Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-09-07T06:46:09.9419750Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-09-07T06:46:09.9423453Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-09-07T06:46:09.9426985Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-09-07T06:46:09.9434918Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-09-07T06:46:09.9443685Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-09-07T06:46:09.9448231Z adding 'torch/ao/nn/quantized/__init__.py' 2025-09-07T06:46:09.9457537Z adding 'torch/ao/nn/quantized/functional.py' 2025-09-07T06:46:09.9463131Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-09-07T06:46:09.9466742Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-09-07T06:46:09.9472354Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-09-07T06:46:09.9477921Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-09-07T06:46:09.9493648Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-09-07T06:46:09.9499856Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-09-07T06:46:09.9505764Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-09-07T06:46:09.9509789Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-09-07T06:46:09.9520365Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-09-07T06:46:09.9525188Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-09-07T06:46:09.9531252Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-09-07T06:46:09.9536511Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-09-07T06:46:09.9543383Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-09-07T06:46:09.9548371Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-09-07T06:46:09.9552364Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-09-07T06:46:09.9556787Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-09-07T06:46:09.9561324Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-09-07T06:46:09.9565388Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-09-07T06:46:09.9570349Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-09-07T06:46:09.9574942Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-09-07T06:46:09.9583674Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-09-07T06:46:09.9588537Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-09-07T06:46:09.9594627Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-09-07T06:46:09.9599170Z adding 'torch/ao/nn/sparse/__init__.py' 2025-09-07T06:46:09.9603317Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-09-07T06:46:09.9608307Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-09-07T06:46:09.9612286Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-09-07T06:46:09.9616581Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-09-07T06:46:09.9621520Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-09-07T06:46:09.9625542Z adding 'torch/ao/ns/__init__.py' 2025-09-07T06:46:09.9633660Z adding 'torch/ao/ns/_numeric_suite.py' 2025-09-07T06:46:09.9653635Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-09-07T06:46:09.9659779Z adding 'torch/ao/ns/fx/__init__.py' 2025-09-07T06:46:09.9668364Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-09-07T06:46:09.9684450Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-09-07T06:46:09.9692075Z adding 'torch/ao/ns/fx/mappings.py' 2025-09-07T06:46:09.9710348Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-09-07T06:46:09.9715043Z adding 'torch/ao/ns/fx/ns_types.py' 2025-09-07T06:46:09.9719715Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-09-07T06:46:09.9725420Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-09-07T06:46:09.9732931Z adding 'torch/ao/ns/fx/utils.py' 2025-09-07T06:46:09.9739029Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-09-07T06:46:09.9743343Z adding 'torch/ao/pruning/__init__.py' 2025-09-07T06:46:09.9746288Z adding 'torch/ao/pruning/_mappings.py' 2025-09-07T06:46:09.9749937Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-09-07T06:46:09.9753476Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-09-07T06:46:09.9761238Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-09-07T06:46:09.9765235Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-09-07T06:46:09.9769951Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-09-07T06:46:09.9773920Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-09-07T06:46:09.9780387Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-09-07T06:46:09.9785559Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-09-07T06:46:09.9791597Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-09-07T06:46:09.9795775Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-09-07T06:46:09.9799233Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-09-07T06:46:09.9802698Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-09-07T06:46:09.9806864Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-09-07T06:46:09.9811725Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-09-07T06:46:09.9814834Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-09-07T06:46:09.9820899Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-09-07T06:46:09.9824698Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-09-07T06:46:09.9828025Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-09-07T06:46:09.9831535Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-09-07T06:46:09.9838387Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-09-07T06:46:09.9842166Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-09-07T06:46:09.9845786Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-09-07T06:46:09.9850326Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-09-07T06:46:09.9854637Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-09-07T06:46:09.9858241Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-09-07T06:46:09.9861720Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-09-07T06:46:09.9868076Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-09-07T06:46:09.9872041Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-09-07T06:46:09.9876224Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-09-07T06:46:09.9881367Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-09-07T06:46:09.9887365Z adding 'torch/ao/quantization/__init__.py' 2025-09-07T06:46:09.9892918Z adding 'torch/ao/quantization/_correct_bias.py' 2025-09-07T06:46:09.9898946Z adding 'torch/ao/quantization/_equalize.py' 2025-09-07T06:46:09.9904355Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-09-07T06:46:09.9912767Z adding 'torch/ao/quantization/fake_quantize.py' 2025-09-07T06:46:09.9918524Z adding 'torch/ao/quantization/fuse_modules.py' 2025-09-07T06:46:09.9924422Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-09-07T06:46:09.9952370Z adding 'torch/ao/quantization/observer.py' 2025-09-07T06:46:09.9963481Z adding 'torch/ao/quantization/qconfig.py' 2025-09-07T06:46:09.9971214Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-09-07T06:46:09.9975288Z adding 'torch/ao/quantization/quant_type.py' 2025-09-07T06:46:09.9981337Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-09-07T06:46:09.9993443Z adding 'torch/ao/quantization/quantize.py' 2025-09-07T06:46:10.0004835Z adding 'torch/ao/quantization/quantize_fx.py' 2025-09-07T06:46:10.0012379Z adding 'torch/ao/quantization/quantize_jit.py' 2025-09-07T06:46:10.0018270Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-09-07T06:46:10.0021973Z adding 'torch/ao/quantization/stubs.py' 2025-09-07T06:46:10.0034559Z adding 'torch/ao/quantization/utils.py' 2025-09-07T06:46:10.0040406Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-09-07T06:46:10.0049157Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-09-07T06:46:10.0054285Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-09-07T06:46:10.0065291Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-09-07T06:46:10.0072799Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-09-07T06:46:10.0077184Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-09-07T06:46:10.0081800Z adding 'torch/ao/quantization/backend_config/native.py' 2025-09-07T06:46:10.0088441Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-09-07T06:46:10.0093332Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-09-07T06:46:10.0097248Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-09-07T06:46:10.0103715Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-09-07T06:46:10.0107941Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-09-07T06:46:10.0112663Z adding 'torch/ao/quantization/fx/__init__.py' 2025-09-07T06:46:10.0123900Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-09-07T06:46:10.0141012Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-09-07T06:46:10.0161485Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-09-07T06:46:10.0184082Z adding 'torch/ao/quantization/fx/convert.py' 2025-09-07T06:46:10.0191961Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-09-07T06:46:10.0197018Z adding 'torch/ao/quantization/fx/fuse.py' 2025-09-07T06:46:10.0201891Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-09-07T06:46:10.0206165Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-09-07T06:46:10.0209401Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-09-07T06:46:10.0212429Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-09-07T06:46:10.0217560Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-09-07T06:46:10.0223323Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-09-07T06:46:10.0227050Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-09-07T06:46:10.0258583Z adding 'torch/ao/quantization/fx/prepare.py' 2025-09-07T06:46:10.0266959Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-09-07T06:46:10.0271770Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-09-07T06:46:10.0275231Z adding 'torch/ao/quantization/fx/tracer.py' 2025-09-07T06:46:10.0289310Z adding 'torch/ao/quantization/fx/utils.py' 2025-09-07T06:46:10.0294254Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-09-07T06:46:10.0319338Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-09-07T06:46:10.0332695Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-09-07T06:46:10.0339292Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-09-07T06:46:10.0351895Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-09-07T06:46:10.0357233Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-09-07T06:46:10.0368584Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-09-07T06:46:10.0375940Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-09-07T06:46:10.0380346Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-09-07T06:46:10.0385356Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-09-07T06:46:10.0390474Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-09-07T06:46:10.0394783Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-09-07T06:46:10.0400819Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-09-07T06:46:10.0411003Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-09-07T06:46:10.0424772Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-09-07T06:46:10.0435358Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-09-07T06:46:10.0440243Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-09-07T06:46:10.0448873Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-09-07T06:46:10.0453969Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-09-07T06:46:10.0457719Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-09-07T06:46:10.0462255Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-09-07T06:46:10.0467506Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-09-07T06:46:10.0471873Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-09-07T06:46:10.0490114Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-09-07T06:46:10.0498550Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-09-07T06:46:10.0511210Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-09-07T06:46:10.0516439Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-09-07T06:46:10.0528046Z adding 'torch/autograd/__init__.py' 2025-09-07T06:46:10.0533094Z adding 'torch/autograd/anomaly_mode.py' 2025-09-07T06:46:10.0538354Z adding 'torch/autograd/forward_ad.py' 2025-09-07T06:46:10.0552079Z adding 'torch/autograd/function.py' 2025-09-07T06:46:10.0569572Z adding 'torch/autograd/functional.py' 2025-09-07T06:46:10.0577023Z adding 'torch/autograd/grad_mode.py' 2025-09-07T06:46:10.0611674Z adding 'torch/autograd/gradcheck.py' 2025-09-07T06:46:10.0626416Z adding 'torch/autograd/graph.py' 2025-09-07T06:46:10.0646006Z adding 'torch/autograd/profiler.py' 2025-09-07T06:46:10.0653267Z adding 'torch/autograd/profiler_legacy.py' 2025-09-07T06:46:10.0669396Z adding 'torch/autograd/profiler_util.py' 2025-09-07T06:46:10.0673413Z adding 'torch/autograd/variable.py' 2025-09-07T06:46:10.0676937Z adding 'torch/autograd/_functions/__init__.py' 2025-09-07T06:46:10.0680585Z adding 'torch/autograd/_functions/tensor.py' 2025-09-07T06:46:10.0683802Z adding 'torch/autograd/_functions/utils.py' 2025-09-07T06:46:10.0688937Z adding 'torch/backends/__init__.py' 2025-09-07T06:46:10.0692680Z adding 'torch/backends/_coreml/__init__.py' 2025-09-07T06:46:10.0696582Z adding 'torch/backends/_coreml/preprocess.py' 2025-09-07T06:46:10.0700213Z adding 'torch/backends/_nnapi/__init__.py' 2025-09-07T06:46:10.0704623Z adding 'torch/backends/_nnapi/prepare.py' 2025-09-07T06:46:10.0728795Z adding 'torch/backends/_nnapi/serializer.py' 2025-09-07T06:46:10.0734393Z adding 'torch/backends/cpu/__init__.py' 2025-09-07T06:46:10.0741529Z adding 'torch/backends/cuda/__init__.py' 2025-09-07T06:46:10.0747285Z adding 'torch/backends/cudnn/__init__.py' 2025-09-07T06:46:10.0750854Z adding 'torch/backends/cudnn/rnn.py' 2025-09-07T06:46:10.0754868Z adding 'torch/backends/cusparselt/__init__.py' 2025-09-07T06:46:10.0758444Z adding 'torch/backends/kleidiai/__init__.py' 2025-09-07T06:46:10.0762088Z adding 'torch/backends/mha/__init__.py' 2025-09-07T06:46:10.0765917Z adding 'torch/backends/miopen/__init__.py' 2025-09-07T06:46:10.0769899Z adding 'torch/backends/mkl/__init__.py' 2025-09-07T06:46:10.0775989Z adding 'torch/backends/mkldnn/__init__.py' 2025-09-07T06:46:10.0782437Z adding 'torch/backends/mps/__init__.py' 2025-09-07T06:46:10.0788555Z adding 'torch/backends/nnpack/__init__.py' 2025-09-07T06:46:10.0792361Z adding 'torch/backends/openmp/__init__.py' 2025-09-07T06:46:10.0797432Z adding 'torch/backends/opt_einsum/__init__.py' 2025-09-07T06:46:10.0802115Z adding 'torch/backends/quantized/__init__.py' 2025-09-07T06:46:10.0805745Z adding 'torch/backends/xeon/__init__.py' 2025-09-07T06:46:10.0818964Z adding 'torch/backends/xeon/run_cpu.py' 2025-09-07T06:46:10.0824098Z adding 'torch/backends/xnnpack/__init__.py' 2025-09-07T06:46:10.1043263Z adding 'torch/bin/FileStoreTest.exe' 2025-09-07T06:46:10.1237020Z adding 'torch/bin/ProcessGroupGlooAsyncTest.exe' 2025-09-07T06:46:10.1483746Z adding 'torch/bin/ProcessGroupGlooTest.exe' 2025-09-07T06:46:10.1713475Z adding 'torch/bin/TCPStoreTest.exe' 2025-09-07T06:46:10.3136585Z adding 'torch/bin/protoc.exe' 2025-09-07T06:46:10.7327147Z adding 'torch/bin/test_api.exe' 2025-09-07T06:46:10.9922556Z adding 'torch/bin/test_jit.exe' 2025-09-07T06:46:11.1032540Z adding 'torch/bin/test_lazy.exe' 2025-09-07T06:46:11.2144214Z adding 'torch/bin/test_nativert.exe' 2025-09-07T06:46:11.2208150Z adding 'torch/compiler/__init__.py' 2025-09-07T06:46:11.2214931Z adding 'torch/compiler/_cache.py' 2025-09-07T06:46:11.2219685Z adding 'torch/compiler/config.py' 2025-09-07T06:46:11.2224295Z adding 'torch/contrib/__init__.py' 2025-09-07T06:46:11.2229790Z adding 'torch/contrib/_tensorboard_vis.py' 2025-09-07T06:46:11.2234969Z adding 'torch/cpu/__init__.py' 2025-09-07T06:46:11.2239097Z adding 'torch/cpu/amp/__init__.py' 2025-09-07T06:46:11.2242289Z adding 'torch/cpu/amp/autocast_mode.py' 2025-09-07T06:46:11.2245594Z adding 'torch/cpu/amp/grad_scaler.py' 2025-09-07T06:46:11.2250882Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-09-07T06:46:11.2274191Z adding 'torch/cuda/__init__.py' 2025-09-07T06:46:11.2278909Z adding 'torch/cuda/_gpu_trace.py' 2025-09-07T06:46:11.2289363Z adding 'torch/cuda/_memory_viz.py' 2025-09-07T06:46:11.2293069Z adding 'torch/cuda/_pin_memory_utils.py' 2025-09-07T06:46:11.2301509Z adding 'torch/cuda/_sanitizer.py' 2025-09-07T06:46:11.2308304Z adding 'torch/cuda/_utils.py' 2025-09-07T06:46:11.2311542Z adding 'torch/cuda/comm.py' 2025-09-07T06:46:11.2315567Z adding 'torch/cuda/gds.py' 2025-09-07T06:46:11.2326212Z adding 'torch/cuda/graphs.py' 2025-09-07T06:46:11.2331337Z adding 'torch/cuda/jiterator.py' 2025-09-07T06:46:11.2347920Z adding 'torch/cuda/memory.py' 2025-09-07T06:46:11.2352901Z adding 'torch/cuda/nccl.py' 2025-09-07T06:46:11.2356695Z adding 'torch/cuda/nvtx.py' 2025-09-07T06:46:11.2360297Z adding 'torch/cuda/profiler.py' 2025-09-07T06:46:11.2364226Z adding 'torch/cuda/random.py' 2025-09-07T06:46:11.2367166Z adding 'torch/cuda/sparse.py' 2025-09-07T06:46:11.2372190Z adding 'torch/cuda/streams.py' 2025-09-07T06:46:11.2384171Z adding 'torch/cuda/tunable.py' 2025-09-07T06:46:11.2388677Z adding 'torch/cuda/amp/__init__.py' 2025-09-07T06:46:11.2392130Z adding 'torch/cuda/amp/autocast_mode.py' 2025-09-07T06:46:11.2400719Z adding 'torch/cuda/amp/common.py' 2025-09-07T06:46:11.2401081Z adding 'torch/cuda/amp/grad_scaler.py' 2025-09-07T06:46:11.2403109Z adding 'torch/distributed/_C_stubs.py' 2025-09-07T06:46:11.2407144Z adding 'torch/distributed/__init__.py' 2025-09-07T06:46:11.2410461Z adding 'torch/distributed/_checkpointable.py' 2025-09-07T06:46:11.2413728Z adding 'torch/distributed/_composable_state.py' 2025-09-07T06:46:11.2417650Z adding 'torch/distributed/_dist2.py' 2025-09-07T06:46:11.2421850Z adding 'torch/distributed/_distributed_c10d.py' 2025-09-07T06:46:11.2437071Z adding 'torch/distributed/_functional_collectives.py' 2025-09-07T06:46:11.2441539Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-09-07T06:46:11.2445472Z adding 'torch/distributed/_serialization.py' 2025-09-07T06:46:11.2456080Z adding 'torch/distributed/_state_dict_utils.py' 2025-09-07T06:46:11.2462080Z adding 'torch/distributed/argparse_util.py' 2025-09-07T06:46:11.2465985Z adding 'torch/distributed/c10d_logger.py' 2025-09-07T06:46:11.2471920Z adding 'torch/distributed/collective_utils.py' 2025-09-07T06:46:11.2475395Z adding 'torch/distributed/constants.py' 2025-09-07T06:46:11.2493926Z adding 'torch/distributed/device_mesh.py' 2025-09-07T06:46:11.2568005Z adding 'torch/distributed/distributed_c10d.py' 2025-09-07T06:46:11.2578068Z adding 'torch/distributed/launch.py' 2025-09-07T06:46:11.2581364Z adding 'torch/distributed/logging_handlers.py' 2025-09-07T06:46:11.2585510Z adding 'torch/distributed/remote_device.py' 2025-09-07T06:46:11.2591031Z adding 'torch/distributed/rendezvous.py' 2025-09-07T06:46:11.2604692Z adding 'torch/distributed/run.py' 2025-09-07T06:46:11.2611833Z adding 'torch/distributed/utils.py' 2025-09-07T06:46:11.2616143Z adding 'torch/distributed/_composable/__init__.py' 2025-09-07T06:46:11.2620331Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-09-07T06:46:11.2625750Z adding 'torch/distributed/_composable/contract.py' 2025-09-07T06:46:11.2631365Z adding 'torch/distributed/_composable/replicate.py' 2025-09-07T06:46:11.2638281Z adding 'torch/distributed/_composable/replicate_with_fsdp.py' 2025-09-07T06:46:11.2642511Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-09-07T06:46:11.2645690Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-09-07T06:46:11.2649277Z adding 'torch/distributed/_shard/__init__.py' 2025-09-07T06:46:11.2652571Z adding 'torch/distributed/_shard/_utils.py' 2025-09-07T06:46:11.2658507Z adding 'torch/distributed/_shard/api.py' 2025-09-07T06:46:11.2662496Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-09-07T06:46:11.2666055Z adding 'torch/distributed/_shard/metadata.py' 2025-09-07T06:46:11.2669506Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-09-07T06:46:11.2672536Z adding 'torch/distributed/_shard/sharder.py' 2025-09-07T06:46:11.2676509Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-09-07T06:46:11.2680878Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-09-07T06:46:11.2684829Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-09-07T06:46:11.2692172Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-09-07T06:46:11.2710669Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-09-07T06:46:11.2715306Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-09-07T06:46:11.2718388Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-09-07T06:46:11.2722330Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-09-07T06:46:11.2728065Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-09-07T06:46:11.2732473Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-09-07T06:46:11.2738698Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-09-07T06:46:11.2743039Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-09-07T06:46:11.2747353Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-09-07T06:46:11.2751192Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-09-07T06:46:11.2755328Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-09-07T06:46:11.2758761Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-09-07T06:46:11.2763416Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-09-07T06:46:11.2767405Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-09-07T06:46:11.2771149Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-09-07T06:46:11.2775252Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-09-07T06:46:11.2780330Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-09-07T06:46:11.2786008Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-09-07T06:46:11.2791717Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-09-07T06:46:11.2795699Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-09-07T06:46:11.2801870Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-09-07T06:46:11.2807704Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-09-07T06:46:11.2815360Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-09-07T06:46:11.2819473Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-09-07T06:46:11.2823474Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-09-07T06:46:11.2844896Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-09-07T06:46:11.2857475Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-09-07T06:46:11.2862266Z adding 'torch/distributed/_tensor/__init__.py' 2025-09-07T06:46:11.2865294Z adding 'torch/distributed/_tensor/api.py' 2025-09-07T06:46:11.2868168Z adding 'torch/distributed/_tensor/placement_types.py' 2025-09-07T06:46:11.2871897Z adding 'torch/distributed/_tools/__init__.py' 2025-09-07T06:46:11.2875032Z adding 'torch/distributed/_tools/common_utils.py' 2025-09-07T06:46:11.2879903Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-09-07T06:46:11.2888587Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-09-07T06:46:11.2894688Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-09-07T06:46:11.2909858Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-09-07T06:46:11.2916506Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-09-07T06:46:11.2921905Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-09-07T06:46:11.2930266Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-09-07T06:46:11.2945911Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-09-07T06:46:11.2952458Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-09-07T06:46:11.2956349Z adding 'torch/distributed/algorithms/__init__.py' 2025-09-07T06:46:11.2962851Z adding 'torch/distributed/algorithms/join.py' 2025-09-07T06:46:11.2966930Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-09-07T06:46:11.2972967Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-09-07T06:46:11.2977035Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-09-07T06:46:11.2981579Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-09-07T06:46:11.2985592Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-09-07T06:46:11.2989294Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-09-07T06:46:11.2993076Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-09-07T06:46:11.2997239Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-09-07T06:46:11.3002034Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-09-07T06:46:11.3009520Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-09-07T06:46:11.3013243Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-09-07T06:46:11.3018090Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-09-07T06:46:11.3022296Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-09-07T06:46:11.3026970Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-09-07T06:46:11.3032475Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-09-07T06:46:11.3045760Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-09-07T06:46:11.3051257Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-09-07T06:46:11.3055361Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-09-07T06:46:11.3059397Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-09-07T06:46:11.3065077Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-09-07T06:46:11.3069096Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-09-07T06:46:11.3073403Z adding 'torch/distributed/autograd/__init__.py' 2025-09-07T06:46:11.3077952Z adding 'torch/distributed/checkpoint/__init__.py' 2025-09-07T06:46:11.3081216Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-09-07T06:46:11.3087044Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-09-07T06:46:11.3090976Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-09-07T06:46:11.3094672Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-09-07T06:46:11.3105377Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-09-07T06:46:11.3109796Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-09-07T06:46:11.3113400Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-09-07T06:46:11.3118207Z adding 'torch/distributed/checkpoint/_extension.py' 2025-09-07T06:46:11.3122664Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-09-07T06:46:11.3126503Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-09-07T06:46:11.3130164Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-09-07T06:46:11.3136622Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-09-07T06:46:11.3141500Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-09-07T06:46:11.3147496Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-09-07T06:46:11.3151049Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-09-07T06:46:11.3155564Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-09-07T06:46:11.3158695Z adding 'torch/distributed/checkpoint/_version.py' 2025-09-07T06:46:11.3161909Z adding 'torch/distributed/checkpoint/api.py' 2025-09-07T06:46:11.3171707Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-09-07T06:46:11.3184883Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-09-07T06:46:11.3191107Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-09-07T06:46:11.3197916Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-09-07T06:46:11.3202166Z adding 'torch/distributed/checkpoint/logger.py' 2025-09-07T06:46:11.3205380Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-09-07T06:46:11.3209564Z adding 'torch/distributed/checkpoint/metadata.py' 2025-09-07T06:46:11.3216095Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-09-07T06:46:11.3223535Z adding 'torch/distributed/checkpoint/planner.py' 2025-09-07T06:46:11.3230778Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-09-07T06:46:11.3236592Z adding 'torch/distributed/checkpoint/quantized_hf_storage.py' 2025-09-07T06:46:11.3240252Z adding 'torch/distributed/checkpoint/resharding.py' 2025-09-07T06:46:11.3248441Z adding 'torch/distributed/checkpoint/staging.py' 2025-09-07T06:46:11.3267064Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-09-07T06:46:11.3274724Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-09-07T06:46:11.3282114Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-09-07T06:46:11.3285681Z adding 'torch/distributed/checkpoint/stateful.py' 2025-09-07T06:46:11.3290415Z adding 'torch/distributed/checkpoint/storage.py' 2025-09-07T06:46:11.3297144Z adding 'torch/distributed/checkpoint/utils.py' 2025-09-07T06:46:11.3302137Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-09-07T06:46:11.3307295Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-09-07T06:46:11.3311623Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-09-07T06:46:11.3317455Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-09-07T06:46:11.3322569Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-09-07T06:46:11.3326914Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-09-07T06:46:11.3331955Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-09-07T06:46:11.3335447Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-09-07T06:46:11.3340213Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-09-07T06:46:11.3343583Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-09-07T06:46:11.3346787Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-09-07T06:46:11.3351508Z adding 'torch/distributed/elastic/__init__.py' 2025-09-07T06:46:11.3354798Z adding 'torch/distributed/elastic/control_plane.py' 2025-09-07T06:46:11.3358557Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-09-07T06:46:11.3362557Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-09-07T06:46:11.3376901Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-09-07T06:46:11.3381296Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-09-07T06:46:11.3388169Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-09-07T06:46:11.3393603Z adding 'torch/distributed/elastic/events/__init__.py' 2025-09-07T06:46:11.3397385Z adding 'torch/distributed/elastic/events/api.py' 2025-09-07T06:46:11.3400494Z adding 'torch/distributed/elastic/events/handlers.py' 2025-09-07T06:46:11.3406151Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-09-07T06:46:11.3410563Z adding 'torch/distributed/elastic/metrics/api.py' 2025-09-07T06:46:11.3416602Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-09-07T06:46:11.3429125Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-09-07T06:46:11.3433614Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-09-07T06:46:11.3437806Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-09-07T06:46:11.3445712Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-09-07T06:46:11.3450615Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-09-07T06:46:11.3453730Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-09-07T06:46:11.3457564Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-09-07T06:46:11.3460635Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-09-07T06:46:11.3464372Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-09-07T06:46:11.3469669Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-09-07T06:46:11.3473089Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-09-07T06:46:11.3479076Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-09-07T06:46:11.3485010Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-09-07T06:46:11.3500523Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-09-07T06:46:11.3516606Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-09-07T06:46:11.3522158Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-09-07T06:46:11.3527321Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-09-07T06:46:11.3532355Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-09-07T06:46:11.3536057Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-09-07T06:46:11.3540969Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-09-07T06:46:11.3546416Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-09-07T06:46:11.3550942Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-09-07T06:46:11.3556836Z adding 'torch/distributed/elastic/timer/api.py' 2025-09-07T06:46:11.3560856Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-09-07T06:46:11.3568399Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-09-07T06:46:11.3573261Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-09-07T06:46:11.3577650Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-09-07T06:46:11.3581420Z adding 'torch/distributed/elastic/utils/api.py' 2025-09-07T06:46:11.3586505Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-09-07T06:46:11.3590100Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-09-07T06:46:11.3593936Z adding 'torch/distributed/elastic/utils/logging.py' 2025-09-07T06:46:11.3598794Z adding 'torch/distributed/elastic/utils/store.py' 2025-09-07T06:46:11.3602920Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-09-07T06:46:11.3606258Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-09-07T06:46:11.3610496Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-09-07T06:46:11.3614490Z adding 'torch/distributed/fsdp/__init__.py' 2025-09-07T06:46:11.3624096Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-09-07T06:46:11.3629025Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-09-07T06:46:11.3632674Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-09-07T06:46:11.3639389Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-09-07T06:46:11.3684659Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-09-07T06:46:11.3691012Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-09-07T06:46:11.3708085Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-09-07T06:46:11.3712306Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-09-07T06:46:11.3744049Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-09-07T06:46:11.3769544Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-09-07T06:46:11.3775044Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-09-07T06:46:11.3786358Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-09-07T06:46:11.3792567Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-09-07T06:46:11.3796781Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-09-07T06:46:11.3803007Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-09-07T06:46:11.3808087Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-09-07T06:46:11.3816015Z adding 'torch/distributed/fsdp/api.py' 2025-09-07T06:46:11.3848965Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-09-07T06:46:11.3857944Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-09-07T06:46:11.3867355Z adding 'torch/distributed/fsdp/wrap.py' 2025-09-07T06:46:11.3871894Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-09-07T06:46:11.3876113Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-09-07T06:46:11.3886588Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-09-07T06:46:11.3891408Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-09-07T06:46:11.3896685Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-09-07T06:46:11.3911470Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-09-07T06:46:11.3925689Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-09-07T06:46:11.3933380Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-09-07T06:46:11.3945686Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-09-07T06:46:11.3950171Z adding 'torch/distributed/launcher/__init__.py' 2025-09-07T06:46:11.3956077Z adding 'torch/distributed/launcher/api.py' 2025-09-07T06:46:11.3960145Z adding 'torch/distributed/nn/__init__.py' 2025-09-07T06:46:11.3966155Z adding 'torch/distributed/nn/functional.py' 2025-09-07T06:46:11.3970186Z adding 'torch/distributed/nn/api/__init__.py' 2025-09-07T06:46:11.3979964Z adding 'torch/distributed/nn/api/remote_module.py' 2025-09-07T06:46:11.3984458Z adding 'torch/distributed/nn/jit/__init__.py' 2025-09-07T06:46:11.3988517Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-09-07T06:46:11.3992290Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-09-07T06:46:11.3996016Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-09-07T06:46:11.4000150Z adding 'torch/distributed/optim/__init__.py' 2025-09-07T06:46:11.4003215Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-09-07T06:46:11.4007332Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-09-07T06:46:11.4011194Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-09-07T06:46:11.4015140Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-09-07T06:46:11.4019474Z adding 'torch/distributed/optim/functional_adam.py' 2025-09-07T06:46:11.4023669Z adding 'torch/distributed/optim/functional_adamax.py' 2025-09-07T06:46:11.4028057Z adding 'torch/distributed/optim/functional_adamw.py' 2025-09-07T06:46:11.4032177Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-09-07T06:46:11.4036097Z adding 'torch/distributed/optim/functional_rprop.py' 2025-09-07T06:46:11.4040329Z adding 'torch/distributed/optim/functional_sgd.py' 2025-09-07T06:46:11.4046563Z adding 'torch/distributed/optim/named_optimizer.py' 2025-09-07T06:46:11.4052267Z adding 'torch/distributed/optim/optimizer.py' 2025-09-07T06:46:11.4056496Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-09-07T06:46:11.4059914Z adding 'torch/distributed/optim/utils.py' 2025-09-07T06:46:11.4084760Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-09-07T06:46:11.4089825Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-09-07T06:46:11.4109905Z adding 'torch/distributed/pipelining/_IR.py' 2025-09-07T06:46:11.4114210Z adding 'torch/distributed/pipelining/__init__.py' 2025-09-07T06:46:11.4121158Z adding 'torch/distributed/pipelining/_backward.py' 2025-09-07T06:46:11.4124594Z adding 'torch/distributed/pipelining/_debug.py' 2025-09-07T06:46:11.4129271Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-09-07T06:46:11.4132581Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-09-07T06:46:11.4136490Z adding 'torch/distributed/pipelining/_utils.py' 2025-09-07T06:46:11.4144507Z adding 'torch/distributed/pipelining/microbatch.py' 2025-09-07T06:46:11.4182822Z adding 'torch/distributed/pipelining/schedules.py' 2025-09-07T06:46:11.4209392Z adding 'torch/distributed/pipelining/stage.py' 2025-09-07T06:46:11.4217959Z adding 'torch/distributed/rpc/__init__.py' 2025-09-07T06:46:11.4221683Z adding 'torch/distributed/rpc/_utils.py' 2025-09-07T06:46:11.4234349Z adding 'torch/distributed/rpc/api.py' 2025-09-07T06:46:11.4242906Z adding 'torch/distributed/rpc/backend_registry.py' 2025-09-07T06:46:11.4246861Z adding 'torch/distributed/rpc/constants.py' 2025-09-07T06:46:11.4251731Z adding 'torch/distributed/rpc/functions.py' 2025-09-07T06:46:11.4258054Z adding 'torch/distributed/rpc/internal.py' 2025-09-07T06:46:11.4263729Z adding 'torch/distributed/rpc/options.py' 2025-09-07T06:46:11.4267956Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-09-07T06:46:11.4272976Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-09-07T06:46:11.4277118Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-09-07T06:46:11.4281039Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-09-07T06:46:11.4284922Z adding 'torch/distributed/tensor/__init__.py' 2025-09-07T06:46:11.4303450Z adding 'torch/distributed/tensor/_api.py' 2025-09-07T06:46:11.4311002Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-09-07T06:46:11.4320069Z adding 'torch/distributed/tensor/_dispatch.py' 2025-09-07T06:46:11.4326071Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-09-07T06:46:11.4335782Z adding 'torch/distributed/tensor/_op_schema.py' 2025-09-07T06:46:11.4344396Z adding 'torch/distributed/tensor/_random.py' 2025-09-07T06:46:11.4351501Z adding 'torch/distributed/tensor/_redistribute.py' 2025-09-07T06:46:11.4361918Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-09-07T06:46:11.4368212Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-09-07T06:46:11.4373092Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-09-07T06:46:11.4380567Z adding 'torch/distributed/tensor/_utils.py' 2025-09-07T06:46:11.4384004Z adding 'torch/distributed/tensor/device_mesh.py' 2025-09-07T06:46:11.4394460Z adding 'torch/distributed/tensor/placement_types.py' 2025-09-07T06:46:11.4398910Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-09-07T06:46:11.4404805Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-09-07T06:46:11.4408688Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-09-07T06:46:11.4413315Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-09-07T06:46:11.4418569Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-09-07T06:46:11.4431732Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-09-07T06:46:11.4442604Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-09-07T06:46:11.4451897Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-09-07T06:46:11.4455693Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-09-07T06:46:11.4471245Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-09-07T06:46:11.4483656Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-09-07T06:46:11.4490947Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-09-07T06:46:11.4495200Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-09-07T06:46:11.4504352Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-09-07T06:46:11.4508762Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-09-07T06:46:11.4513614Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-09-07T06:46:11.4517885Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-09-07T06:46:11.4536030Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-09-07T06:46:11.4543147Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-09-07T06:46:11.4547785Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-09-07T06:46:11.4555655Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-09-07T06:46:11.4560622Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-09-07T06:46:11.4563271Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-09-07T06:46:11.4567619Z adding 'torch/distributed/tensor/parallel/api.py' 2025-09-07T06:46:11.4571550Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-09-07T06:46:11.4577772Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-09-07T06:46:11.4581840Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-09-07T06:46:11.4588983Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-09-07T06:46:11.4599166Z adding 'torch/distributed/tensor/parallel/style.py' 2025-09-07T06:46:11.4605871Z adding 'torch/distributions/__init__.py' 2025-09-07T06:46:11.4609997Z adding 'torch/distributions/bernoulli.py' 2025-09-07T06:46:11.4613731Z adding 'torch/distributions/beta.py' 2025-09-07T06:46:11.4618142Z adding 'torch/distributions/binomial.py' 2025-09-07T06:46:11.4622562Z adding 'torch/distributions/categorical.py' 2025-09-07T06:46:11.4626377Z adding 'torch/distributions/cauchy.py' 2025-09-07T06:46:11.4629568Z adding 'torch/distributions/chi2.py' 2025-09-07T06:46:11.4634525Z adding 'torch/distributions/constraint_registry.py' 2025-09-07T06:46:11.4642046Z adding 'torch/distributions/constraints.py' 2025-09-07T06:46:11.4647651Z adding 'torch/distributions/continuous_bernoulli.py' 2025-09-07T06:46:11.4651741Z adding 'torch/distributions/dirichlet.py' 2025-09-07T06:46:11.4657448Z adding 'torch/distributions/distribution.py' 2025-09-07T06:46:11.4661244Z adding 'torch/distributions/exp_family.py' 2025-09-07T06:46:11.4664807Z adding 'torch/distributions/exponential.py' 2025-09-07T06:46:11.4668523Z adding 'torch/distributions/fishersnedecor.py' 2025-09-07T06:46:11.4672214Z adding 'torch/distributions/gamma.py' 2025-09-07T06:46:11.4676311Z adding 'torch/distributions/generalized_pareto.py' 2025-09-07T06:46:11.4680476Z adding 'torch/distributions/geometric.py' 2025-09-07T06:46:11.4684089Z adding 'torch/distributions/gumbel.py' 2025-09-07T06:46:11.4687588Z adding 'torch/distributions/half_cauchy.py' 2025-09-07T06:46:11.4691004Z adding 'torch/distributions/half_normal.py' 2025-09-07T06:46:11.4694823Z adding 'torch/distributions/independent.py' 2025-09-07T06:46:11.4698365Z adding 'torch/distributions/inverse_gamma.py' 2025-09-07T06:46:11.4708577Z adding 'torch/distributions/kl.py' 2025-09-07T06:46:11.4712972Z adding 'torch/distributions/kumaraswamy.py' 2025-09-07T06:46:11.4716737Z adding 'torch/distributions/laplace.py' 2025-09-07T06:46:11.4721382Z adding 'torch/distributions/lkj_cholesky.py' 2025-09-07T06:46:11.4724921Z adding 'torch/distributions/log_normal.py' 2025-09-07T06:46:11.4728359Z adding 'torch/distributions/logistic_normal.py' 2025-09-07T06:46:11.4733534Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-09-07T06:46:11.4773402Z adding 'torch/distributions/mixture_same_family.py' 2025-09-07T06:46:11.4777706Z adding 'torch/distributions/multinomial.py' 2025-09-07T06:46:11.4783302Z adding 'torch/distributions/multivariate_normal.py' 2025-09-07T06:46:11.4787951Z adding 'torch/distributions/negative_binomial.py' 2025-09-07T06:46:11.4791817Z adding 'torch/distributions/normal.py' 2025-09-07T06:46:11.4795847Z adding 'torch/distributions/one_hot_categorical.py' 2025-09-07T06:46:11.4799410Z adding 'torch/distributions/pareto.py' 2025-09-07T06:46:11.4802862Z adding 'torch/distributions/poisson.py' 2025-09-07T06:46:11.4807022Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-09-07T06:46:11.4811167Z adding 'torch/distributions/relaxed_categorical.py' 2025-09-07T06:46:11.4815468Z adding 'torch/distributions/studentT.py' 2025-09-07T06:46:11.4820290Z adding 'torch/distributions/transformed_distribution.py' 2025-09-07T06:46:11.4833596Z adding 'torch/distributions/transforms.py' 2025-09-07T06:46:11.4838188Z adding 'torch/distributions/uniform.py' 2025-09-07T06:46:11.4843124Z adding 'torch/distributions/utils.py' 2025-09-07T06:46:11.4847959Z adding 'torch/distributions/von_mises.py' 2025-09-07T06:46:11.4851767Z adding 'torch/distributions/weibull.py' 2025-09-07T06:46:11.4857586Z adding 'torch/distributions/wishart.py' 2025-09-07T06:46:11.4868059Z adding 'torch/export/__init__.py' 2025-09-07T06:46:11.4876279Z adding 'torch/export/_draft_export.py' 2025-09-07T06:46:11.4880617Z adding 'torch/export/_leakage_detection_utils.py' 2025-09-07T06:46:11.4884092Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-09-07T06:46:11.4888404Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-09-07T06:46:11.4892016Z adding 'torch/export/_safeguard.py' 2025-09-07T06:46:11.4899100Z adding 'torch/export/_swap.py' 2025-09-07T06:46:11.4932271Z adding 'torch/export/_trace.py' 2025-09-07T06:46:11.4937761Z adding 'torch/export/_tree_utils.py' 2025-09-07T06:46:11.4945217Z adding 'torch/export/_unlift.py' 2025-09-07T06:46:11.4948733Z adding 'torch/export/_wrapper_utils.py' 2025-09-07T06:46:11.4951593Z adding 'torch/export/custom_obj.py' 2025-09-07T06:46:11.4954768Z adding 'torch/export/custom_ops.py' 2025-09-07T06:46:11.4958862Z adding 'torch/export/decomp_utils.py' 2025-09-07T06:46:11.4978674Z adding 'torch/export/dynamic_shapes.py' 2025-09-07T06:46:11.5003450Z adding 'torch/export/exported_program.py' 2025-09-07T06:46:11.5013324Z adding 'torch/export/graph_signature.py' 2025-09-07T06:46:11.5040652Z adding 'torch/export/unflatten.py' 2025-09-07T06:46:11.5050477Z adding 'torch/export/experimental/__init__.py' 2025-09-07T06:46:11.5055515Z adding 'torch/export/experimental/_utils.py' 2025-09-07T06:46:11.5060210Z adding 'torch/export/passes/__init__.py' 2025-09-07T06:46:11.5064056Z adding 'torch/export/pt2_archive/__init__.py' 2025-09-07T06:46:11.5077488Z adding 'torch/export/pt2_archive/_package.py' 2025-09-07T06:46:11.5082130Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-09-07T06:46:11.5085485Z adding 'torch/export/pt2_archive/constants.py' 2025-09-07T06:46:11.5098521Z adding 'torch/fft/__init__.py' 2025-09-07T06:46:11.5103773Z adding 'torch/func/__init__.py' 2025-09-07T06:46:11.5110893Z adding 'torch/futures/__init__.py' 2025-09-07T06:46:11.5116269Z adding 'torch/fx/__init__.py' 2025-09-07T06:46:11.5119610Z adding 'torch/fx/_compatibility.py' 2025-09-07T06:46:11.5127988Z adding 'torch/fx/_graph_pickler.py' 2025-09-07T06:46:11.5133436Z adding 'torch/fx/_lazy_graph_module.py' 2025-09-07T06:46:11.5137318Z adding 'torch/fx/_pytree.py' 2025-09-07T06:46:11.5157069Z adding 'torch/fx/_symbolic_trace.py' 2025-09-07T06:46:11.5161706Z adding 'torch/fx/_utils.py' 2025-09-07T06:46:11.5164956Z adding 'torch/fx/annotate.py' 2025-09-07T06:46:11.5167980Z adding 'torch/fx/config.py' 2025-09-07T06:46:11.5197816Z adding 'torch/fx/graph.py' 2025-09-07T06:46:11.5215794Z adding 'torch/fx/graph_module.py' 2025-09-07T06:46:11.5220413Z adding 'torch/fx/immutable_collections.py' 2025-09-07T06:46:11.5228896Z adding 'torch/fx/interpreter.py' 2025-09-07T06:46:11.5244042Z adding 'torch/fx/node.py' 2025-09-07T06:46:11.5254708Z adding 'torch/fx/operator_schemas.py' 2025-09-07T06:46:11.5268068Z adding 'torch/fx/proxy.py' 2025-09-07T06:46:11.5276697Z adding 'torch/fx/subgraph_rewriter.py' 2025-09-07T06:46:11.5280574Z adding 'torch/fx/tensor_type.py' 2025-09-07T06:46:11.5286392Z adding 'torch/fx/traceback.py' 2025-09-07T06:46:11.5290930Z adding 'torch/fx/experimental/__init__.py' 2025-09-07T06:46:11.5294474Z adding 'torch/fx/experimental/_backward_state.py' 2025-09-07T06:46:11.5298493Z adding 'torch/fx/experimental/_config.py' 2025-09-07T06:46:11.5301504Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-09-07T06:46:11.5305794Z adding 'torch/fx/experimental/_dynamism.py' 2025-09-07T06:46:11.5321829Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-09-07T06:46:11.5329205Z adding 'torch/fx/experimental/const_fold.py' 2025-09-07T06:46:11.5332522Z adding 'torch/fx/experimental/debug.py' 2025-09-07T06:46:11.5344212Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-09-07T06:46:11.5349551Z adding 'torch/fx/experimental/merge_matmul.py' 2025-09-07T06:46:11.5355501Z adding 'torch/fx/experimental/meta_tracer.py' 2025-09-07T06:46:11.5359693Z adding 'torch/fx/experimental/normalize.py' 2025-09-07T06:46:11.5367448Z adding 'torch/fx/experimental/optimization.py' 2025-09-07T06:46:11.5373614Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-09-07T06:46:11.5410255Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-09-07T06:46:11.5421121Z adding 'torch/fx/experimental/recording.py' 2025-09-07T06:46:11.5424699Z adding 'torch/fx/experimental/refinement_types.py' 2025-09-07T06:46:11.5428880Z adding 'torch/fx/experimental/rewriter.py' 2025-09-07T06:46:11.5433146Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-09-07T06:46:11.5454023Z adding 'torch/fx/experimental/sym_node.py' 2025-09-07T06:46:11.5584503Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-09-07T06:46:11.5596106Z adding 'torch/fx/experimental/unify_refinements.py' 2025-09-07T06:46:11.5609351Z adding 'torch/fx/experimental/validator.py' 2025-09-07T06:46:11.5614678Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-09-07T06:46:11.5620632Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-09-07T06:46:11.5635894Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-09-07T06:46:11.5650968Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-09-07T06:46:11.5654983Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-09-07T06:46:11.5661236Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-09-07T06:46:11.5664916Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-09-07T06:46:11.5668132Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-09-07T06:46:11.5672019Z adding 'torch/fx/experimental/unification/__init__.py' 2025-09-07T06:46:11.5675622Z adding 'torch/fx/experimental/unification/core.py' 2025-09-07T06:46:11.5678699Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-09-07T06:46:11.5682385Z adding 'torch/fx/experimental/unification/match.py' 2025-09-07T06:46:11.5686309Z adding 'torch/fx/experimental/unification/more.py' 2025-09-07T06:46:11.5692036Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-09-07T06:46:11.5696065Z adding 'torch/fx/experimental/unification/utils.py' 2025-09-07T06:46:11.5699526Z adding 'torch/fx/experimental/unification/variable.py' 2025-09-07T06:46:11.5703601Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-09-07T06:46:11.5707576Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-09-07T06:46:11.5711256Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-09-07T06:46:11.5717958Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-09-07T06:46:11.5722425Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-09-07T06:46:11.5726235Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-09-07T06:46:11.5730283Z adding 'torch/fx/passes/__init__.py' 2025-09-07T06:46:11.5737495Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-09-07T06:46:11.5741383Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-09-07T06:46:11.5745840Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-09-07T06:46:11.5753292Z adding 'torch/fx/passes/graph_drawer.py' 2025-09-07T06:46:11.5758153Z adding 'torch/fx/passes/graph_manipulation.py' 2025-09-07T06:46:11.5763451Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-09-07T06:46:11.5775914Z adding 'torch/fx/passes/net_min_base.py' 2025-09-07T06:46:11.5781723Z adding 'torch/fx/passes/operator_support.py' 2025-09-07T06:46:11.5785780Z adding 'torch/fx/passes/param_fetch.py' 2025-09-07T06:46:11.5790641Z adding 'torch/fx/passes/pass_manager.py' 2025-09-07T06:46:11.5804597Z adding 'torch/fx/passes/reinplace.py' 2025-09-07T06:46:11.5815684Z adding 'torch/fx/passes/runtime_assert.py' 2025-09-07T06:46:11.5821254Z adding 'torch/fx/passes/shape_prop.py' 2025-09-07T06:46:11.5831660Z adding 'torch/fx/passes/split_module.py' 2025-09-07T06:46:11.5838035Z adding 'torch/fx/passes/split_utils.py' 2025-09-07T06:46:11.5850734Z adding 'torch/fx/passes/splitter_base.py' 2025-09-07T06:46:11.5857246Z adding 'torch/fx/passes/tools_common.py' 2025-09-07T06:46:11.5861288Z adding 'torch/fx/passes/backends/__init__.py' 2025-09-07T06:46:11.5864732Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-09-07T06:46:11.5868372Z adding 'torch/fx/passes/dialect/__init__.py' 2025-09-07T06:46:11.5871847Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-09-07T06:46:11.5876066Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-09-07T06:46:11.5879830Z adding 'torch/fx/passes/infra/__init__.py' 2025-09-07T06:46:11.5886857Z adding 'torch/fx/passes/infra/partitioner.py' 2025-09-07T06:46:11.5890702Z adding 'torch/fx/passes/infra/pass_base.py' 2025-09-07T06:46:11.5896378Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-09-07T06:46:11.5900270Z adding 'torch/fx/passes/tests/__init__.py' 2025-09-07T06:46:11.5903600Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-09-07T06:46:11.5907211Z adding 'torch/fx/passes/utils/__init__.py' 2025-09-07T06:46:11.5910789Z adding 'torch/fx/passes/utils/common.py' 2025-09-07T06:46:11.5916790Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-09-07T06:46:11.5924370Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-09-07T06:46:11.5928776Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-09-07T06:46:11.5933138Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-09-07T06:46:11.5942563Z adding 'torch/include/advisor-annotate.h' 2025-09-07T06:46:11.5955942Z adding 'torch/include/cpuinfo.h' 2025-09-07T06:46:11.5960317Z adding 'torch/include/dnnl.h' 2025-09-07T06:46:11.5963334Z adding 'torch/include/dnnl.hpp' 2025-09-07T06:46:11.5966330Z adding 'torch/include/dnnl_config.h' 2025-09-07T06:46:11.5969322Z adding 'torch/include/dnnl_debug.h' 2025-09-07T06:46:11.5972293Z adding 'torch/include/dnnl_ocl.h' 2025-09-07T06:46:11.5975286Z adding 'torch/include/dnnl_ocl.hpp' 2025-09-07T06:46:11.5978254Z adding 'torch/include/dnnl_sycl.h' 2025-09-07T06:46:11.5981219Z adding 'torch/include/dnnl_sycl.hpp' 2025-09-07T06:46:11.5984339Z adding 'torch/include/dnnl_sycl_types.h' 2025-09-07T06:46:11.5987407Z adding 'torch/include/dnnl_threadpool.h' 2025-09-07T06:46:11.5990430Z adding 'torch/include/dnnl_threadpool.hpp' 2025-09-07T06:46:11.5993432Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-09-07T06:46:11.5996410Z adding 'torch/include/dnnl_types.h' 2025-09-07T06:46:11.5999349Z adding 'torch/include/dnnl_version.h' 2025-09-07T06:46:11.6002253Z adding 'torch/include/experiments-config.h' 2025-09-07T06:46:11.6004948Z adding 'torch/include/fp16.h' 2025-09-07T06:46:11.6010060Z adding 'torch/include/fxdiv.h' 2025-09-07T06:46:11.6014046Z adding 'torch/include/ittnotify-zca.h' 2025-09-07T06:46:11.6059484Z adding 'torch/include/ittnotify.h' 2025-09-07T06:46:11.6073844Z adding 'torch/include/jitprofiling.h' 2025-09-07T06:46:11.6077731Z adding 'torch/include/libittnotify.h' 2025-09-07T06:46:11.6080889Z adding 'torch/include/libshm.h' 2025-09-07T06:46:11.6090900Z adding 'torch/include/psimd.h' 2025-09-07T06:46:11.6105916Z adding 'torch/include/pthreadpool.h' 2025-09-07T06:46:11.6145447Z adding 'torch/include/sleef.h' 2025-09-07T06:46:11.6188275Z adding 'torch/include/xnnpack.h' 2025-09-07T06:46:11.6200716Z adding 'torch/include/ATen/ATen.h' 2025-09-07T06:46:11.6204948Z adding 'torch/include/ATen/AccumulateType.h' 2025-09-07T06:46:11.6208258Z adding 'torch/include/ATen/ArrayRef.h' 2025-09-07T06:46:11.6210855Z adding 'torch/include/ATen/Backend.h' 2025-09-07T06:46:11.6213642Z adding 'torch/include/ATen/Backtrace.h' 2025-09-07T06:46:11.6216576Z adding 'torch/include/ATen/BlasBackend.h' 2025-09-07T06:46:11.6221926Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-09-07T06:46:11.6225605Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-09-07T06:46:11.6228903Z adding 'torch/include/ATen/CPUFunctions.h' 2025-09-07T06:46:11.6235608Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-09-07T06:46:11.6239435Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-09-07T06:46:11.6243030Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-09-07T06:46:11.6250489Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-09-07T06:46:11.6254944Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-09-07T06:46:11.6258764Z adding 'torch/include/ATen/CollapseDims.h' 2025-09-07T06:46:11.6262388Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-09-07T06:46:11.6269932Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-09-07T06:46:11.6274370Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-09-07T06:46:11.6279777Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-09-07T06:46:11.6283833Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-09-07T06:46:11.6290192Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-09-07T06:46:11.6294713Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-09-07T06:46:11.6297920Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-09-07T06:46:11.6300718Z adding 'torch/include/ATen/Config.h' 2025-09-07T06:46:11.6309210Z adding 'torch/include/ATen/Context.h' 2025-09-07T06:46:11.6313352Z adding 'torch/include/ATen/DLConvertor.h' 2025-09-07T06:46:11.6316719Z adding 'torch/include/ATen/DTensorState.h' 2025-09-07T06:46:11.6319452Z adding 'torch/include/ATen/Device.h' 2025-09-07T06:46:11.6323073Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-09-07T06:46:11.6326238Z adding 'torch/include/ATen/DeviceGuard.h' 2025-09-07T06:46:11.6328962Z adding 'torch/include/ATen/DimVector.h' 2025-09-07T06:46:11.6331638Z adding 'torch/include/ATen/Dimname.h' 2025-09-07T06:46:11.6340400Z adding 'torch/include/ATen/Dispatch.h' 2025-09-07T06:46:11.6349326Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-09-07T06:46:11.6353753Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-09-07T06:46:11.6357202Z adding 'torch/include/ATen/EmptyTensor.h' 2025-09-07T06:46:11.6360364Z adding 'torch/include/ATen/ExpandBase.h' 2025-09-07T06:46:11.6366120Z adding 'torch/include/ATen/ExpandUtils.h' 2025-09-07T06:46:11.6369323Z adding 'torch/include/ATen/Formatting.h' 2025-09-07T06:46:11.6372556Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-09-07T06:46:11.6377566Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-09-07T06:46:11.6385308Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-09-07T06:46:11.6396876Z adding 'torch/include/ATen/Functions.h' 2025-09-07T06:46:11.6401093Z adding 'torch/include/ATen/Generator.h' 2025-09-07T06:46:11.6404631Z adding 'torch/include/ATen/InferSize.h' 2025-09-07T06:46:11.6407699Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-09-07T06:46:11.6410355Z adding 'torch/include/ATen/Layout.h' 2025-09-07T06:46:11.6413418Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-09-07T06:46:11.6417778Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-09-07T06:46:11.6420988Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-09-07T06:46:11.6426077Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-09-07T06:46:11.6429332Z adding 'torch/include/ATen/LinalgBackend.h' 2025-09-07T06:46:11.6432876Z adding 'torch/include/ATen/MapAllocator.h' 2025-09-07T06:46:11.6437412Z adding 'torch/include/ATen/MatrixRef.h' 2025-09-07T06:46:11.6440820Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-09-07T06:46:11.6444073Z adding 'torch/include/ATen/MetaFunctions.h' 2025-09-07T06:46:11.6448654Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-09-07T06:46:11.6453881Z adding 'torch/include/ATen/MethodOperators.h' 2025-09-07T06:46:11.6457033Z adding 'torch/include/ATen/NamedTensor.h' 2025-09-07T06:46:11.6461301Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-09-07T06:46:11.6472350Z adding 'torch/include/ATen/NativeFunctions.h' 2025-09-07T06:46:11.6484140Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-09-07T06:46:11.6490795Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-09-07T06:46:11.6494615Z adding 'torch/include/ATen/NumericUtils.h' 2025-09-07T06:46:11.6497912Z adding 'torch/include/ATen/OpMathType.h' 2025-09-07T06:46:11.6502249Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-09-07T06:46:11.6513789Z adding 'torch/include/ATen/Operators.h' 2025-09-07T06:46:11.6518186Z adding 'torch/include/ATen/PTThreadPool.h' 2025-09-07T06:46:11.6521102Z adding 'torch/include/ATen/PadNd.h' 2025-09-07T06:46:11.6524497Z adding 'torch/include/ATen/Parallel-inl.h' 2025-09-07T06:46:11.6528535Z adding 'torch/include/ATen/Parallel.h' 2025-09-07T06:46:11.6531781Z adding 'torch/include/ATen/ParallelFuture.h' 2025-09-07T06:46:11.6534631Z adding 'torch/include/ATen/ParallelNative.h' 2025-09-07T06:46:11.6537924Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-09-07T06:46:11.6541153Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-09-07T06:46:11.6544339Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-09-07T06:46:11.6810449Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-09-07T06:46:11.7004414Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-09-07T06:46:11.7034371Z adding 'torch/include/ATen/SDPBackend.h' 2025-09-07T06:46:11.7038031Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-09-07T06:46:11.7040852Z adding 'torch/include/ATen/Scalar.h' 2025-09-07T06:46:11.7044091Z adding 'torch/include/ATen/ScalarOps.h' 2025-09-07T06:46:11.7047340Z adding 'torch/include/ATen/ScalarType.h' 2025-09-07T06:46:11.7050228Z adding 'torch/include/ATen/SequenceNumber.h' 2025-09-07T06:46:11.7052888Z adding 'torch/include/ATen/SmallVector.h' 2025-09-07T06:46:11.7057326Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-09-07T06:46:11.7063867Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-09-07T06:46:11.7070628Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-09-07T06:46:11.7073773Z adding 'torch/include/ATen/Storage.h' 2025-09-07T06:46:11.7076934Z adding 'torch/include/ATen/StorageUtils.h' 2025-09-07T06:46:11.7079676Z adding 'torch/include/ATen/Tensor.h' 2025-09-07T06:46:11.7082338Z adding 'torch/include/ATen/TensorAccessor.h' 2025-09-07T06:46:11.7085963Z adding 'torch/include/ATen/TensorGeometry.h' 2025-09-07T06:46:11.7095795Z adding 'torch/include/ATen/TensorIndexing.h' 2025-09-07T06:46:11.7112025Z adding 'torch/include/ATen/TensorIterator.h' 2025-09-07T06:46:11.7116402Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-09-07T06:46:11.7120611Z adding 'torch/include/ATen/TensorMeta.h' 2025-09-07T06:46:11.7124458Z adding 'torch/include/ATen/TensorNames.h' 2025-09-07T06:46:11.7127816Z adding 'torch/include/ATen/TensorOperators.h' 2025-09-07T06:46:11.7130739Z adding 'torch/include/ATen/TensorOptions.h' 2025-09-07T06:46:11.7134399Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-09-07T06:46:11.7138469Z adding 'torch/include/ATen/TensorUtils.h' 2025-09-07T06:46:11.7141818Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-09-07T06:46:11.7145831Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-09-07T06:46:11.7150263Z adding 'torch/include/ATen/TracerMode.h' 2025-09-07T06:46:11.7153482Z adding 'torch/include/ATen/TypeDefault.h' 2025-09-07T06:46:11.7157022Z adding 'torch/include/ATen/Utils.h' 2025-09-07T06:46:11.7160135Z adding 'torch/include/ATen/Version.h' 2025-09-07T06:46:11.7344015Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-09-07T06:46:11.7392125Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-09-07T06:46:11.7395850Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-09-07T06:46:11.7407775Z adding 'torch/include/ATen/autocast_mode.h' 2025-09-07T06:46:11.7411605Z adding 'torch/include/ATen/ceil_div.h' 2025-09-07T06:46:11.7416197Z adding 'torch/include/ATen/code_template.h' 2025-09-07T06:46:11.7420155Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-09-07T06:46:11.7423322Z adding 'torch/include/ATen/div_rtn.h' 2025-09-07T06:46:11.7429261Z adding 'torch/include/ATen/dlpack.h' 2025-09-07T06:46:11.7432331Z adding 'torch/include/ATen/jit_macros.h' 2025-09-07T06:46:11.7435688Z adding 'torch/include/ATen/jiterator_macros.h' 2025-09-07T06:46:11.7444810Z adding 'torch/include/ATen/record_function.h' 2025-09-07T06:46:11.7450377Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-09-07T06:46:11.7453454Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-09-07T06:46:11.7456471Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-09-07T06:46:11.7460372Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-09-07T06:46:11.7463830Z adding 'torch/include/ATen/core/Array.h' 2025-09-07T06:46:11.7466618Z adding 'torch/include/ATen/core/Backtrace.h' 2025-09-07T06:46:11.7477721Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-09-07T06:46:11.7481458Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-09-07T06:46:11.7485188Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-09-07T06:46:11.7488426Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-09-07T06:46:11.7494945Z adding 'torch/include/ATen/core/Dict.h' 2025-09-07T06:46:11.7499584Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-09-07T06:46:11.7502641Z adding 'torch/include/ATen/core/DimVector.h' 2025-09-07T06:46:11.7505868Z adding 'torch/include/ATen/core/Dimname.h' 2025-09-07T06:46:11.7510875Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-09-07T06:46:11.7514170Z adding 'torch/include/ATen/core/Formatting.h' 2025-09-07T06:46:11.7518695Z adding 'torch/include/ATen/core/Generator.h' 2025-09-07T06:46:11.7522278Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-09-07T06:46:11.7530319Z adding 'torch/include/ATen/core/IListRef.h' 2025-09-07T06:46:11.7534896Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-09-07T06:46:11.7539128Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-09-07T06:46:11.7545761Z adding 'torch/include/ATen/core/List.h' 2025-09-07T06:46:11.7551100Z adding 'torch/include/ATen/core/List_inl.h' 2025-09-07T06:46:11.7555929Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-09-07T06:46:11.7560284Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-09-07T06:46:11.7564739Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-09-07T06:46:11.7569640Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-09-07T06:46:11.7572931Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-09-07T06:46:11.7576109Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-09-07T06:46:11.7579515Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-09-07T06:46:11.7582613Z adding 'torch/include/ATen/core/Range.h' 2025-09-07T06:46:11.7585636Z adding 'torch/include/ATen/core/Reduction.h' 2025-09-07T06:46:11.7588502Z adding 'torch/include/ATen/core/Scalar.h' 2025-09-07T06:46:11.7591152Z adding 'torch/include/ATen/core/ScalarType.h' 2025-09-07T06:46:11.7594554Z adding 'torch/include/ATen/core/Tensor.h' 2025-09-07T06:46:11.7599314Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-09-07T06:46:11.7615287Z adding 'torch/include/ATen/core/TensorBase.h' 2025-09-07T06:46:11.7671738Z adding 'torch/include/ATen/core/TensorBody.h' 2025-09-07T06:46:11.7681497Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-09-07T06:46:11.7685814Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-09-07T06:46:11.7689128Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-09-07T06:46:11.7691911Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-09-07T06:46:11.7695663Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-09-07T06:46:11.7699095Z adding 'torch/include/ATen/core/Variadic.h' 2025-09-07T06:46:11.7702655Z adding 'torch/include/ATen/core/Vitals.h' 2025-09-07T06:46:11.7706787Z adding 'torch/include/ATen/core/alias_info.h' 2025-09-07T06:46:11.7722551Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-09-07T06:46:11.7728200Z adding 'torch/include/ATen/core/blob.h' 2025-09-07T06:46:11.7731897Z adding 'torch/include/ATen/core/builtin_function.h' 2025-09-07T06:46:11.7739949Z adding 'torch/include/ATen/core/class_type.h' 2025-09-07T06:46:11.7743618Z adding 'torch/include/ATen/core/custom_class.h' 2025-09-07T06:46:11.7749263Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-09-07T06:46:11.7752557Z adding 'torch/include/ATen/core/enum_tag.h' 2025-09-07T06:46:11.7756245Z adding 'torch/include/ATen/core/enum_type.h' 2025-09-07T06:46:11.7760078Z adding 'torch/include/ATen/core/function.h' 2025-09-07T06:46:11.7770941Z adding 'torch/include/ATen/core/function_schema.h' 2025-09-07T06:46:11.7775555Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-09-07T06:46:11.7779127Z adding 'torch/include/ATen/core/functional.h' 2025-09-07T06:46:11.7782019Z adding 'torch/include/ATen/core/grad_mode.h' 2025-09-07T06:46:11.7787825Z adding 'torch/include/ATen/core/interned_strings.h' 2025-09-07T06:46:11.7791409Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-09-07T06:46:11.7811226Z adding 'torch/include/ATen/core/ivalue.h' 2025-09-07T06:46:11.7841661Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-09-07T06:46:11.7847031Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-09-07T06:46:11.7869367Z adding 'torch/include/ATen/core/jit_type.h' 2025-09-07T06:46:11.7879438Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-09-07T06:46:11.7883452Z adding 'torch/include/ATen/core/operator_name.h' 2025-09-07T06:46:11.7887463Z adding 'torch/include/ATen/core/qualified_name.h' 2025-09-07T06:46:11.7890801Z adding 'torch/include/ATen/core/rref_interface.h' 2025-09-07T06:46:11.7895009Z adding 'torch/include/ATen/core/stack.h' 2025-09-07T06:46:11.7899417Z adding 'torch/include/ATen/core/symbol.h' 2025-09-07T06:46:11.7903114Z adding 'torch/include/ATen/core/type_factory.h' 2025-09-07T06:46:11.7906444Z adding 'torch/include/ATen/core/type_ptr.h' 2025-09-07T06:46:11.7909221Z adding 'torch/include/ATen/core/typeid.h' 2025-09-07T06:46:11.7915199Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-09-07T06:46:11.7919127Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-09-07T06:46:11.7924536Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-09-07T06:46:11.7930183Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-09-07T06:46:11.7933623Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-09-07T06:46:11.7937806Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-09-07T06:46:11.7941103Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-09-07T06:46:11.7946948Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-09-07T06:46:11.7957131Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-09-07T06:46:11.7961562Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-09-07T06:46:11.7966034Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-09-07T06:46:11.7971667Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-09-07T06:46:11.7984885Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-09-07T06:46:11.7988722Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-09-07T06:46:11.7995068Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-09-07T06:46:11.7998560Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-09-07T06:46:11.8001595Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-09-07T06:46:11.8005937Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-09-07T06:46:11.8010238Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-09-07T06:46:11.8015001Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-09-07T06:46:11.8024069Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-09-07T06:46:11.8028984Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-09-07T06:46:11.8031967Z adding 'torch/include/ATen/cpu/Utils.h' 2025-09-07T06:46:11.8036858Z adding 'torch/include/ATen/cpu/vml.h' 2025-09-07T06:46:11.8041345Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-09-07T06:46:11.8047015Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-09-07T06:46:11.8054083Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-09-07T06:46:11.8057652Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-09-07T06:46:11.8060733Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-09-07T06:46:11.8074743Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-09-07T06:46:11.8079756Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-09-07T06:46:11.8083569Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-09-07T06:46:11.8088661Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-09-07T06:46:11.8094245Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-09-07T06:46:11.8098453Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-09-07T06:46:11.8103062Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-09-07T06:46:11.8109615Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-09-07T06:46:11.8114408Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-09-07T06:46:11.8120583Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-09-07T06:46:11.8128839Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-09-07T06:46:11.8135832Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-09-07T06:46:11.8142567Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-09-07T06:46:11.8146767Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-09-07T06:46:11.8153486Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-09-07T06:46:11.8157348Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-09-07T06:46:11.8163959Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-09-07T06:46:11.8171003Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-09-07T06:46:11.8175998Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-09-07T06:46:11.8179982Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-09-07T06:46:11.8183122Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-09-07T06:46:11.8188225Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-09-07T06:46:11.8196640Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-09-07T06:46:11.8201670Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-09-07T06:46:11.8208818Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-09-07T06:46:11.8216726Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-09-07T06:46:11.8222111Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-09-07T06:46:11.8227783Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-09-07T06:46:11.8236414Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-09-07T06:46:11.8241322Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-09-07T06:46:11.8255562Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-09-07T06:46:11.8261635Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-09-07T06:46:11.8273292Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-09-07T06:46:11.8278733Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-09-07T06:46:11.8283156Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-09-07T06:46:11.8291028Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-09-07T06:46:11.8299913Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-09-07T06:46:11.8305941Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-09-07T06:46:11.8311963Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-09-07T06:46:11.8317386Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-09-07T06:46:11.8322721Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-09-07T06:46:11.8327841Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-09-07T06:46:11.8332872Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-09-07T06:46:11.8339749Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-09-07T06:46:11.8347358Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-09-07T06:46:11.8355637Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-09-07T06:46:11.8382052Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-09-07T06:46:11.8390406Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-09-07T06:46:11.8406892Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-09-07T06:46:11.8416277Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-09-07T06:46:11.8426773Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-09-07T06:46:11.8432220Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-09-07T06:46:11.8437895Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-09-07T06:46:11.8447206Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-09-07T06:46:11.8455216Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-09-07T06:46:11.8468043Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-09-07T06:46:11.8474468Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-09-07T06:46:11.8485710Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-09-07T06:46:11.8491350Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-09-07T06:46:11.8494515Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-09-07T06:46:11.8497963Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-09-07T06:46:11.8504990Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-09-07T06:46:11.8513447Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-09-07T06:46:11.8519098Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-09-07T06:46:11.8522590Z adding 'torch/include/ATen/cuda/CUDAConfig.h' 2025-09-07T06:46:11.8525452Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-09-07T06:46:11.8528947Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-09-07T06:46:11.8532337Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-09-07T06:46:11.8535419Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-09-07T06:46:11.8540339Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-09-07T06:46:11.8545106Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-09-07T06:46:11.8549005Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-09-07T06:46:11.8552761Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-09-07T06:46:11.8556022Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-09-07T06:46:11.8560459Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-09-07T06:46:11.8565086Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-09-07T06:46:11.8568226Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-09-07T06:46:11.8571085Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-09-07T06:46:11.8574451Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-09-07T06:46:11.8577840Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-09-07T06:46:11.8580887Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-09-07T06:46:11.8585637Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-09-07T06:46:11.8589601Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-09-07T06:46:11.8592640Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-09-07T06:46:11.8595402Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-09-07T06:46:11.8597978Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-09-07T06:46:11.8600763Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-09-07T06:46:11.8603945Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-09-07T06:46:11.8606850Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-09-07T06:46:11.8609869Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-09-07T06:46:11.8613469Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-09-07T06:46:11.8621214Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-09-07T06:46:11.8625588Z adding 'torch/include/ATen/cuda/cub.h' 2025-09-07T06:46:11.8629032Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-09-07T06:46:11.8632068Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-09-07T06:46:11.8636360Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-09-07T06:46:11.8639664Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-09-07T06:46:11.8644007Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-09-07T06:46:11.8649218Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-09-07T06:46:11.8652690Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-09-07T06:46:11.8656869Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-09-07T06:46:11.8660234Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-09-07T06:46:11.8663300Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-09-07T06:46:11.8667071Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-09-07T06:46:11.8670513Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-09-07T06:46:11.8674158Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-09-07T06:46:11.8677593Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-09-07T06:46:11.8684915Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-09-07T06:46:11.8692505Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-09-07T06:46:11.8705865Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-09-07T06:46:11.8706294Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-09-07T06:46:11.8706670Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-09-07T06:46:11.8710327Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-09-07T06:46:11.8716560Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-09-07T06:46:11.8724298Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-09-07T06:46:11.8727726Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-09-07T06:46:11.8730522Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-09-07T06:46:11.8733546Z adding 'torch/include/ATen/cudnn/Types.h' 2025-09-07T06:46:11.8736514Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-09-07T06:46:11.8739639Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-09-07T06:46:11.8744216Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-09-07T06:46:11.8748847Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-09-07T06:46:11.8752602Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-09-07T06:46:11.8756042Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-09-07T06:46:11.8759728Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-09-07T06:46:11.8763201Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-09-07T06:46:11.8766774Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-09-07T06:46:11.8770782Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-09-07T06:46:11.8774883Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-09-07T06:46:11.8779249Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-09-07T06:46:11.8783123Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-09-07T06:46:11.8787312Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-09-07T06:46:11.8794053Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-09-07T06:46:11.8798332Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-09-07T06:46:11.8803013Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-09-07T06:46:11.8807153Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-09-07T06:46:11.8811590Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-09-07T06:46:11.8814940Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-09-07T06:46:11.8821017Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-09-07T06:46:11.8826742Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-09-07T06:46:11.8829643Z adding 'torch/include/ATen/functorch/Macros.h' 2025-09-07T06:46:11.8833222Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-09-07T06:46:11.8837431Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-09-07T06:46:11.8840668Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-09-07T06:46:11.8846294Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-09-07T06:46:11.8850358Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-09-07T06:46:11.8856399Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-09-07T06:46:11.8860536Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-09-07T06:46:11.8864341Z adding 'torch/include/ATen/metal/Context.h' 2025-09-07T06:46:11.8870255Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-09-07T06:46:11.8874114Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-09-07T06:46:11.8877328Z adding 'torch/include/ATen/miopen/Handle.h' 2025-09-07T06:46:11.8880657Z adding 'torch/include/ATen/miopen/Types.h' 2025-09-07T06:46:11.8883955Z adding 'torch/include/ATen/miopen/Utils.h' 2025-09-07T06:46:11.8887338Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-09-07T06:46:11.8891874Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-09-07T06:46:11.8896134Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-09-07T06:46:11.8905417Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-09-07T06:46:11.8909536Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-09-07T06:46:11.8912923Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-09-07T06:46:11.8916931Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-09-07T06:46:11.8920413Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-09-07T06:46:11.8924476Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-09-07T06:46:11.8928066Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-09-07T06:46:11.8935341Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-09-07T06:46:11.8939727Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-09-07T06:46:11.8945980Z adding 'torch/include/ATen/native/Activation.h' 2025-09-07T06:46:11.8949516Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-09-07T06:46:11.8952539Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-09-07T06:46:11.8957012Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-09-07T06:46:11.8960855Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-09-07T06:46:11.8965686Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-09-07T06:46:11.8970104Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-09-07T06:46:11.8973718Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-09-07T06:46:11.8976755Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-09-07T06:46:11.8980496Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-09-07T06:46:11.8983921Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-09-07T06:46:11.8988078Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-09-07T06:46:11.8994843Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-09-07T06:46:11.8998688Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-09-07T06:46:11.9001527Z adding 'torch/include/ATen/native/Copy.h' 2025-09-07T06:46:11.9004390Z adding 'torch/include/ATen/native/Cross.h' 2025-09-07T06:46:11.9008566Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-09-07T06:46:11.9015078Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-09-07T06:46:11.9017945Z adding 'torch/include/ATen/native/Distance.h' 2025-09-07T06:46:11.9024608Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-09-07T06:46:11.9033601Z adding 'torch/include/ATen/native/Distributions.h' 2025-09-07T06:46:11.9038026Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-09-07T06:46:11.9041067Z adding 'torch/include/ATen/native/Fill.h' 2025-09-07T06:46:11.9047314Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-09-07T06:46:11.9051007Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-09-07T06:46:11.9053983Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-09-07T06:46:11.9057665Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-09-07T06:46:11.9060697Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-09-07T06:46:11.9063726Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-09-07T06:46:11.9066711Z adding 'torch/include/ATen/native/Gelu.h' 2025-09-07T06:46:11.9071555Z adding 'torch/include/ATen/native/GridSampler.h' 2025-09-07T06:46:11.9075386Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-09-07T06:46:11.9079653Z adding 'torch/include/ATen/native/GroupedMMUtils.h' 2025-09-07T06:46:11.9082819Z adding 'torch/include/ATen/native/Histogram.h' 2025-09-07T06:46:11.9085919Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-09-07T06:46:11.9090134Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-09-07T06:46:11.9098335Z adding 'torch/include/ATen/native/Lerp.h' 2025-09-07T06:46:11.9101409Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-09-07T06:46:11.9112301Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-09-07T06:46:11.9116204Z adding 'torch/include/ATen/native/LossMulti.h' 2025-09-07T06:46:11.9162590Z adding 'torch/include/ATen/native/Math.h' 2025-09-07T06:46:11.9169718Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-09-07T06:46:11.9174716Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-09-07T06:46:11.9178534Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-09-07T06:46:11.9181612Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-09-07T06:46:11.9185111Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-09-07T06:46:11.9188150Z adding 'torch/include/ATen/native/Normalization.h' 2025-09-07T06:46:11.9191351Z adding 'torch/include/ATen/native/Padding.h' 2025-09-07T06:46:11.9194559Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-09-07T06:46:11.9197523Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-09-07T06:46:11.9202924Z adding 'torch/include/ATen/native/Pool.h' 2025-09-07T06:46:11.9206527Z adding 'torch/include/ATen/native/Pow.h' 2025-09-07T06:46:11.9209828Z adding 'torch/include/ATen/native/RNN.h' 2025-09-07T06:46:11.9212856Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-09-07T06:46:11.9216185Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-09-07T06:46:11.9219114Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-09-07T06:46:11.9222225Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-09-07T06:46:11.9228568Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-09-07T06:46:11.9232125Z adding 'torch/include/ATen/native/ReductionType.h' 2025-09-07T06:46:11.9235313Z adding 'torch/include/ATen/native/Repeat.h' 2025-09-07T06:46:11.9240222Z adding 'torch/include/ATen/native/Resize.h' 2025-09-07T06:46:11.9243986Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-09-07T06:46:11.9247633Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-09-07T06:46:11.9250739Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-09-07T06:46:11.9256177Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-09-07T06:46:11.9259951Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-09-07T06:46:11.9262985Z adding 'torch/include/ATen/native/Sorting.h' 2025-09-07T06:46:11.9266315Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-09-07T06:46:11.9271987Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-09-07T06:46:11.9277422Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-09-07T06:46:11.9284023Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-09-07T06:46:11.9288640Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-09-07T06:46:11.9293430Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-09-07T06:46:11.9298196Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-09-07T06:46:11.9303063Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-09-07T06:46:11.9307998Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-09-07T06:46:11.9314323Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-09-07T06:46:11.9318844Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-09-07T06:46:11.9323925Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-09-07T06:46:11.9328323Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-09-07T06:46:11.9334245Z adding 'torch/include/ATen/native/TensorShape.h' 2025-09-07T06:46:11.9339275Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-09-07T06:46:11.9343759Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-09-07T06:46:11.9347199Z adding 'torch/include/ATen/native/TransposeType.h' 2025-09-07T06:46:11.9351126Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-09-07T06:46:11.9354703Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-09-07T06:46:11.9358434Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-09-07T06:46:11.9362258Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-09-07T06:46:11.9365329Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-09-07T06:46:11.9368913Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-09-07T06:46:11.9376730Z adding 'torch/include/ATen/native/UpSample.h' 2025-09-07T06:46:11.9380477Z adding 'torch/include/ATen/native/batch_norm.h' 2025-09-07T06:46:11.9383603Z adding 'torch/include/ATen/native/group_norm.h' 2025-09-07T06:46:11.9387250Z adding 'torch/include/ATen/native/im2col.h' 2025-09-07T06:46:11.9392258Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-09-07T06:46:11.9396089Z adding 'torch/include/ATen/native/layer_norm.h' 2025-09-07T06:46:11.9399101Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-09-07T06:46:11.9402419Z adding 'torch/include/ATen/native/vol2col.h' 2025-09-07T06:46:11.9408107Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-09-07T06:46:11.9412208Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-09-07T06:46:11.9416191Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-09-07T06:46:11.9421082Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-09-07T06:46:11.9424224Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-09-07T06:46:11.9427200Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-09-07T06:46:11.9429985Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-09-07T06:46:11.9432931Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-09-07T06:46:11.9438482Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-09-07T06:46:11.9442309Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-09-07T06:46:11.9445781Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-09-07T06:46:11.9448906Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-09-07T06:46:11.9452474Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-09-07T06:46:11.9455604Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-09-07T06:46:11.9458810Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-09-07T06:46:11.9462208Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-09-07T06:46:11.9467708Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-09-07T06:46:11.9474713Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-09-07T06:46:11.9478035Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-09-07T06:46:11.9481257Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-09-07T06:46:11.9486542Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-09-07T06:46:11.9491202Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-09-07T06:46:11.9494732Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-09-07T06:46:11.9499051Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-09-07T06:46:11.9503501Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-09-07T06:46:11.9506609Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-09-07T06:46:11.9509617Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-09-07T06:46:11.9512734Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-09-07T06:46:11.9528116Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-09-07T06:46:11.9532390Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-09-07T06:46:11.9538728Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-09-07T06:46:11.9542244Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-09-07T06:46:11.9545549Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-09-07T06:46:11.9549812Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-09-07T06:46:11.9554431Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-09-07T06:46:11.9558417Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-09-07T06:46:11.9563598Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-09-07T06:46:11.9566745Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-09-07T06:46:11.9572295Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-09-07T06:46:11.9583672Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-09-07T06:46:11.9587785Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-09-07T06:46:11.9590547Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-09-07T06:46:11.9598368Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-09-07T06:46:11.9602079Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-09-07T06:46:11.9605313Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-09-07T06:46:11.9614121Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-09-07T06:46:11.9617747Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-09-07T06:46:11.9620795Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-09-07T06:46:11.9626160Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-09-07T06:46:11.9629708Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-09-07T06:46:11.9634466Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-09-07T06:46:11.9637765Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-09-07T06:46:11.9640643Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-09-07T06:46:11.9644818Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-09-07T06:46:11.9647914Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-09-07T06:46:11.9651186Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-09-07T06:46:11.9655658Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-09-07T06:46:11.9661709Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-09-07T06:46:11.9665140Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-09-07T06:46:11.9670274Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-09-07T06:46:11.9706663Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-09-07T06:46:11.9718279Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-09-07T06:46:11.9722054Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-09-07T06:46:11.9728118Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-09-07T06:46:11.9748421Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-09-07T06:46:11.9756745Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-09-07T06:46:11.9761405Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-09-07T06:46:11.9766692Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-09-07T06:46:11.9791153Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-09-07T06:46:11.9798088Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-09-07T06:46:11.9802615Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-09-07T06:46:11.9805629Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-09-07T06:46:11.9809402Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-09-07T06:46:11.9812272Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-09-07T06:46:11.9820341Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-09-07T06:46:11.9824438Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-09-07T06:46:11.9827400Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-09-07T06:46:11.9833425Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-09-07T06:46:11.9836915Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-09-07T06:46:11.9840984Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-09-07T06:46:11.9846962Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-09-07T06:46:11.9856189Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-09-07T06:46:11.9862482Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-09-07T06:46:11.9863856Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-09-07T06:46:11.9867711Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-09-07T06:46:11.9873481Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-09-07T06:46:11.9877518Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-09-07T06:46:11.9880927Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-09-07T06:46:11.9883993Z adding 'torch/include/ATen/native/cuda/fused_adagrad_impl.cuh' 2025-09-07T06:46:11.9887686Z adding 'torch/include/ATen/native/cuda/fused_adagrad_utils.cuh' 2025-09-07T06:46:11.9890843Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-09-07T06:46:11.9893759Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-09-07T06:46:11.9898259Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-09-07T06:46:11.9901414Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-09-07T06:46:11.9904439Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-09-07T06:46:11.9909001Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-09-07T06:46:11.9913674Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-09-07T06:46:11.9921988Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-09-07T06:46:11.9925568Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-09-07T06:46:11.9930290Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-09-07T06:46:11.9934488Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-09-07T06:46:11.9937487Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-09-07T06:46:11.9942633Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-09-07T06:46:11.9946368Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-09-07T06:46:11.9950609Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-09-07T06:46:11.9954919Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-09-07T06:46:11.9958979Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-09-07T06:46:11.9962315Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-09-07T06:46:11.9965926Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-09-07T06:46:11.9970379Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-09-07T06:46:11.9973674Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-09-07T06:46:11.9976957Z adding 'torch/include/ATen/native/mkldnn/xpu/qconv.h' 2025-09-07T06:46:11.9980258Z adding 'torch/include/ATen/native/mkldnn/xpu/qlinear.h' 2025-09-07T06:46:11.9988056Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-09-07T06:46:11.9995057Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-09-07T06:46:11.9999045Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-09-07T06:46:12.0002808Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-09-07T06:46:12.0006680Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-09-07T06:46:12.0010416Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-09-07T06:46:12.0014148Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-09-07T06:46:12.0017368Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-09-07T06:46:12.0020597Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-09-07T06:46:12.0024879Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-09-07T06:46:12.0029235Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-09-07T06:46:12.0037579Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-09-07T06:46:12.0041263Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-09-07T06:46:12.0046337Z adding 'torch/include/ATen/native/mps/kernels/GridSampler.h' 2025-09-07T06:46:12.0049582Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-09-07T06:46:12.0052548Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-09-07T06:46:12.0056340Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-09-07T06:46:12.0059412Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-09-07T06:46:12.0062298Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-09-07T06:46:12.0065432Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-09-07T06:46:12.0068333Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-09-07T06:46:12.0074455Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-09-07T06:46:12.0079516Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-09-07T06:46:12.0083551Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-09-07T06:46:12.0087713Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-09-07T06:46:12.0091870Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-09-07T06:46:12.0095189Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-09-07T06:46:12.0102403Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-09-07T06:46:12.0111262Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-09-07T06:46:12.0114624Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-09-07T06:46:12.0118613Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-09-07T06:46:12.0121857Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-09-07T06:46:12.0125309Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-09-07T06:46:12.0128885Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-09-07T06:46:12.0132551Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-09-07T06:46:12.0136264Z adding 'torch/include/ATen/native/quantized/library.h' 2025-09-07T06:46:12.0142255Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-09-07T06:46:12.0145612Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-09-07T06:46:12.0149439Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-09-07T06:46:12.0155676Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-09-07T06:46:12.0163303Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-09-07T06:46:12.0169560Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-09-07T06:46:12.0174789Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-09-07T06:46:12.0178520Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-09-07T06:46:12.0184517Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-09-07T06:46:12.0190872Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-09-07T06:46:12.0196780Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-09-07T06:46:12.0200077Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-09-07T06:46:12.0203861Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-09-07T06:46:12.0207104Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-09-07T06:46:12.0210745Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-09-07T06:46:12.0214162Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-09-07T06:46:12.0220439Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-09-07T06:46:12.0225265Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-09-07T06:46:12.0229557Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-09-07T06:46:12.0236846Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-09-07T06:46:12.0241792Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-09-07T06:46:12.0246836Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-09-07T06:46:12.0250683Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-09-07T06:46:12.0256860Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-09-07T06:46:12.0262252Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-09-07T06:46:12.0300866Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-09-07T06:46:12.0322329Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-09-07T06:46:12.0327558Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-09-07T06:46:12.0335857Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-09-07T06:46:12.0341601Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-09-07T06:46:12.0346468Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-09-07T06:46:12.0350976Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-09-07T06:46:12.0355510Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-09-07T06:46:12.0364468Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-09-07T06:46:12.0371405Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-09-07T06:46:12.0376420Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-09-07T06:46:12.0381762Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-09-07T06:46:12.0401960Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-09-07T06:46:12.0408665Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-09-07T06:46:12.0416004Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-09-07T06:46:12.0420583Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-09-07T06:46:12.0432078Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-09-07T06:46:12.0443628Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-09-07T06:46:12.0448326Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-09-07T06:46:12.0453682Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-09-07T06:46:12.0467423Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-09-07T06:46:12.0474722Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-09-07T06:46:12.0479885Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-09-07T06:46:12.0484767Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-09-07T06:46:12.0487891Z adding 'torch/include/ATen/native/transformers/hip/aotriton_versions.h' 2025-09-07T06:46:12.0491108Z adding 'torch/include/ATen/native/transformers/hip/gemm_kernel_utils.h' 2025-09-07T06:46:12.0497295Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-09-07T06:46:12.0501829Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-09-07T06:46:12.0505744Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-09-07T06:46:12.0509009Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-09-07T06:46:12.0512391Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-09-07T06:46:12.0705999Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-09-07T06:46:12.0709658Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-09-07T06:46:12.0713510Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0716666Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.0720358Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.0723410Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-09-07T06:46:12.0727285Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-09-07T06:46:12.0730938Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0734256Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-09-07T06:46:12.0737885Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-09-07T06:46:12.0740952Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-09-07T06:46:12.0744763Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-09-07T06:46:12.0748160Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-09-07T06:46:12.0752086Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-09-07T06:46:12.0755640Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0758924Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.0762436Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.0765556Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-09-07T06:46:12.0769555Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-09-07T06:46:12.0774548Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0779348Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-09-07T06:46:12.0784164Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-09-07T06:46:12.0788798Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-09-07T06:46:12.0793421Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-09-07T06:46:12.0796518Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-09-07T06:46:12.0800462Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.0803413Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-09-07T06:46:12.0807438Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-09-07T06:46:12.0810663Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-09-07T06:46:12.0814813Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0817984Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-09-07T06:46:12.0821023Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-09-07T06:46:12.0824765Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-09-07T06:46:12.0828373Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-09-07T06:46:12.0831582Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-09-07T06:46:12.0834927Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.0837860Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-09-07T06:46:12.0841644Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-09-07T06:46:12.0844771Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-09-07T06:46:12.0847915Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-09-07T06:46:12.0850937Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-09-07T06:46:12.0854168Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-09-07T06:46:12.0857328Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-09-07T06:46:12.0860544Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0863610Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-09-07T06:46:12.0866618Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-09-07T06:46:12.0869562Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-09-07T06:46:12.0873609Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-09-07T06:46:12.0878788Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-09-07T06:46:12.0882258Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0885269Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-09-07T06:46:12.0888308Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-09-07T06:46:12.0891311Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-09-07T06:46:12.0894621Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-09-07T06:46:12.0897764Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-09-07T06:46:12.0901040Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0904173Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-09-07T06:46:12.0907270Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-09-07T06:46:12.0910349Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-09-07T06:46:12.0913338Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-09-07T06:46:12.0916627Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-09-07T06:46:12.0919674Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-09-07T06:46:12.0923036Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-09-07T06:46:12.0926183Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-09-07T06:46:12.0929150Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-09-07T06:46:12.0932258Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-09-07T06:46:12.0935436Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-09-07T06:46:12.0938610Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0941412Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-09-07T06:46:12.0944608Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-09-07T06:46:12.0947932Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-09-07T06:46:12.0951295Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.0954265Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-09-07T06:46:12.0957246Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-09-07T06:46:12.0960372Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-09-07T06:46:12.0963351Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-09-07T06:46:12.0966608Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.0969327Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-09-07T06:46:12.0972371Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-09-07T06:46:12.0975303Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-09-07T06:46:12.0978491Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.0981361Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-09-07T06:46:12.0984528Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-09-07T06:46:12.0987359Z adding 'torch/include/ATen/ops/_backward.h' 2025-09-07T06:46:12.0990639Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.0993484Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-09-07T06:46:12.0996555Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-09-07T06:46:12.0999674Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-09-07T06:46:12.1002830Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-09-07T06:46:12.1006132Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1009042Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-09-07T06:46:12.1012231Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-09-07T06:46:12.1015434Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1018291Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-09-07T06:46:12.1021461Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-09-07T06:46:12.1024804Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-09-07T06:46:12.1028162Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1031062Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-09-07T06:46:12.1034328Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-09-07T06:46:12.1037633Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-09-07T06:46:12.1040924Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1043973Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-09-07T06:46:12.1047084Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-09-07T06:46:12.1050112Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-09-07T06:46:12.1053530Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-09-07T06:46:12.1056560Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-09-07T06:46:12.1059706Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1062535Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-09-07T06:46:12.1065689Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-09-07T06:46:12.1068634Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-09-07T06:46:12.1071768Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1074501Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-09-07T06:46:12.1077589Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-09-07T06:46:12.1081145Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-09-07T06:46:12.1084319Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1087175Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-09-07T06:46:12.1090209Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-09-07T06:46:12.1093182Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-09-07T06:46:12.1096373Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1099091Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-09-07T06:46:12.1102097Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-09-07T06:46:12.1105176Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-09-07T06:46:12.1108301Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1111071Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-09-07T06:46:12.1114061Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-09-07T06:46:12.1117031Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-09-07T06:46:12.1120148Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1122928Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-09-07T06:46:12.1125938Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-09-07T06:46:12.1128888Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-09-07T06:46:12.1131991Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1134735Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-09-07T06:46:12.1137728Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-09-07T06:46:12.1140671Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-09-07T06:46:12.1143914Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1146736Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-09-07T06:46:12.1149734Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-09-07T06:46:12.1152747Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-09-07T06:46:12.1155943Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1158824Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-09-07T06:46:12.1161813Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-09-07T06:46:12.1164683Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-09-07T06:46:12.1167825Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-09-07T06:46:12.1170887Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-09-07T06:46:12.1174076Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1177009Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-09-07T06:46:12.1179966Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-09-07T06:46:12.1183737Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-09-07T06:46:12.1186947Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-09-07T06:46:12.1190039Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-09-07T06:46:12.1193279Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1196215Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-09-07T06:46:12.1199214Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-09-07T06:46:12.1202138Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-09-07T06:46:12.1205233Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-09-07T06:46:12.1208258Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-09-07T06:46:12.1211354Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1214155Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-09-07T06:46:12.1217295Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-09-07T06:46:12.1220243Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-09-07T06:46:12.1223532Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1226470Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-09-07T06:46:12.1229397Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-09-07T06:46:12.1232565Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-09-07T06:46:12.1235511Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-09-07T06:46:12.1238700Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1241563Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-09-07T06:46:12.1244643Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-09-07T06:46:12.1247675Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-09-07T06:46:12.1250821Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1253727Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-09-07T06:46:12.1256612Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-09-07T06:46:12.1259916Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-09-07T06:46:12.1263091Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-09-07T06:46:12.1266510Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-09-07T06:46:12.1269587Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-09-07T06:46:12.1272513Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-09-07T06:46:12.1275615Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-09-07T06:46:12.1278535Z adding 'torch/include/ATen/ops/_conj.h' 2025-09-07T06:46:12.1281668Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1285517Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-09-07T06:46:12.1288736Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1291832Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.1294631Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-09-07T06:46:12.1297718Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-09-07T06:46:12.1300650Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-09-07T06:46:12.1303865Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-09-07T06:46:12.1306833Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-09-07T06:46:12.1310011Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1312796Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-09-07T06:46:12.1315862Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-09-07T06:46:12.1319375Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-09-07T06:46:12.1322776Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-09-07T06:46:12.1325713Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-09-07T06:46:12.1328907Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-09-07T06:46:12.1332091Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-09-07T06:46:12.1335400Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.1338322Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-09-07T06:46:12.1341362Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-09-07T06:46:12.1344421Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-09-07T06:46:12.1347466Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-09-07T06:46:12.1350450Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-09-07T06:46:12.1353649Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-09-07T06:46:12.1356708Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-09-07T06:46:12.1360010Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.1362906Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-09-07T06:46:12.1366046Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-09-07T06:46:12.1368925Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-09-07T06:46:12.1371988Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-09-07T06:46:12.1374989Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-09-07T06:46:12.1378133Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-09-07T06:46:12.1381127Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-09-07T06:46:12.1384783Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-09-07T06:46:12.1389471Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-09-07T06:46:12.1394262Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-09-07T06:46:12.1398502Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-09-07T06:46:12.1401698Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-09-07T06:46:12.1405933Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-09-07T06:46:12.1410719Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-09-07T06:46:12.1416553Z adding 'torch/include/ATen/ops/_convolution.h' 2025-09-07T06:46:12.1422096Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1425500Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1429417Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-09-07T06:46:12.1432975Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1436519Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-09-07T06:46:12.1440369Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-09-07T06:46:12.1443685Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-09-07T06:46:12.1447555Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1450505Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-09-07T06:46:12.1454351Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-09-07T06:46:12.1457687Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-09-07T06:46:12.1461551Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-09-07T06:46:12.1465420Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-09-07T06:46:12.1468646Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-09-07T06:46:12.1472543Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1475490Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-09-07T06:46:12.1479357Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-09-07T06:46:12.1483071Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1486170Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-09-07T06:46:12.1489887Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-09-07T06:46:12.1493033Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-09-07T06:46:12.1496728Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-09-07T06:46:12.1499745Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-09-07T06:46:12.1503612Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-09-07T06:46:12.1506981Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-09-07T06:46:12.1510611Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-09-07T06:46:12.1514112Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-09-07T06:46:12.1517452Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-09-07T06:46:12.1521137Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-09-07T06:46:12.1524469Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-09-07T06:46:12.1528083Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-09-07T06:46:12.1531396Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-09-07T06:46:12.1535343Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-09-07T06:46:12.1539168Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-09-07T06:46:12.1542636Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1546650Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-09-07T06:46:12.1550026Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-09-07T06:46:12.1553701Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-09-07T06:46:12.1557624Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-09-07T06:46:12.1561066Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1564655Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-09-07T06:46:12.1567824Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-09-07T06:46:12.1571644Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-09-07T06:46:12.1574897Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-09-07T06:46:12.1578752Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-09-07T06:46:12.1582858Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-09-07T06:46:12.1586339Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-09-07T06:46:12.1589402Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-09-07T06:46:12.1593124Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-09-07T06:46:12.1596692Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-09-07T06:46:12.1600051Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-09-07T06:46:12.1603103Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-09-07T06:46:12.1606370Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-09-07T06:46:12.1610138Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-09-07T06:46:12.1613576Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1616643Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-09-07T06:46:12.1619659Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-09-07T06:46:12.1623903Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-09-07T06:46:12.1627278Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-09-07T06:46:12.1630557Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1633584Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-09-07T06:46:12.1636565Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-09-07T06:46:12.1640131Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-09-07T06:46:12.1644315Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-09-07T06:46:12.1648722Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-09-07T06:46:12.1652593Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1655770Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-09-07T06:46:12.1658901Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-09-07T06:46:12.1662495Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-09-07T06:46:12.1666062Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1669204Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-09-07T06:46:12.1672648Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-09-07T06:46:12.1676185Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1679171Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-09-07T06:46:12.1682085Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-09-07T06:46:12.1685312Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-09-07T06:46:12.1688400Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-09-07T06:46:12.1691841Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-09-07T06:46:12.1695036Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-09-07T06:46:12.1698959Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1701812Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-09-07T06:46:12.1704991Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-09-07T06:46:12.1707953Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-09-07T06:46:12.1711108Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1713895Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-09-07T06:46:12.1716963Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-09-07T06:46:12.1719931Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-09-07T06:46:12.1723064Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1726315Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-09-07T06:46:12.1729350Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-09-07T06:46:12.1732347Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-09-07T06:46:12.1735530Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1738346Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-09-07T06:46:12.1741401Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-09-07T06:46:12.1744486Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-09-07T06:46:12.1747536Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-09-07T06:46:12.1750509Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-09-07T06:46:12.1753384Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-09-07T06:46:12.1756450Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-09-07T06:46:12.1759407Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-09-07T06:46:12.1762408Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-09-07T06:46:12.1765318Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-09-07T06:46:12.1768192Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-09-07T06:46:12.1771238Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-09-07T06:46:12.1774256Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-09-07T06:46:12.1777384Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1780218Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-09-07T06:46:12.1783293Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-09-07T06:46:12.1786150Z adding 'torch/include/ATen/ops/_dimI.h' 2025-09-07T06:46:12.1789075Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-09-07T06:46:12.1792156Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-09-07T06:46:12.1794995Z adding 'torch/include/ATen/ops/_dimV.h' 2025-09-07T06:46:12.1798872Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-09-07T06:46:12.1803068Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-09-07T06:46:12.1806116Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-09-07T06:46:12.1810329Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.1813267Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-09-07T06:46:12.1817780Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-09-07T06:46:12.1821037Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-09-07T06:46:12.1825117Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1828267Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-09-07T06:46:12.1832119Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-09-07T06:46:12.1835988Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-09-07T06:46:12.1839292Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-09-07T06:46:12.1844110Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-09-07T06:46:12.1847413Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-09-07T06:46:12.1851060Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-09-07T06:46:12.1855217Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-09-07T06:46:12.1858499Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-09-07T06:46:12.1862893Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-09-07T06:46:12.1866094Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-09-07T06:46:12.1870964Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-09-07T06:46:12.1876266Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-09-07T06:46:12.1881609Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-09-07T06:46:12.1886501Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-09-07T06:46:12.1891724Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-09-07T06:46:12.1895440Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-09-07T06:46:12.1899543Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-09-07T06:46:12.1902692Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-09-07T06:46:12.1906959Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-09-07T06:46:12.1910868Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-09-07T06:46:12.1914746Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1917852Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-09-07T06:46:12.1921396Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-09-07T06:46:12.1925376Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-09-07T06:46:12.1928770Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-09-07T06:46:12.1932329Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-09-07T06:46:12.1935671Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-09-07T06:46:12.1939053Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-09-07T06:46:12.1943096Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-09-07T06:46:12.1946352Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-09-07T06:46:12.1949372Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-09-07T06:46:12.1952624Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-09-07T06:46:12.1955915Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1959023Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-09-07T06:46:12.1962120Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-09-07T06:46:12.1965705Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-09-07T06:46:12.1969318Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1973055Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-09-07T06:46:12.1976223Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-09-07T06:46:12.1979288Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-09-07T06:46:12.1982584Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-09-07T06:46:12.1986028Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-09-07T06:46:12.1989385Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.1992424Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-09-07T06:46:12.1995515Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-09-07T06:46:12.1998595Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-09-07T06:46:12.2001957Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-09-07T06:46:12.2005095Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-09-07T06:46:12.2008410Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-09-07T06:46:12.2011746Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-09-07T06:46:12.2015086Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2018112Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-09-07T06:46:12.2021162Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-09-07T06:46:12.2024266Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-09-07T06:46:12.2028076Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-09-07T06:46:12.2031455Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-09-07T06:46:12.2034988Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.2037951Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-09-07T06:46:12.2041163Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-09-07T06:46:12.2044855Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-09-07T06:46:12.2048362Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2051499Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-09-07T06:46:12.2054561Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-09-07T06:46:12.2057889Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-09-07T06:46:12.2061791Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-09-07T06:46:12.2065493Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2068633Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-09-07T06:46:12.2071735Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-09-07T06:46:12.2075103Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-09-07T06:46:12.2078133Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-09-07T06:46:12.2081347Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2084178Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-09-07T06:46:12.2087604Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-09-07T06:46:12.2090827Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-09-07T06:46:12.2094008Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-09-07T06:46:12.2097176Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-09-07T06:46:12.2100306Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-09-07T06:46:12.2103326Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-09-07T06:46:12.2106539Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-09-07T06:46:12.2109828Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2112849Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-09-07T06:46:12.2115890Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-09-07T06:46:12.2118856Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-09-07T06:46:12.2122124Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-09-07T06:46:12.2125267Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-09-07T06:46:12.2129177Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-09-07T06:46:12.2132284Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-09-07T06:46:12.2135915Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-09-07T06:46:12.2139036Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-09-07T06:46:12.2142854Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-09-07T06:46:12.2146271Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2150049Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-09-07T06:46:12.2153436Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-09-07T06:46:12.2156814Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-09-07T06:46:12.2160681Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-09-07T06:46:12.2164149Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-09-07T06:46:12.2168574Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2171433Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-09-07T06:46:12.2175174Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-09-07T06:46:12.2178571Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-09-07T06:46:12.2182166Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-09-07T06:46:12.2186172Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-09-07T06:46:12.2189473Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-09-07T06:46:12.2193319Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-09-07T06:46:12.2196789Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-09-07T06:46:12.2200140Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-09-07T06:46:12.2204031Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-09-07T06:46:12.2207399Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-09-07T06:46:12.2211293Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-09-07T06:46:12.2214682Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-09-07T06:46:12.2218474Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-09-07T06:46:12.2222060Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-09-07T06:46:12.2225411Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-09-07T06:46:12.2229124Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-09-07T06:46:12.2232131Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-09-07T06:46:12.2235999Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-09-07T06:46:12.2239314Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-09-07T06:46:12.2242896Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-09-07T06:46:12.2246368Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-09-07T06:46:12.2249521Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-09-07T06:46:12.2253122Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-09-07T06:46:12.2256626Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-09-07T06:46:12.2260670Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-09-07T06:46:12.2264052Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-09-07T06:46:12.2267800Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-09-07T06:46:12.2271917Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-09-07T06:46:12.2275390Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-09-07T06:46:12.2280023Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-09-07T06:46:12.2285189Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-09-07T06:46:12.2290126Z adding 'torch/include/ATen/ops/_foobar.h' 2025-09-07T06:46:12.2294850Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2297920Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-09-07T06:46:12.2301723Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-09-07T06:46:12.2306767Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-09-07T06:46:12.2311593Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-09-07T06:46:12.2316412Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2319492Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-09-07T06:46:12.2323134Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-09-07T06:46:12.2326523Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-09-07T06:46:12.2330388Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-09-07T06:46:12.2333664Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2337455Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-09-07T06:46:12.2340492Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-09-07T06:46:12.2343733Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-09-07T06:46:12.2348050Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-09-07T06:46:12.2351642Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2354712Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-09-07T06:46:12.2357919Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-09-07T06:46:12.2361682Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-09-07T06:46:12.2366192Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-09-07T06:46:12.2369748Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2372840Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-09-07T06:46:12.2385818Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-09-07T06:46:12.2386504Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-09-07T06:46:12.2386882Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-09-07T06:46:12.2387431Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2390019Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-09-07T06:46:12.2393085Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-09-07T06:46:12.2398153Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-09-07T06:46:12.2400826Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-09-07T06:46:12.2403985Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2406947Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-09-07T06:46:12.2409884Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-09-07T06:46:12.2413077Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-09-07T06:46:12.2416206Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-09-07T06:46:12.2420239Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2423326Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-09-07T06:46:12.2426251Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-09-07T06:46:12.2429424Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-09-07T06:46:12.2433190Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-09-07T06:46:12.2436503Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2439391Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-09-07T06:46:12.2442356Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-09-07T06:46:12.2445503Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-09-07T06:46:12.2448820Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-09-07T06:46:12.2452713Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2455891Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-09-07T06:46:12.2458984Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-09-07T06:46:12.2462567Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-09-07T06:46:12.2466163Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-09-07T06:46:12.2469510Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2472638Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-09-07T06:46:12.2475748Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-09-07T06:46:12.2479296Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-09-07T06:46:12.2482534Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-09-07T06:46:12.2485783Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2488738Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-09-07T06:46:12.2491702Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-09-07T06:46:12.2494821Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-09-07T06:46:12.2497895Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-09-07T06:46:12.2501054Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2504073Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-09-07T06:46:12.2506997Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-09-07T06:46:12.2510147Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-09-07T06:46:12.2513224Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-09-07T06:46:12.2516397Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2519288Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-09-07T06:46:12.2522192Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-09-07T06:46:12.2525380Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-09-07T06:46:12.2528701Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-09-07T06:46:12.2532101Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2535137Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-09-07T06:46:12.2538281Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-09-07T06:46:12.2542060Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-09-07T06:46:12.2545399Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-09-07T06:46:12.2548565Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2551518Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-09-07T06:46:12.2555569Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-09-07T06:46:12.2560359Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-09-07T06:46:12.2563622Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-09-07T06:46:12.2567899Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2570581Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-09-07T06:46:12.2574274Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-09-07T06:46:12.2577546Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-09-07T06:46:12.2581232Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-09-07T06:46:12.2585163Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2588231Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-09-07T06:46:12.2591718Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-09-07T06:46:12.2594963Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-09-07T06:46:12.2598752Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-09-07T06:46:12.2602120Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2605708Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-09-07T06:46:12.2609056Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-09-07T06:46:12.2612472Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-09-07T06:46:12.2616122Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-09-07T06:46:12.2619437Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2623066Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-09-07T06:46:12.2626149Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-09-07T06:46:12.2630021Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-09-07T06:46:12.2633508Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-09-07T06:46:12.2637052Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2640580Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-09-07T06:46:12.2643659Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-09-07T06:46:12.2647375Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-09-07T06:46:12.2650790Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-09-07T06:46:12.2655261Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2658893Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-09-07T06:46:12.2662204Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-09-07T06:46:12.2666490Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-09-07T06:46:12.2669985Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-09-07T06:46:12.2673644Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2677145Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-09-07T06:46:12.2680244Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-09-07T06:46:12.2684037Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-09-07T06:46:12.2687158Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-09-07T06:46:12.2690938Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-09-07T06:46:12.2694232Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2697903Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-09-07T06:46:12.2701118Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-09-07T06:46:12.2704850Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-09-07T06:46:12.2708419Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-09-07T06:46:12.2711787Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2715336Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-09-07T06:46:12.2718400Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-09-07T06:46:12.2722299Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-09-07T06:46:12.2725607Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-09-07T06:46:12.2729218Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2732686Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-09-07T06:46:12.2735765Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-09-07T06:46:12.2739472Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-09-07T06:46:12.2742977Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2746691Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-09-07T06:46:12.2749784Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-09-07T06:46:12.2753563Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-09-07T06:46:12.2757115Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-09-07T06:46:12.2760544Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2764090Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-09-07T06:46:12.2767175Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-09-07T06:46:12.2770929Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-09-07T06:46:12.2774435Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-09-07T06:46:12.2778411Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2782080Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-09-07T06:46:12.2787013Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-09-07T06:46:12.2792506Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-09-07T06:46:12.2797841Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-09-07T06:46:12.2801667Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2805390Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-09-07T06:46:12.2808616Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-09-07T06:46:12.2812953Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-09-07T06:46:12.2816716Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-09-07T06:46:12.2820734Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2823956Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-09-07T06:46:12.2827121Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-09-07T06:46:12.2831673Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-09-07T06:46:12.2834988Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-09-07T06:46:12.2838192Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2841124Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-09-07T06:46:12.2844049Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-09-07T06:46:12.2848182Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-09-07T06:46:12.2851909Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-09-07T06:46:12.2855131Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2858113Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-09-07T06:46:12.2861117Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-09-07T06:46:12.2864406Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-09-07T06:46:12.2867781Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-09-07T06:46:12.2871227Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2874283Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-09-07T06:46:12.2877944Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-09-07T06:46:12.2881645Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-09-07T06:46:12.2884921Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-09-07T06:46:12.2888231Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2891203Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-09-07T06:46:12.2894197Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-09-07T06:46:12.2897598Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-09-07T06:46:12.2900644Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-09-07T06:46:12.2903975Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2906898Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-09-07T06:46:12.2909809Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-09-07T06:46:12.2912952Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-09-07T06:46:12.2916046Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-09-07T06:46:12.2919257Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2922171Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-09-07T06:46:12.2925069Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-09-07T06:46:12.2928228Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-09-07T06:46:12.2931293Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-09-07T06:46:12.2935211Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2938274Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-09-07T06:46:12.2941954Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-09-07T06:46:12.2945711Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-09-07T06:46:12.2949003Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-09-07T06:46:12.2953169Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2955874Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-09-07T06:46:12.2959440Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-09-07T06:46:12.2962662Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-09-07T06:46:12.2966467Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-09-07T06:46:12.2978627Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2978818Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-09-07T06:46:12.2978958Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-09-07T06:46:12.2982037Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-09-07T06:46:12.2985747Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-09-07T06:46:12.2989107Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.2992766Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-09-07T06:46:12.2995742Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-09-07T06:46:12.2999628Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-09-07T06:46:12.3003396Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-09-07T06:46:12.3008250Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3012810Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-09-07T06:46:12.3017381Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-09-07T06:46:12.3022231Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-09-07T06:46:12.3027587Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-09-07T06:46:12.3032704Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3037433Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-09-07T06:46:12.3042372Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-09-07T06:46:12.3047743Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-09-07T06:46:12.3051085Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-09-07T06:46:12.3054903Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3057918Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-09-07T06:46:12.3061569Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-09-07T06:46:12.3065210Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-09-07T06:46:12.3068623Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-09-07T06:46:12.3071876Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3074801Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-09-07T06:46:12.3078387Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-09-07T06:46:12.3081609Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-09-07T06:46:12.3084726Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-09-07T06:46:12.3087941Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3090881Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-09-07T06:46:12.3094588Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-09-07T06:46:12.3097813Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-09-07T06:46:12.3100951Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-09-07T06:46:12.3104267Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3107209Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-09-07T06:46:12.3110139Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-09-07T06:46:12.3113275Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-09-07T06:46:12.3116318Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-09-07T06:46:12.3119412Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-09-07T06:46:12.3122304Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-09-07T06:46:12.3126110Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-09-07T06:46:12.3129191Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-09-07T06:46:12.3132657Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3135496Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-09-07T06:46:12.3138625Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-09-07T06:46:12.3141706Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-09-07T06:46:12.3145039Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3147975Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-09-07T06:46:12.3151261Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3154121Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-09-07T06:46:12.3157330Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-09-07T06:46:12.3160257Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-09-07T06:46:12.3163336Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-09-07T06:46:12.3166769Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-09-07T06:46:12.3170278Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3173379Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-09-07T06:46:12.3176391Z adding 'torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h' 2025-09-07T06:46:12.3179845Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-09-07T06:46:12.3184150Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-09-07T06:46:12.3188638Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-09-07T06:46:12.3192557Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3195958Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-09-07T06:46:12.3199636Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-09-07T06:46:12.3202981Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-09-07T06:46:12.3207516Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-09-07T06:46:12.3212035Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-09-07T06:46:12.3215770Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3220429Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-09-07T06:46:12.3224256Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-09-07T06:46:12.3227571Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-09-07T06:46:12.3232231Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-09-07T06:46:12.3236181Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-09-07T06:46:12.3239617Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3243139Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-09-07T06:46:12.3246205Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-09-07T06:46:12.3250033Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-09-07T06:46:12.3253827Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-09-07T06:46:12.3257785Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3261364Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-09-07T06:46:12.3264685Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-09-07T06:46:12.3268474Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-09-07T06:46:12.3272334Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-09-07T06:46:12.3275928Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-09-07T06:46:12.3279769Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-09-07T06:46:12.3284620Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-09-07T06:46:12.3289299Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-09-07T06:46:12.3294206Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-09-07T06:46:12.3299149Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.3303992Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-09-07T06:46:12.3308664Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-09-07T06:46:12.3313546Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-09-07T06:46:12.3317462Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-09-07T06:46:12.3320928Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-09-07T06:46:12.3324593Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-09-07T06:46:12.3328241Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-09-07T06:46:12.3331506Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-09-07T06:46:12.3335391Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-09-07T06:46:12.3339045Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-09-07T06:46:12.3342600Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3346354Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-09-07T06:46:12.3349741Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-09-07T06:46:12.3352928Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-09-07T06:46:12.3356704Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-09-07T06:46:12.3359928Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-09-07T06:46:12.3363778Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3366804Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-09-07T06:46:12.3370009Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3373113Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3375849Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-09-07T06:46:12.3379306Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-09-07T06:46:12.3381954Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-09-07T06:46:12.3385149Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-09-07T06:46:12.3388172Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-09-07T06:46:12.3391497Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.3395002Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-09-07T06:46:12.3398225Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-09-07T06:46:12.3401398Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-09-07T06:46:12.3404494Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-09-07T06:46:12.3407788Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.3410617Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-09-07T06:46:12.3413732Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-09-07T06:46:12.3416938Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3419806Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-09-07T06:46:12.3423022Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-09-07T06:46:12.3426116Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-09-07T06:46:12.3429316Z adding 'torch/include/ATen/ops/_grouped_mm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3432250Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-09-07T06:46:12.3435747Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-09-07T06:46:12.3439201Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-09-07T06:46:12.3442290Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-09-07T06:46:12.3445496Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.3449036Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-09-07T06:46:12.3452173Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-09-07T06:46:12.3455161Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-09-07T06:46:12.3458337Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3461136Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-09-07T06:46:12.3464325Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-09-07T06:46:12.3467388Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-09-07T06:46:12.3470672Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3473640Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-09-07T06:46:12.3476650Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-09-07T06:46:12.3479834Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-09-07T06:46:12.3482999Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-09-07T06:46:12.3486244Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3489182Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-09-07T06:46:12.3492104Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-09-07T06:46:12.3495257Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-09-07T06:46:12.3498434Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-09-07T06:46:12.3501697Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3504791Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-09-07T06:46:12.3507759Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-09-07T06:46:12.3510906Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-09-07T06:46:12.3513991Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-09-07T06:46:12.3517229Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3520228Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-09-07T06:46:12.3523204Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-09-07T06:46:12.3526188Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-09-07T06:46:12.3529145Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-09-07T06:46:12.3532357Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-09-07T06:46:12.3535337Z adding 'torch/include/ATen/ops/_indices.h' 2025-09-07T06:46:12.3538364Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-09-07T06:46:12.3541538Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3544817Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3547876Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-09-07T06:46:12.3551351Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-09-07T06:46:12.3554835Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-09-07T06:46:12.3558058Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-09-07T06:46:12.3561602Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-09-07T06:46:12.3564773Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-09-07T06:46:12.3568455Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-09-07T06:46:12.3571452Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-09-07T06:46:12.3575292Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-09-07T06:46:12.3578493Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-09-07T06:46:12.3582384Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3585867Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-09-07T06:46:12.3589038Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-09-07T06:46:12.3592627Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-09-07T06:46:12.3595896Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3599382Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-09-07T06:46:12.3602490Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-09-07T06:46:12.3606281Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-09-07T06:46:12.3609667Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.3612856Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-09-07T06:46:12.3616356Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-09-07T06:46:12.3619728Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-09-07T06:46:12.3623578Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-09-07T06:46:12.3626710Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-09-07T06:46:12.3630337Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-09-07T06:46:12.3633536Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-09-07T06:46:12.3637222Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-09-07T06:46:12.3641141Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3643986Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-09-07T06:46:12.3647471Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-09-07T06:46:12.3650599Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-09-07T06:46:12.3654331Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3657275Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-09-07T06:46:12.3660982Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-09-07T06:46:12.3664245Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-09-07T06:46:12.3668235Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3671557Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-09-07T06:46:12.3674874Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-09-07T06:46:12.3678356Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-09-07T06:46:12.3681783Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-09-07T06:46:12.3685377Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-09-07T06:46:12.3688626Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-09-07T06:46:12.3692501Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-09-07T06:46:12.3696347Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3699492Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-09-07T06:46:12.3703089Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-09-07T06:46:12.3706146Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-09-07T06:46:12.3709839Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-09-07T06:46:12.3712871Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-09-07T06:46:12.3716779Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-09-07T06:46:12.3720012Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-09-07T06:46:12.3723579Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-09-07T06:46:12.3727008Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-09-07T06:46:12.3730106Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-09-07T06:46:12.3733708Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-09-07T06:46:12.3736931Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-09-07T06:46:12.3740801Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3743883Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-09-07T06:46:12.3747710Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-09-07T06:46:12.3750872Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-09-07T06:46:12.3754414Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-09-07T06:46:12.3757903Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-09-07T06:46:12.3761229Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-09-07T06:46:12.3764958Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-09-07T06:46:12.3768362Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3772304Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-09-07T06:46:12.3775405Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-09-07T06:46:12.3778933Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-09-07T06:46:12.3782556Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-09-07T06:46:12.3787289Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-09-07T06:46:12.3792538Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-09-07T06:46:12.3797486Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-09-07T06:46:12.3801606Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3805005Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-09-07T06:46:12.3808484Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-09-07T06:46:12.3812068Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-09-07T06:46:12.3815406Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-09-07T06:46:12.3819058Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-09-07T06:46:12.3822679Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-09-07T06:46:12.3825630Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-09-07T06:46:12.3828735Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-09-07T06:46:12.3832542Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-09-07T06:46:12.3835504Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-09-07T06:46:12.3838534Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-09-07T06:46:12.3841807Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-09-07T06:46:12.3844689Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-09-07T06:46:12.3848813Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3851797Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-09-07T06:46:12.3855861Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-09-07T06:46:12.3858874Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-09-07T06:46:12.3861992Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-09-07T06:46:12.3865105Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-09-07T06:46:12.3868259Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-09-07T06:46:12.3871501Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3874371Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-09-07T06:46:12.3877724Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-09-07T06:46:12.3881111Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-09-07T06:46:12.3884195Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-09-07T06:46:12.3887160Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-09-07T06:46:12.3890267Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-09-07T06:46:12.3893300Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-09-07T06:46:12.3896380Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-09-07T06:46:12.3899417Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-09-07T06:46:12.3902379Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-09-07T06:46:12.3905633Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-09-07T06:46:12.3908967Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-09-07T06:46:12.3912227Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3915096Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-09-07T06:46:12.3918419Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-09-07T06:46:12.3921484Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-09-07T06:46:12.3924661Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.3927558Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-09-07T06:46:12.3930564Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-09-07T06:46:12.3934248Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-09-07T06:46:12.3937713Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-09-07T06:46:12.3940985Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-09-07T06:46:12.3944330Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-09-07T06:46:12.3947628Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-09-07T06:46:12.3950592Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3953503Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-09-07T06:46:12.3956717Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3959800Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.3962671Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-09-07T06:46:12.3965783Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-09-07T06:46:12.3968712Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-09-07T06:46:12.3971766Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-09-07T06:46:12.3974969Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-09-07T06:46:12.3978206Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.3981156Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-09-07T06:46:12.3984359Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-09-07T06:46:12.3987351Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-09-07T06:46:12.3990539Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-09-07T06:46:12.3993602Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-09-07T06:46:12.3997684Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4000718Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-09-07T06:46:12.4003739Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-09-07T06:46:12.4006675Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-09-07T06:46:12.4009803Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-09-07T06:46:12.4012748Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-09-07T06:46:12.4015921Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4018818Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-09-07T06:46:12.4021687Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-09-07T06:46:12.4024901Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-09-07T06:46:12.4027979Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-09-07T06:46:12.4031074Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-09-07T06:46:12.4034313Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4037274Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-09-07T06:46:12.4040253Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-09-07T06:46:12.4043251Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-09-07T06:46:12.4046407Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-09-07T06:46:12.4049649Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4052594Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-09-07T06:46:12.4055656Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-09-07T06:46:12.4058508Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-09-07T06:46:12.4061654Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-09-07T06:46:12.4064853Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-09-07T06:46:12.4067981Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-09-07T06:46:12.4070928Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-09-07T06:46:12.4074029Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-09-07T06:46:12.4077007Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-09-07T06:46:12.4080184Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4082997Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-09-07T06:46:12.4086064Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-09-07T06:46:12.4089113Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-09-07T06:46:12.4092373Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4095278Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-09-07T06:46:12.4098795Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-09-07T06:46:12.4102091Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-09-07T06:46:12.4105718Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-09-07T06:46:12.4109154Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4112026Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-09-07T06:46:12.4115247Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-09-07T06:46:12.4118824Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-09-07T06:46:12.4122268Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4125144Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-09-07T06:46:12.4128303Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-09-07T06:46:12.4132060Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-09-07T06:46:12.4135432Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4138524Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-09-07T06:46:12.4141692Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-09-07T06:46:12.4144999Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-09-07T06:46:12.4148285Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-09-07T06:46:12.4151596Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4154493Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-09-07T06:46:12.4157793Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-09-07T06:46:12.4161386Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-09-07T06:46:12.4164862Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-09-07T06:46:12.4168246Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4171267Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-09-07T06:46:12.4174461Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-09-07T06:46:12.4177475Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-09-07T06:46:12.4180840Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-09-07T06:46:12.4183872Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-09-07T06:46:12.4186991Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4189920Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-09-07T06:46:12.4193044Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4196121Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.4199438Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-09-07T06:46:12.4202668Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-09-07T06:46:12.4206192Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-09-07T06:46:12.4209299Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-09-07T06:46:12.4213096Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-09-07T06:46:12.4216311Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-09-07T06:46:12.4220002Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-09-07T06:46:12.4223340Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-09-07T06:46:12.4226765Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-09-07T06:46:12.4230628Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-09-07T06:46:12.4233739Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-09-07T06:46:12.4237528Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4240474Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-09-07T06:46:12.4244253Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-09-07T06:46:12.4247548Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4251158Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-09-07T06:46:12.4254619Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-09-07T06:46:12.4257831Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-09-07T06:46:12.4261525Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-09-07T06:46:12.4264985Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-09-07T06:46:12.4268632Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-09-07T06:46:12.4271837Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-09-07T06:46:12.4275579Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-09-07T06:46:12.4279036Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-09-07T06:46:12.4282345Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-09-07T06:46:12.4286027Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-09-07T06:46:12.4290657Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-09-07T06:46:12.4295429Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-09-07T06:46:12.4300043Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-09-07T06:46:12.4304690Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-09-07T06:46:12.4309439Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-09-07T06:46:12.4314112Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-09-07T06:46:12.4318589Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-09-07T06:46:12.4323368Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-09-07T06:46:12.4328050Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-09-07T06:46:12.4330964Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-09-07T06:46:12.4334661Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-09-07T06:46:12.4344475Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-09-07T06:46:12.4348248Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-09-07T06:46:12.4351514Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-09-07T06:46:12.4354430Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-09-07T06:46:12.4357734Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-09-07T06:46:12.4361485Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4364676Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.4367423Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-09-07T06:46:12.4370574Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-09-07T06:46:12.4373478Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-09-07T06:46:12.4377371Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-09-07T06:46:12.4380539Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-09-07T06:46:12.4383649Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-09-07T06:46:12.4386732Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-09-07T06:46:12.4389710Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-09-07T06:46:12.4392684Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-09-07T06:46:12.4395748Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-09-07T06:46:12.4398806Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-09-07T06:46:12.4402008Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4404940Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-09-07T06:46:12.4408857Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-09-07T06:46:12.4411891Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-09-07T06:46:12.4415015Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-09-07T06:46:12.4418048Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-09-07T06:46:12.4420935Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-09-07T06:46:12.4424069Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-09-07T06:46:12.4427043Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-09-07T06:46:12.4430158Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-09-07T06:46:12.4433360Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-09-07T06:46:12.4436668Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4439606Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-09-07T06:46:12.4443343Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-09-07T06:46:12.4446540Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-09-07T06:46:12.4449786Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4452603Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-09-07T06:46:12.4455695Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-09-07T06:46:12.4459226Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-09-07T06:46:12.4462372Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-09-07T06:46:12.4465667Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-09-07T06:46:12.4469299Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-09-07T06:46:12.4472011Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4475243Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-09-07T06:46:12.4478398Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-09-07T06:46:12.4481481Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-09-07T06:46:12.4484622Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4487405Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-09-07T06:46:12.4490502Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-09-07T06:46:12.4493529Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-09-07T06:46:12.4496667Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-09-07T06:46:12.4499930Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4503248Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.4506046Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-09-07T06:46:12.4509292Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-09-07T06:46:12.4512345Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-09-07T06:46:12.4515400Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-09-07T06:46:12.4518324Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-09-07T06:46:12.4521385Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-09-07T06:46:12.4524450Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-09-07T06:46:12.4527661Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-09-07T06:46:12.4531003Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4534196Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.4537096Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-09-07T06:46:12.4540346Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-09-07T06:46:12.4543365Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-09-07T06:46:12.4546530Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-09-07T06:46:12.4549789Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-09-07T06:46:12.4553019Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4555943Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-09-07T06:46:12.4559144Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-09-07T06:46:12.4563260Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-09-07T06:46:12.4566597Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4569755Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-09-07T06:46:12.4573504Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-09-07T06:46:12.4577112Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-09-07T06:46:12.4581007Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4584205Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-09-07T06:46:12.4588121Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-09-07T06:46:12.4591271Z adding 'torch/include/ATen/ops/_nnz.h' 2025-09-07T06:46:12.4594831Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-09-07T06:46:12.4598453Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-09-07T06:46:12.4601748Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-09-07T06:46:12.4605472Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-09-07T06:46:12.4608837Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4612603Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-09-07T06:46:12.4615675Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-09-07T06:46:12.4619531Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4622865Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-09-07T06:46:12.4626284Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-09-07T06:46:12.4629960Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-09-07T06:46:12.4633277Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4636702Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-09-07T06:46:12.4639809Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-09-07T06:46:12.4643668Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-09-07T06:46:12.4647139Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4650424Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-09-07T06:46:12.4654062Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-09-07T06:46:12.4657577Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-09-07T06:46:12.4661156Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4664288Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-09-07T06:46:12.4668099Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-09-07T06:46:12.4671519Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-09-07T06:46:12.4675190Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-09-07T06:46:12.4678682Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-09-07T06:46:12.4682241Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-09-07T06:46:12.4685969Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-09-07T06:46:12.4689095Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-09-07T06:46:12.4693014Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4696061Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-09-07T06:46:12.4699775Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-09-07T06:46:12.4703114Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-09-07T06:46:12.4706573Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-09-07T06:46:12.4710183Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-09-07T06:46:12.4713497Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4716999Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-09-07T06:46:12.4720103Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-09-07T06:46:12.4723724Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-09-07T06:46:12.4727005Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-09-07T06:46:12.4730680Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-09-07T06:46:12.4734369Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4737450Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-09-07T06:46:12.4741146Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-09-07T06:46:12.4744359Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-09-07T06:46:12.4748013Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-09-07T06:46:12.4751318Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-09-07T06:46:12.4755010Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-09-07T06:46:12.4758186Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-09-07T06:46:12.4761707Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-09-07T06:46:12.4765252Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-09-07T06:46:12.4769836Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-09-07T06:46:12.4772907Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-09-07T06:46:12.4775987Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-09-07T06:46:12.4779784Z adding 'torch/include/ATen/ops/_print.h' 2025-09-07T06:46:12.4783460Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4786575Z adding 'torch/include/ATen/ops/_print_native.h' 2025-09-07T06:46:12.4790277Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-09-07T06:46:12.4794470Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-09-07T06:46:12.4797748Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4802309Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-09-07T06:46:12.4806975Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-09-07T06:46:12.4811574Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-09-07T06:46:12.4815072Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4818633Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-09-07T06:46:12.4821814Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-09-07T06:46:12.4825690Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-09-07T06:46:12.4829160Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-09-07T06:46:12.4833360Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4836561Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.4839320Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-09-07T06:46:12.4843183Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-09-07T06:46:12.4846527Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-09-07T06:46:12.4849607Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-09-07T06:46:12.4852619Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-09-07T06:46:12.4855509Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-09-07T06:46:12.4859009Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-09-07T06:46:12.4862430Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-09-07T06:46:12.4865817Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4868702Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-09-07T06:46:12.4871752Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-09-07T06:46:12.4874736Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-09-07T06:46:12.4877946Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4880747Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-09-07T06:46:12.4883782Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-09-07T06:46:12.4887076Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-09-07T06:46:12.4890929Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4894251Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-09-07T06:46:12.4897232Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-09-07T06:46:12.4900457Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-09-07T06:46:12.4903658Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-09-07T06:46:12.4906795Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4909609Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-09-07T06:46:12.4912695Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-09-07T06:46:12.4915688Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-09-07T06:46:12.4919437Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4921779Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-09-07T06:46:12.4924711Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-09-07T06:46:12.4927732Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-09-07T06:46:12.4930952Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.4933844Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-09-07T06:46:12.4936823Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-09-07T06:46:12.4939782Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-09-07T06:46:12.4943016Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-09-07T06:46:12.4946062Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-09-07T06:46:12.4949950Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4952827Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-09-07T06:46:12.4955868Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-09-07T06:46:12.4958984Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-09-07T06:46:12.4962279Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.4965281Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-09-07T06:46:12.4968229Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-09-07T06:46:12.4971398Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-09-07T06:46:12.4974383Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-09-07T06:46:12.4977539Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-09-07T06:46:12.4980664Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-09-07T06:46:12.4984188Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-09-07T06:46:12.4987486Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-09-07T06:46:12.4990533Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-09-07T06:46:12.4993801Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-09-07T06:46:12.4996963Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-09-07T06:46:12.4999967Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-09-07T06:46:12.5003208Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-09-07T06:46:12.5006374Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-09-07T06:46:12.5009547Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-09-07T06:46:12.5012745Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-09-07T06:46:12.5015795Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-09-07T06:46:12.5019061Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-09-07T06:46:12.5022182Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-09-07T06:46:12.5025413Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-09-07T06:46:12.5028575Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-09-07T06:46:12.5031685Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-09-07T06:46:12.5035053Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-09-07T06:46:12.5038354Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-09-07T06:46:12.5041947Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-09-07T06:46:12.5044926Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-09-07T06:46:12.5048467Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-09-07T06:46:12.5051776Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-09-07T06:46:12.5055494Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-09-07T06:46:12.5058787Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-09-07T06:46:12.5062409Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-09-07T06:46:12.5065865Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-09-07T06:46:12.5069806Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-09-07T06:46:12.5073169Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-09-07T06:46:12.5076727Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-09-07T06:46:12.5080273Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-09-07T06:46:12.5083615Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-09-07T06:46:12.5087450Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-09-07T06:46:12.5091140Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-09-07T06:46:12.5095205Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5098700Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-09-07T06:46:12.5102140Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-09-07T06:46:12.5106152Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5109198Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-09-07T06:46:12.5113215Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-09-07T06:46:12.5116763Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-09-07T06:46:12.5120066Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-09-07T06:46:12.5123609Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-09-07T06:46:12.5126894Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-09-07T06:46:12.5130772Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-09-07T06:46:12.5134227Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-09-07T06:46:12.5137788Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-09-07T06:46:12.5141445Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-09-07T06:46:12.5144972Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-09-07T06:46:12.5148837Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-09-07T06:46:12.5152230Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5155904Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-09-07T06:46:12.5159455Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-09-07T06:46:12.5162625Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-09-07T06:46:12.5166450Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-09-07T06:46:12.5169539Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-09-07T06:46:12.5173249Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5176160Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-09-07T06:46:12.5179802Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-09-07T06:46:12.5184426Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-09-07T06:46:12.5188202Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5191943Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.5195367Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.5199083Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-09-07T06:46:12.5203139Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-09-07T06:46:12.5206805Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-09-07T06:46:12.5210889Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-09-07T06:46:12.5214288Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-09-07T06:46:12.5217718Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-09-07T06:46:12.5221471Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-09-07T06:46:12.5224770Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-09-07T06:46:12.5228651Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5231980Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-09-07T06:46:12.5235822Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-09-07T06:46:12.5239161Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-09-07T06:46:12.5242694Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5246036Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-09-07T06:46:12.5249259Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-09-07T06:46:12.5252827Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-09-07T06:46:12.5256102Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5259571Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-09-07T06:46:12.5262651Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-09-07T06:46:12.5266379Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-09-07T06:46:12.5269841Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5273026Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-09-07T06:46:12.5276552Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-09-07T06:46:12.5279726Z adding 'torch/include/ATen/ops/_softmax.h' 2025-09-07T06:46:12.5283385Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-09-07T06:46:12.5286828Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.5290312Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-09-07T06:46:12.5293466Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-09-07T06:46:12.5298234Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-09-07T06:46:12.5302933Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-09-07T06:46:12.5307404Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-09-07T06:46:12.5312451Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-09-07T06:46:12.5317289Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.5321884Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-09-07T06:46:12.5326580Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-09-07T06:46:12.5331246Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-09-07T06:46:12.5335988Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-09-07T06:46:12.5340510Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-09-07T06:46:12.5345168Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-09-07T06:46:12.5348331Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-09-07T06:46:12.5352304Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5355274Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-09-07T06:46:12.5359258Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-09-07T06:46:12.5362364Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-09-07T06:46:12.5366317Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-09-07T06:46:12.5369569Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5372679Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.5376039Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-09-07T06:46:12.5379340Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-09-07T06:46:12.5382320Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-09-07T06:46:12.5385497Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-09-07T06:46:12.5388600Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-09-07T06:46:12.5392327Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5395513Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-09-07T06:46:12.5398655Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-09-07T06:46:12.5401788Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-09-07T06:46:12.5405040Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5407885Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-09-07T06:46:12.5415934Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-09-07T06:46:12.5419330Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-09-07T06:46:12.5422866Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5426315Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-09-07T06:46:12.5429550Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-09-07T06:46:12.5433037Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-09-07T06:46:12.5436315Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5439168Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-09-07T06:46:12.5442286Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-09-07T06:46:12.5445661Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-09-07T06:46:12.5449521Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5452402Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-09-07T06:46:12.5455531Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-09-07T06:46:12.5458880Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-09-07T06:46:12.5462854Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-09-07T06:46:12.5466380Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5469776Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-09-07T06:46:12.5472886Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-09-07T06:46:12.5476251Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-09-07T06:46:12.5479387Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5482307Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-09-07T06:46:12.5485249Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-09-07T06:46:12.5488439Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-09-07T06:46:12.5491571Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-09-07T06:46:12.5494777Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5497605Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-09-07T06:46:12.5500710Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-09-07T06:46:12.5503821Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-09-07T06:46:12.5507021Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5509890Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-09-07T06:46:12.5513035Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-09-07T06:46:12.5516125Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-09-07T06:46:12.5519272Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5522181Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-09-07T06:46:12.5525364Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-09-07T06:46:12.5528530Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-09-07T06:46:12.5531813Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5534678Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-09-07T06:46:12.5537802Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-09-07T06:46:12.5540885Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-09-07T06:46:12.5544132Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-09-07T06:46:12.5547353Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5550158Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-09-07T06:46:12.5553283Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-09-07T06:46:12.5557453Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5560369Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5563230Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-09-07T06:46:12.5566589Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-09-07T06:46:12.5569651Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-09-07T06:46:12.5572838Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5575656Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-09-07T06:46:12.5578785Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-09-07T06:46:12.5581848Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-09-07T06:46:12.5585165Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5588036Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-09-07T06:46:12.5591261Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-09-07T06:46:12.5594193Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-09-07T06:46:12.5597322Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-09-07T06:46:12.5600284Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-09-07T06:46:12.5603784Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-09-07T06:46:12.5607349Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-09-07T06:46:12.5610566Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-09-07T06:46:12.5613711Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-09-07T06:46:12.5616870Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-09-07T06:46:12.5619877Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-09-07T06:46:12.5623076Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-09-07T06:46:12.5626184Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-09-07T06:46:12.5629326Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-09-07T06:46:12.5632360Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-09-07T06:46:12.5635451Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-09-07T06:46:12.5638473Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-09-07T06:46:12.5641666Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-09-07T06:46:12.5644707Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-09-07T06:46:12.5647818Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-09-07T06:46:12.5650951Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-09-07T06:46:12.5654149Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-09-07T06:46:12.5657127Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-09-07T06:46:12.5660254Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-09-07T06:46:12.5663460Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-09-07T06:46:12.5666713Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-09-07T06:46:12.5669679Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-09-07T06:46:12.5672747Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-09-07T06:46:12.5675827Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-09-07T06:46:12.5678945Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-09-07T06:46:12.5681907Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-09-07T06:46:12.5685034Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-09-07T06:46:12.5688082Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-09-07T06:46:12.5691242Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-09-07T06:46:12.5694585Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5697421Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-09-07T06:46:12.5700611Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-09-07T06:46:12.5703892Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5707122Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5710899Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-09-07T06:46:12.5714430Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-09-07T06:46:12.5718166Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-09-07T06:46:12.5722021Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5724994Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-09-07T06:46:12.5728743Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-09-07T06:46:12.5731952Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-09-07T06:46:12.5735977Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-09-07T06:46:12.5739492Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5742946Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-09-07T06:46:12.5746709Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-09-07T06:46:12.5750075Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5753752Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5756714Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-09-07T06:46:12.5760700Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-09-07T06:46:12.5764119Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-09-07T06:46:12.5767816Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5771308Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-09-07T06:46:12.5774366Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-09-07T06:46:12.5778108Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-09-07T06:46:12.5781422Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-09-07T06:46:12.5785127Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-09-07T06:46:12.5788255Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-09-07T06:46:12.5791998Z adding 'torch/include/ATen/ops/_stack.h' 2025-09-07T06:46:12.5795704Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5800851Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-09-07T06:46:12.5805484Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-09-07T06:46:12.5810326Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-09-07T06:46:12.5815276Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-09-07T06:46:12.5820614Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5825244Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-09-07T06:46:12.5829873Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-09-07T06:46:12.5834570Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-09-07T06:46:12.5838435Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5841807Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-09-07T06:46:12.5845240Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-09-07T06:46:12.5848732Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-09-07T06:46:12.5852184Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-09-07T06:46:12.5855883Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-09-07T06:46:12.5859162Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-09-07T06:46:12.5862221Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-09-07T06:46:12.5865639Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5869284Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-09-07T06:46:12.5872437Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-09-07T06:46:12.5875734Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-09-07T06:46:12.5879126Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5882231Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5885965Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-09-07T06:46:12.5889068Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-09-07T06:46:12.5892693Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-09-07T06:46:12.5900695Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5903679Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-09-07T06:46:12.5905603Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5908805Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.5911576Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-09-07T06:46:12.5914856Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-09-07T06:46:12.5917829Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-09-07T06:46:12.5920888Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-09-07T06:46:12.5923798Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-09-07T06:46:12.5926985Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.5929826Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-09-07T06:46:12.5932867Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-09-07T06:46:12.5935958Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-09-07T06:46:12.5939181Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5942093Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-09-07T06:46:12.5945160Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-09-07T06:46:12.5948305Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-09-07T06:46:12.5951519Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-09-07T06:46:12.5954792Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5957738Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-09-07T06:46:12.5960656Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-09-07T06:46:12.5963811Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-09-07T06:46:12.5966907Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-09-07T06:46:12.5970179Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5973088Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-09-07T06:46:12.5976036Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-09-07T06:46:12.5979250Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-09-07T06:46:12.5982313Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-09-07T06:46:12.5985696Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.5988906Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-09-07T06:46:12.5991842Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-09-07T06:46:12.5994960Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-09-07T06:46:12.5997959Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-09-07T06:46:12.6001160Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6004019Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-09-07T06:46:12.6007079Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-09-07T06:46:12.6010154Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-09-07T06:46:12.6013254Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6016103Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-09-07T06:46:12.6019139Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-09-07T06:46:12.6022177Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-09-07T06:46:12.6025458Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6028318Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-09-07T06:46:12.6031382Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-09-07T06:46:12.6034418Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-09-07T06:46:12.6037957Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6040592Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-09-07T06:46:12.6043659Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-09-07T06:46:12.6046777Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-09-07T06:46:12.6050070Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6052956Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-09-07T06:46:12.6056080Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-09-07T06:46:12.6059200Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-09-07T06:46:12.6062437Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6065469Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-09-07T06:46:12.6068656Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-09-07T06:46:12.6071771Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-09-07T06:46:12.6075026Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-09-07T06:46:12.6078303Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6081261Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-09-07T06:46:12.6084212Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-09-07T06:46:12.6087400Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-09-07T06:46:12.6090630Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6093586Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-09-07T06:46:12.6096563Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-09-07T06:46:12.6099809Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-09-07T06:46:12.6103074Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-09-07T06:46:12.6106233Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-09-07T06:46:12.6109632Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6112841Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-09-07T06:46:12.6116176Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6119302Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-09-07T06:46:12.6122302Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-09-07T06:46:12.6125738Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-09-07T06:46:12.6128750Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-09-07T06:46:12.6132138Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-09-07T06:46:12.6135352Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6138405Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-09-07T06:46:12.6141504Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-09-07T06:46:12.6144950Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-09-07T06:46:12.6148280Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-09-07T06:46:12.6151593Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6154640Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-09-07T06:46:12.6158252Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-09-07T06:46:12.6167040Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-09-07T06:46:12.6167519Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6168001Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-09-07T06:46:12.6170561Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-09-07T06:46:12.6173548Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-09-07T06:46:12.6176893Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6179759Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-09-07T06:46:12.6183542Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-09-07T06:46:12.6186903Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-09-07T06:46:12.6190043Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-09-07T06:46:12.6193400Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6196337Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-09-07T06:46:12.6199510Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-09-07T06:46:12.6202472Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-09-07T06:46:12.6205810Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-09-07T06:46:12.6208951Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-09-07T06:46:12.6212344Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6215385Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-09-07T06:46:12.6218441Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-09-07T06:46:12.6221550Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-09-07T06:46:12.6224837Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-09-07T06:46:12.6228192Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6231191Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-09-07T06:46:12.6234344Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-09-07T06:46:12.6237565Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6240740Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-09-07T06:46:12.6243777Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-09-07T06:46:12.6246787Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-09-07T06:46:12.6250047Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-09-07T06:46:12.6253131Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-09-07T06:46:12.6256489Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6259452Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-09-07T06:46:12.6262589Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-09-07T06:46:12.6265704Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-09-07T06:46:12.6268957Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-09-07T06:46:12.6272114Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-09-07T06:46:12.6275334Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-09-07T06:46:12.6278743Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-09-07T06:46:12.6281888Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-09-07T06:46:12.6285095Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-09-07T06:46:12.6288002Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-09-07T06:46:12.6291279Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-09-07T06:46:12.6294438Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-09-07T06:46:12.6298219Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6301624Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-09-07T06:46:12.6304906Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-09-07T06:46:12.6308921Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-09-07T06:46:12.6312665Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-09-07T06:46:12.6316451Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-09-07T06:46:12.6319915Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6323190Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-09-07T06:46:12.6326408Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-09-07T06:46:12.6329639Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-09-07T06:46:12.6333500Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-09-07T06:46:12.6336685Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-09-07T06:46:12.6340101Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6343366Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6346157Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-09-07T06:46:12.6349434Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-09-07T06:46:12.6352914Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-09-07T06:46:12.6356233Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6359248Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-09-07T06:46:12.6362302Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-09-07T06:46:12.6365558Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-09-07T06:46:12.6368893Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-09-07T06:46:12.6372150Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6375078Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-09-07T06:46:12.6377972Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-09-07T06:46:12.6381127Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-09-07T06:46:12.6384257Z adding 'torch/include/ATen/ops/_unique.h' 2025-09-07T06:46:12.6387418Z adding 'torch/include/ATen/ops/_unique2.h' 2025-09-07T06:46:12.6390634Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6393574Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-09-07T06:46:12.6396601Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-09-07T06:46:12.6399673Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-09-07T06:46:12.6402849Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-09-07T06:46:12.6406071Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6408990Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-09-07T06:46:12.6412044Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-09-07T06:46:12.6414911Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-09-07T06:46:12.6418131Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-09-07T06:46:12.6421131Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-09-07T06:46:12.6424392Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6427399Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-09-07T06:46:12.6430392Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-09-07T06:46:12.6433436Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-09-07T06:46:12.6436606Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6439430Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-09-07T06:46:12.6442471Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-09-07T06:46:12.6445495Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-09-07T06:46:12.6448692Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6451520Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-09-07T06:46:12.6455048Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-09-07T06:46:12.6457892Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-09-07T06:46:12.6461086Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6464024Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-09-07T06:46:12.6467140Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-09-07T06:46:12.6470254Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-09-07T06:46:12.6473469Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6476258Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-09-07T06:46:12.6479511Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-09-07T06:46:12.6482530Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-09-07T06:46:12.6485831Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6488666Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-09-07T06:46:12.6491748Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-09-07T06:46:12.6495417Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-09-07T06:46:12.6499133Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-09-07T06:46:12.6502893Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6506011Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-09-07T06:46:12.6509211Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-09-07T06:46:12.6512218Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-09-07T06:46:12.6515386Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-09-07T06:46:12.6518416Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-09-07T06:46:12.6521609Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-09-07T06:46:12.6524921Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6527915Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6530958Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-09-07T06:46:12.6534132Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-09-07T06:46:12.6537137Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-09-07T06:46:12.6540329Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-09-07T06:46:12.6543426Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-09-07T06:46:12.6546706Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-09-07T06:46:12.6550322Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-09-07T06:46:12.6554187Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-09-07T06:46:12.6557855Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6560941Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-09-07T06:46:12.6564130Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-09-07T06:46:12.6567284Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-09-07T06:46:12.6570480Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-09-07T06:46:12.6573718Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-09-07T06:46:12.6577007Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-09-07T06:46:12.6580473Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6583915Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6586992Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-09-07T06:46:12.6590300Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-09-07T06:46:12.6593340Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-09-07T06:46:12.6596678Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-09-07T06:46:12.6599768Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-09-07T06:46:12.6603217Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-09-07T06:46:12.6606884Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-09-07T06:46:12.6610464Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-09-07T06:46:12.6614160Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6617209Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.6620406Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.6623588Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-09-07T06:46:12.6626724Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-09-07T06:46:12.6629869Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-09-07T06:46:12.6633057Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-09-07T06:46:12.6636460Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6639467Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6642656Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-09-07T06:46:12.6645796Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-09-07T06:46:12.6648895Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-09-07T06:46:12.6652104Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-09-07T06:46:12.6655189Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-09-07T06:46:12.6658547Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-09-07T06:46:12.6662096Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-09-07T06:46:12.6665992Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-09-07T06:46:12.6670104Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6672587Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.6675846Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.6679104Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-09-07T06:46:12.6682586Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-09-07T06:46:12.6685590Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-09-07T06:46:12.6688909Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-09-07T06:46:12.6692280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6695605Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6698526Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-09-07T06:46:12.6701667Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-09-07T06:46:12.6704844Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-09-07T06:46:12.6708018Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-09-07T06:46:12.6711213Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-09-07T06:46:12.6714456Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-09-07T06:46:12.6718176Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-09-07T06:46:12.6722059Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-09-07T06:46:12.6725582Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6728744Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.6732057Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.6735059Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-09-07T06:46:12.6738403Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-09-07T06:46:12.6741512Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-09-07T06:46:12.6744974Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-09-07T06:46:12.6749535Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6751646Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6754629Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-09-07T06:46:12.6757950Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-09-07T06:46:12.6761196Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-09-07T06:46:12.6764506Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-09-07T06:46:12.6767658Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-09-07T06:46:12.6770921Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-09-07T06:46:12.6774181Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-09-07T06:46:12.6777352Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-09-07T06:46:12.6780541Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-09-07T06:46:12.6783864Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-09-07T06:46:12.6786896Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-09-07T06:46:12.6790220Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6793542Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-09-07T06:46:12.6796303Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-09-07T06:46:12.6799422Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-09-07T06:46:12.6802674Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-09-07T06:46:12.6806169Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-09-07T06:46:12.6809600Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-09-07T06:46:12.6812690Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-09-07T06:46:12.6815941Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-09-07T06:46:12.6819270Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6822355Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-09-07T06:46:12.6825688Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-09-07T06:46:12.6828892Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-09-07T06:46:12.6832313Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6835436Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-09-07T06:46:12.6838432Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-09-07T06:46:12.6841506Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-09-07T06:46:12.6845006Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6847903Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-09-07T06:46:12.6851019Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-09-07T06:46:12.6854086Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-09-07T06:46:12.6857521Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6860595Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-09-07T06:46:12.6863825Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-09-07T06:46:12.6866910Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-09-07T06:46:12.6870118Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6872961Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-09-07T06:46:12.6876241Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-09-07T06:46:12.6879371Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-09-07T06:46:12.6882649Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6885444Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-09-07T06:46:12.6888538Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-09-07T06:46:12.6891595Z adding 'torch/include/ATen/ops/_values.h' 2025-09-07T06:46:12.6894599Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-09-07T06:46:12.6897800Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.6900895Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.6903802Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-09-07T06:46:12.6906903Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-09-07T06:46:12.6909822Z adding 'torch/include/ATen/ops/_values_native.h' 2025-09-07T06:46:12.6912832Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-09-07T06:46:12.6915727Z adding 'torch/include/ATen/ops/_version.h' 2025-09-07T06:46:12.6919366Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6921623Z adding 'torch/include/ATen/ops/_version_native.h' 2025-09-07T06:46:12.6924564Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-09-07T06:46:12.6927587Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-09-07T06:46:12.6930716Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-09-07T06:46:12.6933822Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-09-07T06:46:12.6936800Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-09-07T06:46:12.6939667Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-09-07T06:46:12.6942757Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-09-07T06:46:12.6947037Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-09-07T06:46:12.6949044Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-09-07T06:46:12.6952088Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-09-07T06:46:12.6955011Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-09-07T06:46:12.6958223Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-09-07T06:46:12.6961135Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-09-07T06:46:12.6964172Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-09-07T06:46:12.6967144Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h' 2025-09-07T06:46:12.6970046Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-09-07T06:46:12.6973087Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-09-07T06:46:12.6976084Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-09-07T06:46:12.6979493Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6982517Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-09-07T06:46:12.6985844Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.6988677Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-09-07T06:46:12.6991763Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-09-07T06:46:12.6994798Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-09-07T06:46:12.6998007Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-09-07T06:46:12.7001229Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7004231Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-09-07T06:46:12.7007230Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-09-07T06:46:12.7010197Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-09-07T06:46:12.7013371Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-09-07T06:46:12.7016593Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7019518Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-09-07T06:46:12.7022789Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-09-07T06:46:12.7025868Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-09-07T06:46:12.7029010Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-09-07T06:46:12.7031944Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-09-07T06:46:12.7034994Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-09-07T06:46:12.7038830Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-09-07T06:46:12.7042141Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7045426Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-09-07T06:46:12.7048052Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-09-07T06:46:12.7051194Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-09-07T06:46:12.7054464Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7057400Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-09-07T06:46:12.7060470Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-09-07T06:46:12.7063633Z adding 'torch/include/ATen/ops/abs.h' 2025-09-07T06:46:12.7066793Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7069694Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-09-07T06:46:12.7072711Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-09-07T06:46:12.7075712Z adding 'torch/include/ATen/ops/abs_native.h' 2025-09-07T06:46:12.7078875Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-09-07T06:46:12.7081980Z adding 'torch/include/ATen/ops/absolute.h' 2025-09-07T06:46:12.7085164Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7087990Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-09-07T06:46:12.7091176Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-09-07T06:46:12.7094267Z adding 'torch/include/ATen/ops/acos.h' 2025-09-07T06:46:12.7097553Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7100576Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-09-07T06:46:12.7103731Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-09-07T06:46:12.7106691Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-09-07T06:46:12.7109735Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-09-07T06:46:12.7112667Z adding 'torch/include/ATen/ops/acos_native.h' 2025-09-07T06:46:12.7116020Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-09-07T06:46:12.7119094Z adding 'torch/include/ATen/ops/acosh.h' 2025-09-07T06:46:12.7122532Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7126344Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-09-07T06:46:12.7128757Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-09-07T06:46:12.7132123Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-09-07T06:46:12.7135009Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-09-07T06:46:12.7138028Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-09-07T06:46:12.7141157Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-09-07T06:46:12.7144503Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-09-07T06:46:12.7147752Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7150960Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7153837Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-09-07T06:46:12.7157125Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-09-07T06:46:12.7161137Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-09-07T06:46:12.7163864Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7166960Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-09-07T06:46:12.7170043Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-09-07T06:46:12.7173136Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-09-07T06:46:12.7176294Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-09-07T06:46:12.7179806Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-09-07T06:46:12.7184002Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-09-07T06:46:12.7186387Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.7189967Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.7192765Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-09-07T06:46:12.7196004Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-09-07T06:46:12.7199185Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7202479Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-09-07T06:46:12.7205456Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-09-07T06:46:12.7208615Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-09-07T06:46:12.7212715Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-09-07T06:46:12.7214923Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-09-07T06:46:12.7218707Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7221178Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-09-07T06:46:12.7224515Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-09-07T06:46:12.7227612Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-09-07T06:46:12.7230917Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-09-07T06:46:12.7234347Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7237471Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.7241508Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.7243635Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-09-07T06:46:12.7247363Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-09-07T06:46:12.7249820Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-09-07T06:46:12.7253147Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-09-07T06:46:12.7256442Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7259522Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-09-07T06:46:12.7262561Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-09-07T06:46:12.7265763Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-09-07T06:46:12.7268848Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-09-07T06:46:12.7271965Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-09-07T06:46:12.7275965Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-09-07T06:46:12.7278436Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-09-07T06:46:12.7281786Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-09-07T06:46:12.7285027Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7288047Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.7291059Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.7294125Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-09-07T06:46:12.7297235Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-09-07T06:46:12.7300409Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-09-07T06:46:12.7304713Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-09-07T06:46:12.7307089Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7316208Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-09-07T06:46:12.7316414Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-09-07T06:46:12.7316838Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-09-07T06:46:12.7319994Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-09-07T06:46:12.7333876Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-09-07T06:46:12.7334049Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-09-07T06:46:12.7334156Z adding 'torch/include/ATen/ops/add.h' 2025-09-07T06:46:12.7334452Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7337453Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7340549Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-09-07T06:46:12.7343716Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-09-07T06:46:12.7346918Z adding 'torch/include/ATen/ops/add_meta.h' 2025-09-07T06:46:12.7349990Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-09-07T06:46:12.7353382Z adding 'torch/include/ATen/ops/add_native.h' 2025-09-07T06:46:12.7357146Z adding 'torch/include/ATen/ops/add_ops.h' 2025-09-07T06:46:12.7360223Z adding 'torch/include/ATen/ops/addbmm.h' 2025-09-07T06:46:12.7363384Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-09-07T06:46:12.7366665Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-09-07T06:46:12.7369857Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-09-07T06:46:12.7372873Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-09-07T06:46:12.7376157Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-09-07T06:46:12.7379262Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-09-07T06:46:12.7382537Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7385704Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-09-07T06:46:12.7388773Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-09-07T06:46:12.7391825Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-09-07T06:46:12.7394881Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-09-07T06:46:12.7397811Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-09-07T06:46:12.7401028Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-09-07T06:46:12.7404118Z adding 'torch/include/ATen/ops/addcmul.h' 2025-09-07T06:46:12.7407378Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7410291Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-09-07T06:46:12.7413319Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-09-07T06:46:12.7416555Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-09-07T06:46:12.7419504Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-09-07T06:46:12.7422425Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-09-07T06:46:12.7425773Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-09-07T06:46:12.7428971Z adding 'torch/include/ATen/ops/addmm.h' 2025-09-07T06:46:12.7432302Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7435180Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-09-07T06:46:12.7438284Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-09-07T06:46:12.7441227Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-09-07T06:46:12.7444290Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-09-07T06:46:12.7447460Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-09-07T06:46:12.7450882Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-09-07T06:46:12.7454094Z adding 'torch/include/ATen/ops/addmv.h' 2025-09-07T06:46:12.7457400Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7460284Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-09-07T06:46:12.7463648Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-09-07T06:46:12.7466586Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-09-07T06:46:12.7469730Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-09-07T06:46:12.7472990Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-09-07T06:46:12.7476089Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-09-07T06:46:12.7479174Z adding 'torch/include/ATen/ops/addr.h' 2025-09-07T06:46:12.7482387Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7485319Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-09-07T06:46:12.7488409Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-09-07T06:46:12.7491311Z adding 'torch/include/ATen/ops/addr_native.h' 2025-09-07T06:46:12.7494557Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-09-07T06:46:12.7497552Z adding 'torch/include/ATen/ops/adjoint.h' 2025-09-07T06:46:12.7500710Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7503618Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-09-07T06:46:12.7506655Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-09-07T06:46:12.7509971Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-09-07T06:46:12.7513168Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-09-07T06:46:12.7516386Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7519225Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-09-07T06:46:12.7522263Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-09-07T06:46:12.7525474Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7528291Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-09-07T06:46:12.7531386Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-09-07T06:46:12.7534524Z adding 'torch/include/ATen/ops/alias.h' 2025-09-07T06:46:12.7537648Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7540497Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-09-07T06:46:12.7543778Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7546898Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7549626Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-09-07T06:46:12.7552692Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-09-07T06:46:12.7555629Z adding 'torch/include/ATen/ops/alias_native.h' 2025-09-07T06:46:12.7558651Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-09-07T06:46:12.7561859Z adding 'torch/include/ATen/ops/align_as.h' 2025-09-07T06:46:12.7564659Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7567346Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-09-07T06:46:12.7570389Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-09-07T06:46:12.7573469Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-09-07T06:46:12.7576659Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7579540Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-09-07T06:46:12.7582574Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-09-07T06:46:12.7585687Z adding 'torch/include/ATen/ops/align_to.h' 2025-09-07T06:46:12.7588886Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7591821Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-09-07T06:46:12.7594921Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-09-07T06:46:12.7598401Z adding 'torch/include/ATen/ops/all.h' 2025-09-07T06:46:12.7601671Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7604948Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7607903Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7611084Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-09-07T06:46:12.7614348Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-09-07T06:46:12.7617301Z adding 'torch/include/ATen/ops/all_meta.h' 2025-09-07T06:46:12.7620532Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-09-07T06:46:12.7623697Z adding 'torch/include/ATen/ops/all_native.h' 2025-09-07T06:46:12.7627288Z adding 'torch/include/ATen/ops/all_ops.h' 2025-09-07T06:46:12.7630500Z adding 'torch/include/ATen/ops/allclose.h' 2025-09-07T06:46:12.7633888Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7636681Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-09-07T06:46:12.7639884Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-09-07T06:46:12.7643002Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-09-07T06:46:12.7646266Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7649219Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-09-07T06:46:12.7652319Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-09-07T06:46:12.7655458Z adding 'torch/include/ATen/ops/amax.h' 2025-09-07T06:46:12.7658717Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7661710Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-09-07T06:46:12.7664875Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-09-07T06:46:12.7667942Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-09-07T06:46:12.7671039Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-09-07T06:46:12.7674129Z adding 'torch/include/ATen/ops/amax_native.h' 2025-09-07T06:46:12.7677470Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-09-07T06:46:12.7680513Z adding 'torch/include/ATen/ops/amin.h' 2025-09-07T06:46:12.7684025Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7686909Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-09-07T06:46:12.7690095Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-09-07T06:46:12.7693011Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-09-07T06:46:12.7696229Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-09-07T06:46:12.7699188Z adding 'torch/include/ATen/ops/amin_native.h' 2025-09-07T06:46:12.7702762Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-09-07T06:46:12.7706072Z adding 'torch/include/ATen/ops/aminmax.h' 2025-09-07T06:46:12.7709686Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7712480Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-09-07T06:46:12.7715491Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-09-07T06:46:12.7718602Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-09-07T06:46:12.7721686Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-09-07T06:46:12.7724852Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-09-07T06:46:12.7728066Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-09-07T06:46:12.7731273Z adding 'torch/include/ATen/ops/and.h' 2025-09-07T06:46:12.7735339Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7737465Z adding 'torch/include/ATen/ops/and_native.h' 2025-09-07T06:46:12.7741019Z adding 'torch/include/ATen/ops/and_ops.h' 2025-09-07T06:46:12.7744003Z adding 'torch/include/ATen/ops/angle.h' 2025-09-07T06:46:12.7747232Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-09-07T06:46:12.7750247Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-09-07T06:46:12.7753308Z adding 'torch/include/ATen/ops/angle_native.h' 2025-09-07T06:46:12.7756372Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-09-07T06:46:12.7769727Z adding 'torch/include/ATen/ops/any.h' 2025-09-07T06:46:12.7772890Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7776194Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7779331Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7782481Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-09-07T06:46:12.7786838Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-09-07T06:46:12.7788983Z adding 'torch/include/ATen/ops/any_meta.h' 2025-09-07T06:46:12.7792703Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-09-07T06:46:12.7795419Z adding 'torch/include/ATen/ops/any_native.h' 2025-09-07T06:46:12.7799239Z adding 'torch/include/ATen/ops/any_ops.h' 2025-09-07T06:46:12.7802635Z adding 'torch/include/ATen/ops/arange.h' 2025-09-07T06:46:12.7806237Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.7812008Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-09-07T06:46:12.7812676Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-09-07T06:46:12.7815726Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-09-07T06:46:12.7825842Z adding 'torch/include/ATen/ops/arange_native.h' 2025-09-07T06:46:12.7825969Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-09-07T06:46:12.7826636Z adding 'torch/include/ATen/ops/arccos.h' 2025-09-07T06:46:12.7829918Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7832996Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-09-07T06:46:12.7836122Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-09-07T06:46:12.7839409Z adding 'torch/include/ATen/ops/arccosh.h' 2025-09-07T06:46:12.7843928Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7845648Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-09-07T06:46:12.7850027Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-09-07T06:46:12.7852101Z adding 'torch/include/ATen/ops/arcsin.h' 2025-09-07T06:46:12.7855333Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7858183Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-09-07T06:46:12.7861519Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-09-07T06:46:12.7864679Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-09-07T06:46:12.7867859Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7870649Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-09-07T06:46:12.7873765Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-09-07T06:46:12.7877135Z adding 'torch/include/ATen/ops/arctan.h' 2025-09-07T06:46:12.7879978Z adding 'torch/include/ATen/ops/arctan2.h' 2025-09-07T06:46:12.7883469Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7886275Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-09-07T06:46:12.7889341Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-09-07T06:46:12.7892487Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7895305Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-09-07T06:46:12.7898393Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-09-07T06:46:12.7901387Z adding 'torch/include/ATen/ops/arctanh.h' 2025-09-07T06:46:12.7904669Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7907711Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-09-07T06:46:12.7910760Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-09-07T06:46:12.7913902Z adding 'torch/include/ATen/ops/argmax.h' 2025-09-07T06:46:12.7917199Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7920042Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-09-07T06:46:12.7923091Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-09-07T06:46:12.7926039Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-09-07T06:46:12.7929111Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-09-07T06:46:12.7932073Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-09-07T06:46:12.7935296Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-09-07T06:46:12.7938296Z adding 'torch/include/ATen/ops/argmin.h' 2025-09-07T06:46:12.7941559Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7944546Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-09-07T06:46:12.7947607Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-09-07T06:46:12.7950537Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-09-07T06:46:12.7953656Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-09-07T06:46:12.7956536Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-09-07T06:46:12.7959653Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-09-07T06:46:12.7962830Z adding 'torch/include/ATen/ops/argsort.h' 2025-09-07T06:46:12.7966246Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7969113Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-09-07T06:46:12.7972324Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-09-07T06:46:12.7975431Z adding 'torch/include/ATen/ops/argwhere.h' 2025-09-07T06:46:12.7978596Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.7981394Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-09-07T06:46:12.7984512Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-09-07T06:46:12.7987812Z adding 'torch/include/ATen/ops/as_strided.h' 2025-09-07T06:46:12.7991173Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.7994408Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-09-07T06:46:12.7997799Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8000988Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8003791Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-09-07T06:46:12.8007005Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-09-07T06:46:12.8010069Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-09-07T06:46:12.8013091Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-09-07T06:46:12.8016103Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-09-07T06:46:12.8019056Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-09-07T06:46:12.8022240Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-09-07T06:46:12.8025869Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-09-07T06:46:12.8029274Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8032463Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8035261Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-09-07T06:46:12.8038361Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-09-07T06:46:12.8041397Z adding 'torch/include/ATen/ops/asin.h' 2025-09-07T06:46:12.8044687Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8047533Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-09-07T06:46:12.8050850Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-09-07T06:46:12.8053791Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-09-07T06:46:12.8056811Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-09-07T06:46:12.8059736Z adding 'torch/include/ATen/ops/asin_native.h' 2025-09-07T06:46:12.8062903Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-09-07T06:46:12.8066649Z adding 'torch/include/ATen/ops/asinh.h' 2025-09-07T06:46:12.8069750Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8072782Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-09-07T06:46:12.8076195Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-09-07T06:46:12.8079517Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-09-07T06:46:12.8083148Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-09-07T06:46:12.8086444Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-09-07T06:46:12.8090086Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-09-07T06:46:12.8093662Z adding 'torch/include/ATen/ops/atan.h' 2025-09-07T06:46:12.8096866Z adding 'torch/include/ATen/ops/atan2.h' 2025-09-07T06:46:12.8100281Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8103281Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-09-07T06:46:12.8106436Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-09-07T06:46:12.8109394Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-09-07T06:46:12.8112539Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-09-07T06:46:12.8115483Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-09-07T06:46:12.8118777Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-09-07T06:46:12.8122060Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8125115Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-09-07T06:46:12.8128170Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-09-07T06:46:12.8131241Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-09-07T06:46:12.8134320Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-09-07T06:46:12.8137401Z adding 'torch/include/ATen/ops/atan_native.h' 2025-09-07T06:46:12.8140672Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-09-07T06:46:12.8143824Z adding 'torch/include/ATen/ops/atanh.h' 2025-09-07T06:46:12.8147200Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8150103Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-09-07T06:46:12.8153280Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-09-07T06:46:12.8156236Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-09-07T06:46:12.8159395Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-09-07T06:46:12.8162367Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-09-07T06:46:12.8165700Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-09-07T06:46:12.8168850Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-09-07T06:46:12.8172074Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8175032Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-09-07T06:46:12.8178166Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-09-07T06:46:12.8181326Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-09-07T06:46:12.8184640Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8187605Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-09-07T06:46:12.8190705Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-09-07T06:46:12.8193908Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-09-07T06:46:12.8197116Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8200053Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-09-07T06:46:12.8203292Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-09-07T06:46:12.8206475Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-09-07T06:46:12.8209835Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8212928Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8215899Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-09-07T06:46:12.8219081Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-09-07T06:46:12.8222929Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-09-07T06:46:12.8226314Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-09-07T06:46:12.8229758Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8232849Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.8235977Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.8238909Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-09-07T06:46:12.8242038Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-09-07T06:46:12.8245263Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-09-07T06:46:12.8248525Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-09-07T06:46:12.8252050Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8254955Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-09-07T06:46:12.8258077Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-09-07T06:46:12.8261678Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-09-07T06:46:12.8264981Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-09-07T06:46:12.8268104Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-09-07T06:46:12.8271432Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-09-07T06:46:12.8274626Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-09-07T06:46:12.8277828Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-09-07T06:46:12.8281189Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8284108Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:46:12.8287160Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:46:12.8290322Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-09-07T06:46:12.8293443Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-09-07T06:46:12.8296490Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-09-07T06:46:12.8299750Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-09-07T06:46:12.8303099Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8306049Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-09-07T06:46:12.8309166Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-09-07T06:46:12.8312096Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-09-07T06:46:12.8315193Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-09-07T06:46:12.8318246Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-09-07T06:46:12.8321460Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-09-07T06:46:12.8324644Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-09-07T06:46:12.8327963Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8330858Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-09-07T06:46:12.8334010Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-09-07T06:46:12.8336971Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-09-07T06:46:12.8340037Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-09-07T06:46:12.8343112Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-09-07T06:46:12.8346750Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-09-07T06:46:12.8350164Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-09-07T06:46:12.8353575Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8356529Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-09-07T06:46:12.8359843Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-09-07T06:46:12.8362948Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-09-07T06:46:12.8366081Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-09-07T06:46:12.8369206Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-09-07T06:46:12.8372276Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:46:12.8375417Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-09-07T06:46:12.8378744Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8381657Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-09-07T06:46:12.8384719Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-09-07T06:46:12.8387946Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-09-07T06:46:12.8391045Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-09-07T06:46:12.8394599Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-09-07T06:46:12.8397819Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-09-07T06:46:12.8401146Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8404108Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-09-07T06:46:12.8407071Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-09-07T06:46:12.8410359Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-09-07T06:46:12.8413557Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8416511Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-09-07T06:46:12.8419661Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-09-07T06:46:12.8422604Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-09-07T06:46:12.8425972Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-09-07T06:46:12.8429217Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-09-07T06:46:12.8432503Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8435479Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-09-07T06:46:12.8438415Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-09-07T06:46:12.8441658Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-09-07T06:46:12.8444917Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-09-07T06:46:12.8448659Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8452065Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-09-07T06:46:12.8455487Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-09-07T06:46:12.8459158Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-09-07T06:46:12.8462113Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-09-07T06:46:12.8465397Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-09-07T06:46:12.8468491Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-09-07T06:46:12.8471839Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8474759Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-09-07T06:46:12.8477736Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-09-07T06:46:12.8480816Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-09-07T06:46:12.8483943Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-09-07T06:46:12.8487210Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8490159Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-09-07T06:46:12.8493255Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-09-07T06:46:12.8497088Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-09-07T06:46:12.8500411Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-09-07T06:46:12.8503798Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-09-07T06:46:12.8507103Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8510442Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8513254Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-09-07T06:46:12.8516429Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-09-07T06:46:12.8519537Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-09-07T06:46:12.8522711Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-09-07T06:46:12.8526337Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-09-07T06:46:12.8529546Z adding 'torch/include/ATen/ops/bilinear.h' 2025-09-07T06:46:12.8533114Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8535942Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-09-07T06:46:12.8539263Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-09-07T06:46:12.8542420Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-09-07T06:46:12.8545821Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-09-07T06:46:12.8549076Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-09-07T06:46:12.8552143Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-09-07T06:46:12.8555221Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-09-07T06:46:12.8558434Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-09-07T06:46:12.8561664Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-09-07T06:46:12.8564660Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-09-07T06:46:12.8568033Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-09-07T06:46:12.8571198Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-09-07T06:46:12.8574494Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-09-07T06:46:12.8577899Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8580811Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-09-07T06:46:12.8584169Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-09-07T06:46:12.8587375Z adding 'torch/include/ATen/ops/bincount.h' 2025-09-07T06:46:12.8590831Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8593771Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-09-07T06:46:12.8596965Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-09-07T06:46:12.8599880Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-09-07T06:46:12.8603232Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-09-07T06:46:12.8606297Z adding 'torch/include/ATen/ops/binomial.h' 2025-09-07T06:46:12.8609564Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8612610Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-09-07T06:46:12.8615612Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-09-07T06:46:12.8618688Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-09-07T06:46:12.8621779Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-09-07T06:46:12.8625402Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-09-07T06:46:12.8628652Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8631903Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8634800Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-09-07T06:46:12.8637920Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-09-07T06:46:12.8640921Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-09-07T06:46:12.8643961Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-09-07T06:46:12.8647130Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-09-07T06:46:12.8650538Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-09-07T06:46:12.8654089Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-09-07T06:46:12.8657330Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8660563Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8663521Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-09-07T06:46:12.8666655Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-09-07T06:46:12.8669798Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-09-07T06:46:12.8672830Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-09-07T06:46:12.8675901Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-09-07T06:46:12.8679357Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-09-07T06:46:12.8682622Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-09-07T06:46:12.8685844Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8688841Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-09-07T06:46:12.8691846Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-09-07T06:46:12.8694853Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-09-07T06:46:12.8698003Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-09-07T06:46:12.8700971Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-09-07T06:46:12.8704279Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-09-07T06:46:12.8707529Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-09-07T06:46:12.8711044Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8714124Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8717104Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-09-07T06:46:12.8720164Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-09-07T06:46:12.8723295Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-09-07T06:46:12.8726285Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-09-07T06:46:12.8729409Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-09-07T06:46:12.8732963Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-09-07T06:46:12.8736361Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-09-07T06:46:12.8740112Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8743362Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8746431Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-09-07T06:46:12.8749498Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-09-07T06:46:12.8752521Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-09-07T06:46:12.8756110Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-09-07T06:46:12.8758697Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-09-07T06:46:12.8762264Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-09-07T06:46:12.8765524Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-09-07T06:46:12.8768964Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8772100Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8775078Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-09-07T06:46:12.8778170Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-09-07T06:46:12.8781116Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-09-07T06:46:12.8784335Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-09-07T06:46:12.8787354Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-09-07T06:46:12.8790873Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-09-07T06:46:12.8794404Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-09-07T06:46:12.8797824Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8800737Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-09-07T06:46:12.8804256Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-09-07T06:46:12.8807409Z adding 'torch/include/ATen/ops/block_diag.h' 2025-09-07T06:46:12.8810626Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8813458Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-09-07T06:46:12.8816549Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-09-07T06:46:12.8819657Z adding 'torch/include/ATen/ops/bmm.h' 2025-09-07T06:46:12.8823121Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8826011Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-09-07T06:46:12.8829239Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-09-07T06:46:12.8832174Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-09-07T06:46:12.8835156Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-09-07T06:46:12.8838132Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-09-07T06:46:12.8841366Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-09-07T06:46:12.8844391Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-09-07T06:46:12.8847588Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8850293Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-09-07T06:46:12.8853310Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-09-07T06:46:12.8856282Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-09-07T06:46:12.8859628Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8862394Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-09-07T06:46:12.8865553Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-09-07T06:46:12.8868650Z adding 'torch/include/ATen/ops/bucketize.h' 2025-09-07T06:46:12.8871885Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8874803Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-09-07T06:46:12.8877796Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-09-07T06:46:12.8880788Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-09-07T06:46:12.8884053Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-09-07T06:46:12.8887120Z adding 'torch/include/ATen/ops/can_cast.h' 2025-09-07T06:46:12.8890284Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8893052Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-09-07T06:46:12.8896029Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-09-07T06:46:12.8898968Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-09-07T06:46:12.8902144Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8905009Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-09-07T06:46:12.8908257Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-09-07T06:46:12.8911338Z adding 'torch/include/ATen/ops/cat.h' 2025-09-07T06:46:12.8914651Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8918240Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.8920870Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-09-07T06:46:12.8924172Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-09-07T06:46:12.8928134Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-09-07T06:46:12.8931757Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-09-07T06:46:12.8935255Z adding 'torch/include/ATen/ops/cat_native.h' 2025-09-07T06:46:12.8939003Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-09-07T06:46:12.8942934Z adding 'torch/include/ATen/ops/cauchy.h' 2025-09-07T06:46:12.8946560Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8949931Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-09-07T06:46:12.8953717Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-09-07T06:46:12.8964477Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-09-07T06:46:12.8964612Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-09-07T06:46:12.8965806Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-09-07T06:46:12.8968932Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-09-07T06:46:12.8972027Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8974873Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-09-07T06:46:12.8978305Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.8982281Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.8984334Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-09-07T06:46:12.8987929Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-09-07T06:46:12.8990441Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-09-07T06:46:12.8993617Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-09-07T06:46:12.8996574Z adding 'torch/include/ATen/ops/cdist.h' 2025-09-07T06:46:12.8999884Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9002668Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-09-07T06:46:12.9005888Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-09-07T06:46:12.9008896Z adding 'torch/include/ATen/ops/ceil.h' 2025-09-07T06:46:12.9012267Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9015126Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-09-07T06:46:12.9018319Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-09-07T06:46:12.9022247Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-09-07T06:46:12.9024552Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-09-07T06:46:12.9027961Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-09-07T06:46:12.9030775Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-09-07T06:46:12.9033952Z adding 'torch/include/ATen/ops/celu.h' 2025-09-07T06:46:12.9037123Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9040058Z adding 'torch/include/ATen/ops/celu_native.h' 2025-09-07T06:46:12.9043182Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-09-07T06:46:12.9046417Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-09-07T06:46:12.9049618Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9052593Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-09-07T06:46:12.9056700Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-09-07T06:46:12.9058792Z adding 'torch/include/ATen/ops/chalf.h' 2025-09-07T06:46:12.9062565Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9064983Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-09-07T06:46:12.9068318Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-09-07T06:46:12.9071415Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-09-07T06:46:12.9074871Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9077779Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-09-07T06:46:12.9080893Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-09-07T06:46:12.9084045Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-09-07T06:46:12.9087314Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-09-07T06:46:12.9090373Z adding 'torch/include/ATen/ops/cholesky.h' 2025-09-07T06:46:12.9093662Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-09-07T06:46:12.9097244Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-09-07T06:46:12.9099807Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-09-07T06:46:12.9103086Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-09-07T06:46:12.9106229Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-09-07T06:46:12.9109332Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-09-07T06:46:12.9112538Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-09-07T06:46:12.9115552Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-09-07T06:46:12.9118651Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-09-07T06:46:12.9121872Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-09-07T06:46:12.9125996Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9128109Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-09-07T06:46:12.9131679Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-09-07T06:46:12.9134472Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-09-07T06:46:12.9137823Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9140640Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-09-07T06:46:12.9143968Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-09-07T06:46:12.9146966Z adding 'torch/include/ATen/ops/chunk.h' 2025-09-07T06:46:12.9150686Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9155073Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-09-07T06:46:12.9156934Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-09-07T06:46:12.9160557Z adding 'torch/include/ATen/ops/clamp.h' 2025-09-07T06:46:12.9163982Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9167393Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-09-07T06:46:12.9170763Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-09-07T06:46:12.9174528Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-09-07T06:46:12.9178473Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9181658Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-09-07T06:46:12.9185115Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-09-07T06:46:12.9188200Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-09-07T06:46:12.9191813Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-09-07T06:46:12.9194739Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-09-07T06:46:12.9198444Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-09-07T06:46:12.9201455Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-09-07T06:46:12.9204676Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-09-07T06:46:12.9207869Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-09-07T06:46:12.9211312Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9214743Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-09-07T06:46:12.9217910Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-09-07T06:46:12.9221221Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-09-07T06:46:12.9224456Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-09-07T06:46:12.9227645Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-09-07T06:46:12.9232008Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-09-07T06:46:12.9235664Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-09-07T06:46:12.9238884Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-09-07T06:46:12.9242941Z adding 'torch/include/ATen/ops/clip.h' 2025-09-07T06:46:12.9246224Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9249314Z adding 'torch/include/ATen/ops/clip_native.h' 2025-09-07T06:46:12.9252941Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-09-07T06:46:12.9256376Z adding 'torch/include/ATen/ops/clone.h' 2025-09-07T06:46:12.9259552Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9262999Z adding 'torch/include/ATen/ops/clone_native.h' 2025-09-07T06:46:12.9266449Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-09-07T06:46:12.9269550Z adding 'torch/include/ATen/ops/coalesce.h' 2025-09-07T06:46:12.9273417Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9275630Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-09-07T06:46:12.9278616Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-09-07T06:46:12.9282117Z adding 'torch/include/ATen/ops/col2im.h' 2025-09-07T06:46:12.9285490Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-09-07T06:46:12.9288631Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-09-07T06:46:12.9291639Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-09-07T06:46:12.9294859Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-09-07T06:46:12.9297850Z adding 'torch/include/ATen/ops/col_indices.h' 2025-09-07T06:46:12.9301415Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9304310Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-09-07T06:46:12.9307457Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9310545Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9313407Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-09-07T06:46:12.9316356Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-09-07T06:46:12.9319296Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-09-07T06:46:12.9322321Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-09-07T06:46:12.9325318Z adding 'torch/include/ATen/ops/column_stack.h' 2025-09-07T06:46:12.9330166Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9331714Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-09-07T06:46:12.9334768Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-09-07T06:46:12.9337775Z adding 'torch/include/ATen/ops/combinations.h' 2025-09-07T06:46:12.9340871Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9343676Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-09-07T06:46:12.9346783Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-09-07T06:46:12.9349734Z adding 'torch/include/ATen/ops/complex.h' 2025-09-07T06:46:12.9352907Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9355891Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-09-07T06:46:12.9359048Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-09-07T06:46:12.9361781Z adding 'torch/include/ATen/ops/complex_native.h' 2025-09-07T06:46:12.9364992Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-09-07T06:46:12.9368042Z adding 'torch/include/ATen/ops/concat.h' 2025-09-07T06:46:12.9371184Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9374135Z adding 'torch/include/ATen/ops/concat_native.h' 2025-09-07T06:46:12.9377398Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-09-07T06:46:12.9380564Z adding 'torch/include/ATen/ops/concatenate.h' 2025-09-07T06:46:12.9384054Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9387144Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-09-07T06:46:12.9390248Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-09-07T06:46:12.9393285Z adding 'torch/include/ATen/ops/conj.h' 2025-09-07T06:46:12.9396411Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9399331Z adding 'torch/include/ATen/ops/conj_native.h' 2025-09-07T06:46:12.9402267Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-09-07T06:46:12.9405365Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-09-07T06:46:12.9408485Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9411469Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9414391Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-09-07T06:46:12.9417974Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-09-07T06:46:12.9420356Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-09-07T06:46:12.9423782Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-09-07T06:46:12.9426936Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-09-07T06:46:12.9430324Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9433211Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-09-07T06:46:12.9436624Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-09-07T06:46:12.9439589Z adding 'torch/include/ATen/ops/contiguous.h' 2025-09-07T06:46:12.9442792Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9445474Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-09-07T06:46:12.9448599Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-09-07T06:46:12.9452468Z adding 'torch/include/ATen/ops/conv1d.h' 2025-09-07T06:46:12.9456119Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9459241Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-09-07T06:46:12.9462807Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-09-07T06:46:12.9466456Z adding 'torch/include/ATen/ops/conv2d.h' 2025-09-07T06:46:12.9470410Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9473713Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-09-07T06:46:12.9477400Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-09-07T06:46:12.9481063Z adding 'torch/include/ATen/ops/conv3d.h' 2025-09-07T06:46:12.9484818Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9488000Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-09-07T06:46:12.9491518Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-09-07T06:46:12.9495539Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-09-07T06:46:12.9499696Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9503055Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-09-07T06:46:12.9507666Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-09-07T06:46:12.9511312Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-09-07T06:46:12.9514787Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-09-07T06:46:12.9518171Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-09-07T06:46:12.9521291Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9524295Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-09-07T06:46:12.9527758Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-09-07T06:46:12.9530806Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9533744Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-09-07T06:46:12.9536931Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-09-07T06:46:12.9540319Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-09-07T06:46:12.9543749Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9546769Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-09-07T06:46:12.9549917Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-09-07T06:46:12.9553332Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-09-07T06:46:12.9556872Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9559690Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-09-07T06:46:12.9563226Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-09-07T06:46:12.9566252Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-09-07T06:46:12.9569764Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9572672Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-09-07T06:46:12.9575917Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-09-07T06:46:12.9579550Z adding 'torch/include/ATen/ops/convolution.h' 2025-09-07T06:46:12.9583662Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-09-07T06:46:12.9587574Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9590828Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-09-07T06:46:12.9593994Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-09-07T06:46:12.9597464Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-09-07T06:46:12.9601331Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-09-07T06:46:12.9605165Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9608325Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-09-07T06:46:12.9611713Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-09-07T06:46:12.9615145Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9618087Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-09-07T06:46:12.9621530Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-09-07T06:46:12.9625368Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-09-07T06:46:12.9629273Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9632348Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-09-07T06:46:12.9635610Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-09-07T06:46:12.9638805Z adding 'torch/include/ATen/ops/copy.h' 2025-09-07T06:46:12.9641997Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9645280Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9648163Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-09-07T06:46:12.9651266Z adding 'torch/include/ATen/ops/copy_native.h' 2025-09-07T06:46:12.9654628Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-09-07T06:46:12.9657814Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-09-07T06:46:12.9661197Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9664236Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-09-07T06:46:12.9667260Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-09-07T06:46:12.9670437Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-09-07T06:46:12.9673650Z adding 'torch/include/ATen/ops/copysign.h' 2025-09-07T06:46:12.9676913Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9680642Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9683647Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-09-07T06:46:12.9686705Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-09-07T06:46:12.9689780Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-09-07T06:46:12.9692819Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-09-07T06:46:12.9695929Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-09-07T06:46:12.9699347Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-09-07T06:46:12.9702507Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-09-07T06:46:12.9705897Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9708738Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-09-07T06:46:12.9711882Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-09-07T06:46:12.9714989Z adding 'torch/include/ATen/ops/cos.h' 2025-09-07T06:46:12.9718375Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9721199Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-09-07T06:46:12.9724336Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-09-07T06:46:12.9727284Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-09-07T06:46:12.9730519Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-09-07T06:46:12.9733524Z adding 'torch/include/ATen/ops/cos_native.h' 2025-09-07T06:46:12.9736790Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-09-07T06:46:12.9739898Z adding 'torch/include/ATen/ops/cosh.h' 2025-09-07T06:46:12.9743366Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9746345Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-09-07T06:46:12.9749419Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-09-07T06:46:12.9752430Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-09-07T06:46:12.9755486Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-09-07T06:46:12.9758543Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-09-07T06:46:12.9761703Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-09-07T06:46:12.9764956Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-09-07T06:46:12.9768170Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9771153Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-09-07T06:46:12.9774294Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-09-07T06:46:12.9777368Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-09-07T06:46:12.9780662Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9783660Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-09-07T06:46:12.9786878Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-09-07T06:46:12.9790001Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-09-07T06:46:12.9793375Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9796435Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-09-07T06:46:12.9799651Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-09-07T06:46:12.9802549Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-09-07T06:46:12.9806016Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-09-07T06:46:12.9809210Z adding 'torch/include/ATen/ops/cov.h' 2025-09-07T06:46:12.9812323Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9815262Z adding 'torch/include/ATen/ops/cov_native.h' 2025-09-07T06:46:12.9818464Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-09-07T06:46:12.9821534Z adding 'torch/include/ATen/ops/cross.h' 2025-09-07T06:46:12.9824867Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9827934Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-09-07T06:46:12.9831385Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9834267Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-09-07T06:46:12.9837352Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-09-07T06:46:12.9840285Z adding 'torch/include/ATen/ops/cross_native.h' 2025-09-07T06:46:12.9843388Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-09-07T06:46:12.9846288Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-09-07T06:46:12.9849561Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9852298Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-09-07T06:46:12.9855501Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9858646Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:12.9861677Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-09-07T06:46:12.9865049Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-09-07T06:46:12.9868009Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-09-07T06:46:12.9870985Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-09-07T06:46:12.9874054Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-09-07T06:46:12.9877266Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:12.9880214Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-09-07T06:46:12.9883400Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-09-07T06:46:12.9886556Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-09-07T06:46:12.9889693Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-09-07T06:46:12.9892889Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9895811Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-09-07T06:46:12.9898739Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-09-07T06:46:12.9901895Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-09-07T06:46:12.9905267Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9908213Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-09-07T06:46:12.9911186Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-09-07T06:46:12.9914366Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-09-07T06:46:12.9917629Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-09-07T06:46:12.9920965Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-09-07T06:46:12.9924337Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9927366Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:46:12.9930412Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-09-07T06:46:12.9933718Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-09-07T06:46:12.9936935Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-09-07T06:46:12.9939943Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-09-07T06:46:12.9943336Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-09-07T06:46:12.9949086Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-09-07T06:46:12.9952960Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-09-07T06:46:12.9956487Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9959543Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-09-07T06:46:12.9962550Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-09-07T06:46:12.9965804Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-09-07T06:46:12.9969033Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-09-07T06:46:12.9973144Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-09-07T06:46:12.9976481Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-09-07T06:46:12.9980009Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-09-07T06:46:12.9983737Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:12.9986708Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-09-07T06:46:12.9989723Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-09-07T06:46:12.9992983Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-09-07T06:46:12.9996700Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-09-07T06:46:13.0000335Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0003432Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-09-07T06:46:13.0006409Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-09-07T06:46:13.0009721Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-09-07T06:46:13.0012854Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-09-07T06:46:13.0016026Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-09-07T06:46:13.0019287Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0022231Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-09-07T06:46:13.0025302Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-09-07T06:46:13.0028485Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-09-07T06:46:13.0031710Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0034727Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-09-07T06:46:13.0037572Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-09-07T06:46:13.0041004Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-09-07T06:46:13.0043984Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-09-07T06:46:13.0047185Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0050038Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-09-07T06:46:13.0053042Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-09-07T06:46:13.0056188Z adding 'torch/include/ATen/ops/cummax.h' 2025-09-07T06:46:13.0059457Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0062513Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0065546Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-09-07T06:46:13.0068815Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-09-07T06:46:13.0071900Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-09-07T06:46:13.0075071Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0077876Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-09-07T06:46:13.0080929Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-09-07T06:46:13.0085162Z adding 'torch/include/ATen/ops/cummin.h' 2025-09-07T06:46:13.0088488Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0091555Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0094459Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-09-07T06:46:13.0097730Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-09-07T06:46:13.0100923Z adding 'torch/include/ATen/ops/cumprod.h' 2025-09-07T06:46:13.0104081Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-09-07T06:46:13.0107330Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0110183Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-09-07T06:46:13.0113272Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-09-07T06:46:13.0116479Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0119552Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0122442Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-09-07T06:46:13.0125471Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-09-07T06:46:13.0128425Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-09-07T06:46:13.0131689Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-09-07T06:46:13.0134721Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-09-07T06:46:13.0138347Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-09-07T06:46:13.0141671Z adding 'torch/include/ATen/ops/cumsum.h' 2025-09-07T06:46:13.0145170Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0148376Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0151348Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-09-07T06:46:13.0154593Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-09-07T06:46:13.0157595Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-09-07T06:46:13.0160799Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-09-07T06:46:13.0163925Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-09-07T06:46:13.0167439Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-09-07T06:46:13.0170750Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-09-07T06:46:13.0174084Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0177072Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-09-07T06:46:13.0180219Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-09-07T06:46:13.0183445Z adding 'torch/include/ATen/ops/data.h' 2025-09-07T06:46:13.0186531Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0189467Z adding 'torch/include/ATen/ops/data_native.h' 2025-09-07T06:46:13.0192547Z adding 'torch/include/ATen/ops/data_ops.h' 2025-09-07T06:46:13.0195753Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-09-07T06:46:13.0199049Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0201988Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-09-07T06:46:13.0205232Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-09-07T06:46:13.0208211Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-09-07T06:46:13.0211836Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0214700Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-09-07T06:46:13.0218012Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-09-07T06:46:13.0221044Z adding 'torch/include/ATen/ops/dequantize.h' 2025-09-07T06:46:13.0224593Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0227639Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-09-07T06:46:13.0230783Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-09-07T06:46:13.0233926Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-09-07T06:46:13.0237141Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-09-07T06:46:13.0240265Z adding 'torch/include/ATen/ops/det.h' 2025-09-07T06:46:13.0243407Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0246373Z adding 'torch/include/ATen/ops/det_native.h' 2025-09-07T06:46:13.0249400Z adding 'torch/include/ATen/ops/det_ops.h' 2025-09-07T06:46:13.0252523Z adding 'torch/include/ATen/ops/detach.h' 2025-09-07T06:46:13.0255782Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0258700Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-09-07T06:46:13.0262015Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0265312Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0268154Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-09-07T06:46:13.0271337Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-09-07T06:46:13.0274322Z adding 'torch/include/ATen/ops/detach_native.h' 2025-09-07T06:46:13.0277407Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-09-07T06:46:13.0280635Z adding 'torch/include/ATen/ops/diag.h' 2025-09-07T06:46:13.0283851Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0286971Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-09-07T06:46:13.0290361Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0293440Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0296324Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-09-07T06:46:13.0299482Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-09-07T06:46:13.0302573Z adding 'torch/include/ATen/ops/diag_native.h' 2025-09-07T06:46:13.0305818Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-09-07T06:46:13.0308948Z adding 'torch/include/ATen/ops/diagflat.h' 2025-09-07T06:46:13.0312136Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0315151Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-09-07T06:46:13.0318127Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-09-07T06:46:13.0321563Z adding 'torch/include/ATen/ops/diagonal.h' 2025-09-07T06:46:13.0325417Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-09-07T06:46:13.0329317Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0332655Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-09-07T06:46:13.0336278Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-09-07T06:46:13.0339996Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0343315Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0346455Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-09-07T06:46:13.0349715Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0353036Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0355819Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-09-07T06:46:13.0359153Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-09-07T06:46:13.0362128Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-09-07T06:46:13.0365463Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-09-07T06:46:13.0368603Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-09-07T06:46:13.0371832Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0375039Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0377981Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-09-07T06:46:13.0381134Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-09-07T06:46:13.0384656Z adding 'torch/include/ATen/ops/diff.h' 2025-09-07T06:46:13.0387926Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0390795Z adding 'torch/include/ATen/ops/diff_native.h' 2025-09-07T06:46:13.0394177Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-09-07T06:46:13.0397250Z adding 'torch/include/ATen/ops/digamma.h' 2025-09-07T06:46:13.0400503Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0403334Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-09-07T06:46:13.0406312Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-09-07T06:46:13.0409256Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-09-07T06:46:13.0412250Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-09-07T06:46:13.0415159Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-09-07T06:46:13.0418316Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-09-07T06:46:13.0421285Z adding 'torch/include/ATen/ops/dist.h' 2025-09-07T06:46:13.0424704Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0427551Z adding 'torch/include/ATen/ops/dist_native.h' 2025-09-07T06:46:13.0430666Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-09-07T06:46:13.0433903Z adding 'torch/include/ATen/ops/div.h' 2025-09-07T06:46:13.0437290Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0440407Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0443335Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-09-07T06:46:13.0446401Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-09-07T06:46:13.0449353Z adding 'torch/include/ATen/ops/div_meta.h' 2025-09-07T06:46:13.0452457Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-09-07T06:46:13.0455561Z adding 'torch/include/ATen/ops/div_native.h' 2025-09-07T06:46:13.0459285Z adding 'torch/include/ATen/ops/div_ops.h' 2025-09-07T06:46:13.0462721Z adding 'torch/include/ATen/ops/divide.h' 2025-09-07T06:46:13.0466125Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0469053Z adding 'torch/include/ATen/ops/divide_native.h' 2025-09-07T06:46:13.0480395Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-09-07T06:46:13.0480811Z adding 'torch/include/ATen/ops/dot.h' 2025-09-07T06:46:13.0481249Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0482435Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-09-07T06:46:13.0485318Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-09-07T06:46:13.0488232Z adding 'torch/include/ATen/ops/dot_native.h' 2025-09-07T06:46:13.0491335Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-09-07T06:46:13.0494332Z adding 'torch/include/ATen/ops/dropout.h' 2025-09-07T06:46:13.0497477Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0500286Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-09-07T06:46:13.0503472Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-09-07T06:46:13.0506496Z adding 'torch/include/ATen/ops/dsplit.h' 2025-09-07T06:46:13.0509772Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0512593Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-09-07T06:46:13.0515685Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-09-07T06:46:13.0518697Z adding 'torch/include/ATen/ops/dstack.h' 2025-09-07T06:46:13.0521862Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0524667Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-09-07T06:46:13.0527726Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-09-07T06:46:13.0530716Z adding 'torch/include/ATen/ops/einsum.h' 2025-09-07T06:46:13.0533878Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0536693Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-09-07T06:46:13.0539756Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-09-07T06:46:13.0542819Z adding 'torch/include/ATen/ops/elu.h' 2025-09-07T06:46:13.0546012Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-09-07T06:46:13.0549288Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0552557Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-09-07T06:46:13.0555639Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-09-07T06:46:13.0558572Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-09-07T06:46:13.0561646Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-09-07T06:46:13.0564587Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-09-07T06:46:13.0567708Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-09-07T06:46:13.0571048Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0573852Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-09-07T06:46:13.0576876Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-09-07T06:46:13.0579956Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-09-07T06:46:13.0583127Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-09-07T06:46:13.0586225Z adding 'torch/include/ATen/ops/elu_native.h' 2025-09-07T06:46:13.0589465Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-09-07T06:46:13.0592955Z adding 'torch/include/ATen/ops/embedding.h' 2025-09-07T06:46:13.0596385Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-09-07T06:46:13.0599688Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0602673Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-09-07T06:46:13.0605793Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-09-07T06:46:13.0609080Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-09-07T06:46:13.0612390Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0615440Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-09-07T06:46:13.0618741Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-09-07T06:46:13.0622172Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0625728Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-09-07T06:46:13.0629220Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0632408Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-09-07T06:46:13.0635491Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-09-07T06:46:13.0638576Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-09-07T06:46:13.0641829Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-09-07T06:46:13.0644926Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-09-07T06:46:13.0648282Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-09-07T06:46:13.0651488Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-09-07T06:46:13.0655061Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0658020Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-09-07T06:46:13.0661209Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-09-07T06:46:13.0664306Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-09-07T06:46:13.0667441Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-09-07T06:46:13.0670686Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-09-07T06:46:13.0673902Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-09-07T06:46:13.0677274Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0680133Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-09-07T06:46:13.0683369Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-09-07T06:46:13.0687148Z adding 'torch/include/ATen/ops/empty.h' 2025-09-07T06:46:13.0690784Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0694034Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0697065Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-09-07T06:46:13.0701089Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-09-07T06:46:13.0704469Z adding 'torch/include/ATen/ops/empty_like.h' 2025-09-07T06:46:13.0707923Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0711044Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-09-07T06:46:13.0714286Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-09-07T06:46:13.0717670Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-09-07T06:46:13.0720797Z adding 'torch/include/ATen/ops/empty_native.h' 2025-09-07T06:46:13.0724390Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-09-07T06:46:13.0728579Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-09-07T06:46:13.0732043Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0735127Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-09-07T06:46:13.0738298Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-09-07T06:46:13.0741727Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-09-07T06:46:13.0745262Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0748186Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-09-07T06:46:13.0751560Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-09-07T06:46:13.0755109Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-09-07T06:46:13.0758691Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0761793Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-09-07T06:46:13.0765007Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-09-07T06:46:13.0768201Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-09-07T06:46:13.0771363Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-09-07T06:46:13.0774713Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-09-07T06:46:13.0777943Z adding 'torch/include/ATen/ops/eq.h' 2025-09-07T06:46:13.0781367Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0784431Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-09-07T06:46:13.0787647Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-09-07T06:46:13.0790611Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-09-07T06:46:13.0793867Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-09-07T06:46:13.0796939Z adding 'torch/include/ATen/ops/eq_native.h' 2025-09-07T06:46:13.0800347Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-09-07T06:46:13.0803523Z adding 'torch/include/ATen/ops/equal.h' 2025-09-07T06:46:13.0806605Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-09-07T06:46:13.0809814Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-09-07T06:46:13.0812738Z adding 'torch/include/ATen/ops/equal_native.h' 2025-09-07T06:46:13.0815915Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-09-07T06:46:13.0818978Z adding 'torch/include/ATen/ops/erf.h' 2025-09-07T06:46:13.0822364Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0825528Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-09-07T06:46:13.0828980Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-09-07T06:46:13.0832322Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-09-07T06:46:13.0835842Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-09-07T06:46:13.0838963Z adding 'torch/include/ATen/ops/erf_native.h' 2025-09-07T06:46:13.0842123Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-09-07T06:46:13.0845390Z adding 'torch/include/ATen/ops/erfc.h' 2025-09-07T06:46:13.0848729Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0851632Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-09-07T06:46:13.0854786Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-09-07T06:46:13.0857749Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-09-07T06:46:13.0860984Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-09-07T06:46:13.0863973Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-09-07T06:46:13.0867142Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-09-07T06:46:13.0870182Z adding 'torch/include/ATen/ops/erfinv.h' 2025-09-07T06:46:13.0873773Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0876524Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-09-07T06:46:13.0879477Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-09-07T06:46:13.0882386Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-09-07T06:46:13.0885370Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-09-07T06:46:13.0888535Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-09-07T06:46:13.0891768Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-09-07T06:46:13.0894756Z adding 'torch/include/ATen/ops/exp.h' 2025-09-07T06:46:13.0897756Z adding 'torch/include/ATen/ops/exp2.h' 2025-09-07T06:46:13.0901423Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0904396Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-09-07T06:46:13.0907398Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-09-07T06:46:13.0910335Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-09-07T06:46:13.0913383Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-09-07T06:46:13.0916303Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-09-07T06:46:13.0919624Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-09-07T06:46:13.0922859Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0925702Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-09-07T06:46:13.0928672Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-09-07T06:46:13.0931558Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-09-07T06:46:13.0934563Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-09-07T06:46:13.0937425Z adding 'torch/include/ATen/ops/exp_native.h' 2025-09-07T06:46:13.0940545Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-09-07T06:46:13.0943708Z adding 'torch/include/ATen/ops/expand.h' 2025-09-07T06:46:13.0946634Z adding 'torch/include/ATen/ops/expand_as.h' 2025-09-07T06:46:13.0949784Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.0952518Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-09-07T06:46:13.0955516Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-09-07T06:46:13.0958654Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0961795Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-09-07T06:46:13.0965117Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.0968236Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0970984Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-09-07T06:46:13.0974091Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-09-07T06:46:13.0977225Z adding 'torch/include/ATen/ops/expand_native.h' 2025-09-07T06:46:13.0980813Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-09-07T06:46:13.0983625Z adding 'torch/include/ATen/ops/expm1.h' 2025-09-07T06:46:13.0986727Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.0989623Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-09-07T06:46:13.0992624Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-09-07T06:46:13.0995560Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-09-07T06:46:13.0998564Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-09-07T06:46:13.1001511Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-09-07T06:46:13.1004662Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-09-07T06:46:13.1007734Z adding 'torch/include/ATen/ops/exponential.h' 2025-09-07T06:46:13.1011020Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1013974Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-09-07T06:46:13.1016991Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-09-07T06:46:13.1019978Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-09-07T06:46:13.1023069Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-09-07T06:46:13.1026170Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-09-07T06:46:13.1029883Z adding 'torch/include/ATen/ops/eye.h' 2025-09-07T06:46:13.1033372Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1036397Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-09-07T06:46:13.1039460Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-09-07T06:46:13.1042548Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-09-07T06:46:13.1045525Z adding 'torch/include/ATen/ops/eye_native.h' 2025-09-07T06:46:13.1048764Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-09-07T06:46:13.1051926Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-09-07T06:46:13.1055092Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-09-07T06:46:13.1058209Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-09-07T06:46:13.1061463Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1064607Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-09-07T06:46:13.1068110Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-09-07T06:46:13.1071385Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1074338Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-09-07T06:46:13.1077394Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-09-07T06:46:13.1080337Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-09-07T06:46:13.1083725Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-09-07T06:46:13.1086905Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1089751Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-09-07T06:46:13.1092832Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-09-07T06:46:13.1095933Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-09-07T06:46:13.1099274Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-09-07T06:46:13.1102338Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-09-07T06:46:13.1105712Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1108533Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-09-07T06:46:13.1111576Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-09-07T06:46:13.1114765Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1117723Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-09-07T06:46:13.1120735Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-09-07T06:46:13.1123709Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-09-07T06:46:13.1126902Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-09-07T06:46:13.1130182Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1133074Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-09-07T06:46:13.1136225Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-09-07T06:46:13.1139487Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-09-07T06:46:13.1142827Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1146016Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-09-07T06:46:13.1149338Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1152250Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-09-07T06:46:13.1155603Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-09-07T06:46:13.1158529Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-09-07T06:46:13.1161777Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-09-07T06:46:13.1164839Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-09-07T06:46:13.1168220Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1171182Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-09-07T06:46:13.1174585Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1177508Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-09-07T06:46:13.1180676Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-09-07T06:46:13.1183813Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-09-07T06:46:13.1186958Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-09-07T06:46:13.1190080Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-09-07T06:46:13.1193328Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1196388Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-09-07T06:46:13.1199488Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-09-07T06:46:13.1202617Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-09-07T06:46:13.1205859Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1208773Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-09-07T06:46:13.1211883Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-09-07T06:46:13.1214957Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-09-07T06:46:13.1218272Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1221103Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-09-07T06:46:13.1224451Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-09-07T06:46:13.1227490Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-09-07T06:46:13.1230844Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1233677Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-09-07T06:46:13.1237245Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-09-07T06:46:13.1240306Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-09-07T06:46:13.1243601Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1246535Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-09-07T06:46:13.1249654Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-09-07T06:46:13.1253215Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-09-07T06:46:13.1256703Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-09-07T06:46:13.1260259Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1263262Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-09-07T06:46:13.1266566Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-09-07T06:46:13.1270568Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1272961Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-09-07T06:46:13.1276250Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-09-07T06:46:13.1279430Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-09-07T06:46:13.1282875Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1285782Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-09-07T06:46:13.1289037Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-09-07T06:46:13.1292566Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-09-07T06:46:13.1296008Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1299007Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-09-07T06:46:13.1302185Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-09-07T06:46:13.1305503Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-09-07T06:46:13.1308727Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1311728Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-09-07T06:46:13.1314861Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-09-07T06:46:13.1318307Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-09-07T06:46:13.1321934Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-09-07T06:46:13.1325378Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1328657Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-09-07T06:46:13.1332309Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-09-07T06:46:13.1336149Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1339476Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-09-07T06:46:13.1342963Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-09-07T06:46:13.1346463Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-09-07T06:46:13.1350037Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1353059Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-09-07T06:46:13.1356302Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-09-07T06:46:13.1359870Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-09-07T06:46:13.1363379Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-09-07T06:46:13.1367004Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1369917Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-09-07T06:46:13.1373167Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-09-07T06:46:13.1376606Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1379488Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-09-07T06:46:13.1382638Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-09-07T06:46:13.1386162Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-09-07T06:46:13.1389577Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1392621Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-09-07T06:46:13.1395801Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-09-07T06:46:13.1398835Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-09-07T06:46:13.1401984Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1404768Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-09-07T06:46:13.1407805Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-09-07T06:46:13.1411108Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-09-07T06:46:13.1414948Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-09-07T06:46:13.1418345Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1421240Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-09-07T06:46:13.1424763Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-09-07T06:46:13.1428052Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1431748Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-09-07T06:46:13.1435049Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-09-07T06:46:13.1438456Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-09-07T06:46:13.1441834Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1444740Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-09-07T06:46:13.1447854Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-09-07T06:46:13.1451225Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-09-07T06:46:13.1454700Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-09-07T06:46:13.1458117Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1460983Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-09-07T06:46:13.1464261Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-09-07T06:46:13.1467580Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1470423Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-09-07T06:46:13.1473598Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-09-07T06:46:13.1476984Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-09-07T06:46:13.1480497Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1483392Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-09-07T06:46:13.1486709Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-09-07T06:46:13.1490035Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-09-07T06:46:13.1493513Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-09-07T06:46:13.1496937Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1499806Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-09-07T06:46:13.1503027Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-09-07T06:46:13.1506356Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1509249Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-09-07T06:46:13.1514153Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-09-07T06:46:13.1521049Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-09-07T06:46:13.1524399Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1527267Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-09-07T06:46:13.1530453Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-09-07T06:46:13.1533825Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-09-07T06:46:13.1537221Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1540107Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-09-07T06:46:13.1543446Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-09-07T06:46:13.1546618Z adding 'torch/include/ATen/ops/fill.h' 2025-09-07T06:46:13.1549848Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1552738Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-09-07T06:46:13.1555695Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-09-07T06:46:13.1558567Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-09-07T06:46:13.1561697Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1564495Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-09-07T06:46:13.1567648Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-09-07T06:46:13.1570671Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-09-07T06:46:13.1573725Z adding 'torch/include/ATen/ops/fill_native.h' 2025-09-07T06:46:13.1577115Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-09-07T06:46:13.1580336Z adding 'torch/include/ATen/ops/fix.h' 2025-09-07T06:46:13.1583848Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1586727Z adding 'torch/include/ATen/ops/fix_native.h' 2025-09-07T06:46:13.1589888Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-09-07T06:46:13.1593626Z adding 'torch/include/ATen/ops/flatten.h' 2025-09-07T06:46:13.1596971Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1600019Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-09-07T06:46:13.1603298Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1606166Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-09-07T06:46:13.1609303Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-09-07T06:46:13.1612257Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-09-07T06:46:13.1615673Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-09-07T06:46:13.1618767Z adding 'torch/include/ATen/ops/flip.h' 2025-09-07T06:46:13.1622373Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1625453Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-09-07T06:46:13.1628620Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-09-07T06:46:13.1631500Z adding 'torch/include/ATen/ops/flip_native.h' 2025-09-07T06:46:13.1634743Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-09-07T06:46:13.1637792Z adding 'torch/include/ATen/ops/fliplr.h' 2025-09-07T06:46:13.1641051Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1643935Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-09-07T06:46:13.1647043Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-09-07T06:46:13.1650138Z adding 'torch/include/ATen/ops/flipud.h' 2025-09-07T06:46:13.1653329Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1656220Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-09-07T06:46:13.1659254Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-09-07T06:46:13.1662736Z adding 'torch/include/ATen/ops/float_power.h' 2025-09-07T06:46:13.1666152Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1669239Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-09-07T06:46:13.1672855Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-09-07T06:46:13.1676037Z adding 'torch/include/ATen/ops/floor.h' 2025-09-07T06:46:13.1679428Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1682300Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-09-07T06:46:13.1685476Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-09-07T06:46:13.1688564Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-09-07T06:46:13.1691952Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1694952Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-09-07T06:46:13.1698118Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-09-07T06:46:13.1701259Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-09-07T06:46:13.1704309Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-09-07T06:46:13.1707811Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-09-07T06:46:13.1710836Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-09-07T06:46:13.1713977Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-09-07T06:46:13.1716942Z adding 'torch/include/ATen/ops/floor_native.h' 2025-09-07T06:46:13.1720220Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-09-07T06:46:13.1723296Z adding 'torch/include/ATen/ops/fmax.h' 2025-09-07T06:46:13.1726731Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1729662Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-09-07T06:46:13.1732711Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-09-07T06:46:13.1735786Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-09-07T06:46:13.1738744Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-09-07T06:46:13.1741744Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-09-07T06:46:13.1744945Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-09-07T06:46:13.1748120Z adding 'torch/include/ATen/ops/fmin.h' 2025-09-07T06:46:13.1751386Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1754464Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-09-07T06:46:13.1757412Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-09-07T06:46:13.1760450Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-09-07T06:46:13.1763804Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-09-07T06:46:13.1766866Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-09-07T06:46:13.1770032Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-09-07T06:46:13.1773145Z adding 'torch/include/ATen/ops/fmod.h' 2025-09-07T06:46:13.1776474Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1779594Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1782585Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-09-07T06:46:13.1785772Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-09-07T06:46:13.1788814Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-09-07T06:46:13.1791863Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-09-07T06:46:13.1794948Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-09-07T06:46:13.1798338Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-09-07T06:46:13.1801534Z adding 'torch/include/ATen/ops/frac.h' 2025-09-07T06:46:13.1804933Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1807803Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-09-07T06:46:13.1810957Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-09-07T06:46:13.1813862Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-09-07T06:46:13.1817029Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-09-07T06:46:13.1819991Z adding 'torch/include/ATen/ops/frac_native.h' 2025-09-07T06:46:13.1823327Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-09-07T06:46:13.1826591Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-09-07T06:46:13.1829917Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-09-07T06:46:13.1833452Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1836832Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.1840459Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.1843903Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-09-07T06:46:13.1847096Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-09-07T06:46:13.1850266Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-09-07T06:46:13.1853466Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-09-07T06:46:13.1856994Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1859950Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-09-07T06:46:13.1863238Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-09-07T06:46:13.1866240Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-09-07T06:46:13.1869565Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-09-07T06:46:13.1872544Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-09-07T06:46:13.1875741Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-09-07T06:46:13.1879105Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-09-07T06:46:13.1882373Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-09-07T06:46:13.1885511Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.1888608Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.1891554Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-09-07T06:46:13.1894955Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-09-07T06:46:13.1898284Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.1901203Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-09-07T06:46:13.1904363Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-09-07T06:46:13.1908280Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-09-07T06:46:13.1911668Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-09-07T06:46:13.1914727Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-09-07T06:46:13.1917933Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-09-07T06:46:13.1921017Z adding 'torch/include/ATen/ops/frexp.h' 2025-09-07T06:46:13.1924198Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1927371Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-09-07T06:46:13.1930335Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-09-07T06:46:13.1933333Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-09-07T06:46:13.1936801Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-09-07T06:46:13.1939977Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-09-07T06:46:13.1943327Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.1946176Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-09-07T06:46:13.1949298Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-09-07T06:46:13.1952887Z adding 'torch/include/ATen/ops/from_blob.h' 2025-09-07T06:46:13.1956178Z adding 'torch/include/ATen/ops/from_file.h' 2025-09-07T06:46:13.1959411Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1962415Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-09-07T06:46:13.1965378Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-09-07T06:46:13.1968583Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-09-07T06:46:13.1972477Z adding 'torch/include/ATen/ops/full.h' 2025-09-07T06:46:13.1976024Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1979180Z adding 'torch/include/ATen/ops/full_like.h' 2025-09-07T06:46:13.1982689Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.1985698Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-09-07T06:46:13.1989067Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-09-07T06:46:13.1992137Z adding 'torch/include/ATen/ops/full_native.h' 2025-09-07T06:46:13.1995913Z adding 'torch/include/ATen/ops/full_ops.h' 2025-09-07T06:46:13.1999247Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-09-07T06:46:13.2002552Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2005429Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-09-07T06:46:13.2008607Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-09-07T06:46:13.2011670Z adding 'torch/include/ATen/ops/gather.h' 2025-09-07T06:46:13.2014712Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-09-07T06:46:13.2017888Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2020681Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-09-07T06:46:13.2023891Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-09-07T06:46:13.2027203Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2030171Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2033086Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-09-07T06:46:13.2036079Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-09-07T06:46:13.2039001Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-09-07T06:46:13.2042064Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-09-07T06:46:13.2044989Z adding 'torch/include/ATen/ops/gather_native.h' 2025-09-07T06:46:13.2048239Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-09-07T06:46:13.2051340Z adding 'torch/include/ATen/ops/gcd.h' 2025-09-07T06:46:13.2054552Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2057392Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-09-07T06:46:13.2060354Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-09-07T06:46:13.2063334Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-09-07T06:46:13.2066389Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-09-07T06:46:13.2069306Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-09-07T06:46:13.2072427Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-09-07T06:46:13.2075591Z adding 'torch/include/ATen/ops/ge.h' 2025-09-07T06:46:13.2078847Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2081716Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-09-07T06:46:13.2085049Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-09-07T06:46:13.2087986Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-09-07T06:46:13.2091221Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-09-07T06:46:13.2094269Z adding 'torch/include/ATen/ops/ge_native.h' 2025-09-07T06:46:13.2097720Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-09-07T06:46:13.2100987Z adding 'torch/include/ATen/ops/gelu.h' 2025-09-07T06:46:13.2104239Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-09-07T06:46:13.2108061Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2110987Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2114193Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2117177Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-09-07T06:46:13.2120355Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-09-07T06:46:13.2123492Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-09-07T06:46:13.2126660Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-09-07T06:46:13.2130036Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2132925Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-09-07T06:46:13.2136082Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-09-07T06:46:13.2139004Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-09-07T06:46:13.2142200Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-09-07T06:46:13.2145317Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-09-07T06:46:13.2148711Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-09-07T06:46:13.2151866Z adding 'torch/include/ATen/ops/geometric.h' 2025-09-07T06:46:13.2155169Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2158199Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-09-07T06:46:13.2161184Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-09-07T06:46:13.2165134Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-09-07T06:46:13.2168182Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-09-07T06:46:13.2171580Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-09-07T06:46:13.2174695Z adding 'torch/include/ATen/ops/geqrf.h' 2025-09-07T06:46:13.2177985Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-09-07T06:46:13.2181069Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-09-07T06:46:13.2184101Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-09-07T06:46:13.2187360Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-09-07T06:46:13.2190401Z adding 'torch/include/ATen/ops/ger.h' 2025-09-07T06:46:13.2193693Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2196588Z adding 'torch/include/ATen/ops/ger_native.h' 2025-09-07T06:46:13.2199802Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-09-07T06:46:13.2202860Z adding 'torch/include/ATen/ops/glu.h' 2025-09-07T06:46:13.2206060Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-09-07T06:46:13.2209245Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2212367Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2215515Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-09-07T06:46:13.2218822Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2221860Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-09-07T06:46:13.2225050Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-09-07T06:46:13.2228168Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-09-07T06:46:13.2231447Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-09-07T06:46:13.2234643Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-09-07T06:46:13.2237795Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-09-07T06:46:13.2241207Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2244192Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-09-07T06:46:13.2247215Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-09-07T06:46:13.2250390Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-09-07T06:46:13.2253594Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2256618Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-09-07T06:46:13.2259595Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-09-07T06:46:13.2262624Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-09-07T06:46:13.2265883Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-09-07T06:46:13.2269032Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-09-07T06:46:13.2272212Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-09-07T06:46:13.2275177Z adding 'torch/include/ATen/ops/glu_native.h' 2025-09-07T06:46:13.2278757Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-09-07T06:46:13.2282024Z adding 'torch/include/ATen/ops/gradient.h' 2025-09-07T06:46:13.2285501Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2288458Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-09-07T06:46:13.2292154Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-09-07T06:46:13.2295533Z adding 'torch/include/ATen/ops/greater.h' 2025-09-07T06:46:13.2298869Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2302002Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-09-07T06:46:13.2305399Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2308390Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-09-07T06:46:13.2311734Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-09-07T06:46:13.2314915Z adding 'torch/include/ATen/ops/greater_native.h' 2025-09-07T06:46:13.2318298Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-09-07T06:46:13.2321436Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-09-07T06:46:13.2324663Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-09-07T06:46:13.2327895Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-09-07T06:46:13.2331426Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2334356Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2337815Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2341278Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-09-07T06:46:13.2345133Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-09-07T06:46:13.2348481Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2351672Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-09-07T06:46:13.2355277Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-09-07T06:46:13.2358605Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-09-07T06:46:13.2362207Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-09-07T06:46:13.2365296Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-09-07T06:46:13.2368693Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-09-07T06:46:13.2372061Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2375249Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2378340Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2381505Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-09-07T06:46:13.2384984Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-09-07T06:46:13.2388296Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2391278Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-09-07T06:46:13.2394301Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-09-07T06:46:13.2397437Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-09-07T06:46:13.2400666Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-09-07T06:46:13.2403869Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2406695Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-09-07T06:46:13.2409733Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-09-07T06:46:13.2412974Z adding 'torch/include/ATen/ops/group_norm.h' 2025-09-07T06:46:13.2416249Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2419130Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-09-07T06:46:13.2422227Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-09-07T06:46:13.2425444Z adding 'torch/include/ATen/ops/gru.h' 2025-09-07T06:46:13.2428464Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-09-07T06:46:13.2431608Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2434386Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-09-07T06:46:13.2437481Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-09-07T06:46:13.2440678Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2443715Z adding 'torch/include/ATen/ops/gru_native.h' 2025-09-07T06:46:13.2446979Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-09-07T06:46:13.2450123Z adding 'torch/include/ATen/ops/gt.h' 2025-09-07T06:46:13.2453745Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2456659Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-09-07T06:46:13.2459708Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-09-07T06:46:13.2462707Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-09-07T06:46:13.2465919Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-09-07T06:46:13.2468953Z adding 'torch/include/ATen/ops/gt_native.h' 2025-09-07T06:46:13.2472293Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-09-07T06:46:13.2476013Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-09-07T06:46:13.2479613Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2482540Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-09-07T06:46:13.2486152Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-09-07T06:46:13.2489570Z adding 'torch/include/ATen/ops/hann_window.h' 2025-09-07T06:46:13.2492897Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2496006Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-09-07T06:46:13.2499296Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-09-07T06:46:13.2502460Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-09-07T06:46:13.2505702Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-09-07T06:46:13.2509000Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2511849Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2514866Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2517794Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-09-07T06:46:13.2520821Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-09-07T06:46:13.2523734Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-09-07T06:46:13.2526852Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-09-07T06:46:13.2530140Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2532982Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-09-07T06:46:13.2535978Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-09-07T06:46:13.2538889Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-09-07T06:46:13.2541899Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-09-07T06:46:13.2544904Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-09-07T06:46:13.2547990Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-09-07T06:46:13.2550985Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-09-07T06:46:13.2554071Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-09-07T06:46:13.2557383Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2560198Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2563197Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2566099Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-09-07T06:46:13.2569104Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-09-07T06:46:13.2572009Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-09-07T06:46:13.2575173Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-09-07T06:46:13.2578365Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2581216Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-09-07T06:46:13.2584326Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-09-07T06:46:13.2587211Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-09-07T06:46:13.2590206Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-09-07T06:46:13.2593139Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-09-07T06:46:13.2596226Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-09-07T06:46:13.2599242Z adding 'torch/include/ATen/ops/hardswish.h' 2025-09-07T06:46:13.2602489Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-09-07T06:46:13.2605803Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2608830Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2611962Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2614959Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-09-07T06:46:13.2618163Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-09-07T06:46:13.2621565Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-09-07T06:46:13.2624833Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-09-07T06:46:13.2627867Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-09-07T06:46:13.2631356Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-09-07T06:46:13.2634577Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-09-07T06:46:13.2637766Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-09-07T06:46:13.2641041Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-09-07T06:46:13.2644191Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2647357Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2650317Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-09-07T06:46:13.2653603Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-09-07T06:46:13.2656743Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-09-07T06:46:13.2659962Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-09-07T06:46:13.2663115Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-09-07T06:46:13.2666232Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-09-07T06:46:13.2669572Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-09-07T06:46:13.2672711Z adding 'torch/include/ATen/ops/hash_tensor.h' 2025-09-07T06:46:13.2676094Z adding 'torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2679013Z adding 'torch/include/ATen/ops/hash_tensor_cpu_dispatch.h' 2025-09-07T06:46:13.2682205Z adding 'torch/include/ATen/ops/hash_tensor_cuda_dispatch.h' 2025-09-07T06:46:13.2685125Z adding 'torch/include/ATen/ops/hash_tensor_meta.h' 2025-09-07T06:46:13.2688336Z adding 'torch/include/ATen/ops/hash_tensor_meta_dispatch.h' 2025-09-07T06:46:13.2691270Z adding 'torch/include/ATen/ops/hash_tensor_native.h' 2025-09-07T06:46:13.2694549Z adding 'torch/include/ATen/ops/hash_tensor_ops.h' 2025-09-07T06:46:13.2697651Z adding 'torch/include/ATen/ops/heaviside.h' 2025-09-07T06:46:13.2700984Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2704093Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-09-07T06:46:13.2707153Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-09-07T06:46:13.2710202Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-09-07T06:46:13.2713272Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-09-07T06:46:13.2716330Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-09-07T06:46:13.2719467Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-09-07T06:46:13.2722719Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-09-07T06:46:13.2725989Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2728986Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-09-07T06:46:13.2732241Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-09-07T06:46:13.2735293Z adding 'torch/include/ATen/ops/histc.h' 2025-09-07T06:46:13.2738506Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-09-07T06:46:13.2741548Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-09-07T06:46:13.2744764Z adding 'torch/include/ATen/ops/histc_native.h' 2025-09-07T06:46:13.2747892Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-09-07T06:46:13.2751397Z adding 'torch/include/ATen/ops/histogram.h' 2025-09-07T06:46:13.2754727Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-09-07T06:46:13.2757918Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-09-07T06:46:13.2761430Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-09-07T06:46:13.2764693Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-09-07T06:46:13.2768162Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2770999Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-09-07T06:46:13.2774462Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-09-07T06:46:13.2777573Z adding 'torch/include/ATen/ops/hsplit.h' 2025-09-07T06:46:13.2780907Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2783974Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-09-07T06:46:13.2787058Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-09-07T06:46:13.2790245Z adding 'torch/include/ATen/ops/hspmm.h' 2025-09-07T06:46:13.2793499Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-09-07T06:46:13.2796753Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-09-07T06:46:13.2799799Z adding 'torch/include/ATen/ops/hstack.h' 2025-09-07T06:46:13.2803218Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2806073Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-09-07T06:46:13.2809337Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-09-07T06:46:13.2812540Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-09-07T06:46:13.2815708Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-09-07T06:46:13.2819089Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.2822074Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-09-07T06:46:13.2825397Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-09-07T06:46:13.2828380Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-09-07T06:46:13.2831680Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-09-07T06:46:13.2834792Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-09-07T06:46:13.2838025Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-09-07T06:46:13.2840967Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-09-07T06:46:13.2844625Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-09-07T06:46:13.2848096Z adding 'torch/include/ATen/ops/hypot.h' 2025-09-07T06:46:13.2851558Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2854488Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-09-07T06:46:13.2857664Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-09-07T06:46:13.2860597Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-09-07T06:46:13.2863870Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-09-07T06:46:13.2866872Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-09-07T06:46:13.2870122Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-09-07T06:46:13.2873403Z adding 'torch/include/ATen/ops/i0.h' 2025-09-07T06:46:13.2877083Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2880011Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-09-07T06:46:13.2883056Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-09-07T06:46:13.2886159Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-09-07T06:46:13.2889175Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-09-07T06:46:13.2892900Z adding 'torch/include/ATen/ops/i0_native.h' 2025-09-07T06:46:13.2896129Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-09-07T06:46:13.2899169Z adding 'torch/include/ATen/ops/igamma.h' 2025-09-07T06:46:13.2902620Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2905657Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-09-07T06:46:13.2908763Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-09-07T06:46:13.2911599Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-09-07T06:46:13.2914644Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-09-07T06:46:13.2917531Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-09-07T06:46:13.2920658Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-09-07T06:46:13.2923731Z adding 'torch/include/ATen/ops/igammac.h' 2025-09-07T06:46:13.2926926Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2929739Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-09-07T06:46:13.2932959Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-09-07T06:46:13.2935881Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-09-07T06:46:13.2938978Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-09-07T06:46:13.2941844Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-09-07T06:46:13.2945087Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-09-07T06:46:13.2948206Z adding 'torch/include/ATen/ops/im2col.h' 2025-09-07T06:46:13.2951306Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-09-07T06:46:13.2954318Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-09-07T06:46:13.2957307Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-09-07T06:46:13.2960485Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-09-07T06:46:13.2963679Z adding 'torch/include/ATen/ops/imag.h' 2025-09-07T06:46:13.2966842Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2969623Z adding 'torch/include/ATen/ops/imag_native.h' 2025-09-07T06:46:13.2972610Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-09-07T06:46:13.2975634Z adding 'torch/include/ATen/ops/index.h' 2025-09-07T06:46:13.2978751Z adding 'torch/include/ATen/ops/index_add.h' 2025-09-07T06:46:13.2982047Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.2985273Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.2988416Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-09-07T06:46:13.2991531Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-09-07T06:46:13.2994598Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-09-07T06:46:13.2997723Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-09-07T06:46:13.3000803Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-09-07T06:46:13.3004106Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-09-07T06:46:13.3007462Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3010324Z adding 'torch/include/ATen/ops/index_copy.h' 2025-09-07T06:46:13.3013566Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3016674Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3019650Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-09-07T06:46:13.3022626Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-09-07T06:46:13.3034228Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-09-07T06:46:13.3034531Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-09-07T06:46:13.3034702Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-09-07T06:46:13.3038613Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-09-07T06:46:13.3041760Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-09-07T06:46:13.3044581Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-09-07T06:46:13.3047777Z adding 'torch/include/ATen/ops/index_fill.h' 2025-09-07T06:46:13.3051095Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3054144Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3057369Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-09-07T06:46:13.3060063Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-09-07T06:46:13.3063103Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-09-07T06:46:13.3066134Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-09-07T06:46:13.3069807Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-09-07T06:46:13.3073289Z adding 'torch/include/ATen/ops/index_meta.h' 2025-09-07T06:46:13.3076332Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-09-07T06:46:13.3079306Z adding 'torch/include/ATen/ops/index_native.h' 2025-09-07T06:46:13.3082423Z adding 'torch/include/ATen/ops/index_ops.h' 2025-09-07T06:46:13.3085535Z adding 'torch/include/ATen/ops/index_put.h' 2025-09-07T06:46:13.3088831Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3091650Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-09-07T06:46:13.3094860Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-09-07T06:46:13.3097993Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-09-07T06:46:13.3101312Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3104342Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-09-07T06:46:13.3107400Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-09-07T06:46:13.3110437Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-09-07T06:46:13.3113561Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-09-07T06:46:13.3116491Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-09-07T06:46:13.3119725Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-09-07T06:46:13.3122914Z adding 'torch/include/ATen/ops/index_select.h' 2025-09-07T06:46:13.3126079Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-09-07T06:46:13.3129329Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3132155Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-09-07T06:46:13.3135417Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-09-07T06:46:13.3138582Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3141516Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-09-07T06:46:13.3144622Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-09-07T06:46:13.3147606Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-09-07T06:46:13.3150835Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-09-07T06:46:13.3153740Z adding 'torch/include/ATen/ops/indices.h' 2025-09-07T06:46:13.3157006Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3159913Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-09-07T06:46:13.3163086Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3166170Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3168888Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-09-07T06:46:13.3172234Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-09-07T06:46:13.3175207Z adding 'torch/include/ATen/ops/indices_native.h' 2025-09-07T06:46:13.3178253Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-09-07T06:46:13.3181326Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-09-07T06:46:13.3184699Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3187482Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-09-07T06:46:13.3190537Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-09-07T06:46:13.3193387Z adding 'torch/include/ATen/ops/inner.h' 2025-09-07T06:46:13.3196608Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3199391Z adding 'torch/include/ATen/ops/inner_native.h' 2025-09-07T06:46:13.3202490Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-09-07T06:46:13.3205566Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-09-07T06:46:13.3208739Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3211659Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-09-07T06:46:13.3214681Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-09-07T06:46:13.3217677Z adding 'torch/include/ATen/ops/int_repr.h' 2025-09-07T06:46:13.3220856Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3223792Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-09-07T06:46:13.3226951Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-09-07T06:46:13.3229903Z adding 'torch/include/ATen/ops/inverse.h' 2025-09-07T06:46:13.3233055Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3235865Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-09-07T06:46:13.3238930Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-09-07T06:46:13.3241837Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-09-07T06:46:13.3244949Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3247777Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-09-07T06:46:13.3250726Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-09-07T06:46:13.3253645Z adding 'torch/include/ATen/ops/is_complex.h' 2025-09-07T06:46:13.3256946Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3259746Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-09-07T06:46:13.3263000Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-09-07T06:46:13.3265965Z adding 'torch/include/ATen/ops/is_conj.h' 2025-09-07T06:46:13.3269334Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3272168Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-09-07T06:46:13.3275362Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-09-07T06:46:13.3278340Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-09-07T06:46:13.3281663Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3284461Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-09-07T06:46:13.3287634Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-09-07T06:46:13.3290679Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-09-07T06:46:13.3293904Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3296792Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-09-07T06:46:13.3300139Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-09-07T06:46:13.3303320Z adding 'torch/include/ATen/ops/is_inference.h' 2025-09-07T06:46:13.3306547Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3309489Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-09-07T06:46:13.3312538Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-09-07T06:46:13.3315554Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-09-07T06:46:13.3318697Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3321653Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-09-07T06:46:13.3324686Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-09-07T06:46:13.3327798Z adding 'torch/include/ATen/ops/is_neg.h' 2025-09-07T06:46:13.3330995Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3333897Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-09-07T06:46:13.3337002Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-09-07T06:46:13.3339980Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-09-07T06:46:13.3343328Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3346124Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-09-07T06:46:13.3349355Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-09-07T06:46:13.3352634Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-09-07T06:46:13.3356401Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3359553Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-09-07T06:46:13.3363151Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-09-07T06:46:13.3366595Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-09-07T06:46:13.3370317Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3373572Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-09-07T06:46:13.3376890Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-09-07T06:46:13.3379819Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-09-07T06:46:13.3383137Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-09-07T06:46:13.3386190Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-09-07T06:46:13.3389278Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-09-07T06:46:13.3392341Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-09-07T06:46:13.3395521Z adding 'torch/include/ATen/ops/is_signed.h' 2025-09-07T06:46:13.3398648Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3401619Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-09-07T06:46:13.3404625Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-09-07T06:46:13.3407551Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-09-07T06:46:13.3410856Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3413708Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-09-07T06:46:13.3416714Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-09-07T06:46:13.3419732Z adding 'torch/include/ATen/ops/isclose.h' 2025-09-07T06:46:13.3422969Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3425810Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-09-07T06:46:13.3429129Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-09-07T06:46:13.3432138Z adding 'torch/include/ATen/ops/isfinite.h' 2025-09-07T06:46:13.3435268Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3438002Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-09-07T06:46:13.3441041Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-09-07T06:46:13.3444331Z adding 'torch/include/ATen/ops/isin.h' 2025-09-07T06:46:13.3447724Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3450673Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-09-07T06:46:13.3453809Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-09-07T06:46:13.3456833Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-09-07T06:46:13.3460182Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-09-07T06:46:13.3463326Z adding 'torch/include/ATen/ops/isin_native.h' 2025-09-07T06:46:13.3466772Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-09-07T06:46:13.3470219Z adding 'torch/include/ATen/ops/isinf.h' 2025-09-07T06:46:13.3473435Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3476281Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-09-07T06:46:13.3479323Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-09-07T06:46:13.3482300Z adding 'torch/include/ATen/ops/isnan.h' 2025-09-07T06:46:13.3485440Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3488347Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-09-07T06:46:13.3491315Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-09-07T06:46:13.3494208Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-09-07T06:46:13.3497318Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-09-07T06:46:13.3500341Z adding 'torch/include/ATen/ops/isneginf.h' 2025-09-07T06:46:13.3503661Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3506602Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-09-07T06:46:13.3509565Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-09-07T06:46:13.3512541Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-09-07T06:46:13.3515570Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-09-07T06:46:13.3518491Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-09-07T06:46:13.3521601Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-09-07T06:46:13.3524681Z adding 'torch/include/ATen/ops/isposinf.h' 2025-09-07T06:46:13.3527848Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3530644Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-09-07T06:46:13.3533612Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-09-07T06:46:13.3536505Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-09-07T06:46:13.3539513Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-09-07T06:46:13.3542490Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-09-07T06:46:13.3545738Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-09-07T06:46:13.3548683Z adding 'torch/include/ATen/ops/isreal.h' 2025-09-07T06:46:13.3551806Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3554556Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-09-07T06:46:13.3557535Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-09-07T06:46:13.3560585Z adding 'torch/include/ATen/ops/istft.h' 2025-09-07T06:46:13.3563778Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3566585Z adding 'torch/include/ATen/ops/istft_native.h' 2025-09-07T06:46:13.3569732Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-09-07T06:46:13.3572658Z adding 'torch/include/ATen/ops/item.h' 2025-09-07T06:46:13.3575753Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3578513Z adding 'torch/include/ATen/ops/item_native.h' 2025-09-07T06:46:13.3581487Z adding 'torch/include/ATen/ops/item_ops.h' 2025-09-07T06:46:13.3584981Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-09-07T06:46:13.3588399Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3591320Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-09-07T06:46:13.3594785Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-09-07T06:46:13.3597916Z adding 'torch/include/ATen/ops/kl_div.h' 2025-09-07T06:46:13.3601077Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3604662Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-09-07T06:46:13.3607807Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-09-07T06:46:13.3610854Z adding 'torch/include/ATen/ops/kron.h' 2025-09-07T06:46:13.3614002Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3616807Z adding 'torch/include/ATen/ops/kron_native.h' 2025-09-07T06:46:13.3619906Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-09-07T06:46:13.3623618Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-09-07T06:46:13.3627045Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3630114Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3633107Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-09-07T06:46:13.3636440Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-09-07T06:46:13.3639400Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-09-07T06:46:13.3642733Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-09-07T06:46:13.3645810Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-09-07T06:46:13.3648937Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3651742Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-09-07T06:46:13.3654762Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-09-07T06:46:13.3658446Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-09-07T06:46:13.3661311Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3664388Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-09-07T06:46:13.3667659Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-09-07T06:46:13.3670736Z adding 'torch/include/ATen/ops/lcm.h' 2025-09-07T06:46:13.3674231Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3677015Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-09-07T06:46:13.3680190Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-09-07T06:46:13.3683237Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-09-07T06:46:13.3686267Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-09-07T06:46:13.3689256Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-09-07T06:46:13.3692502Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-09-07T06:46:13.3695684Z adding 'torch/include/ATen/ops/ldexp.h' 2025-09-07T06:46:13.3698896Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3701905Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-09-07T06:46:13.3705203Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-09-07T06:46:13.3708457Z adding 'torch/include/ATen/ops/le.h' 2025-09-07T06:46:13.3711790Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3714844Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-09-07T06:46:13.3718070Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-09-07T06:46:13.3721106Z adding 'torch/include/ATen/ops/le_meta.h' 2025-09-07T06:46:13.3724259Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-09-07T06:46:13.3727285Z adding 'torch/include/ATen/ops/le_native.h' 2025-09-07T06:46:13.3730759Z adding 'torch/include/ATen/ops/le_ops.h' 2025-09-07T06:46:13.3733947Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-09-07T06:46:13.3737251Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-09-07T06:46:13.3740719Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3743772Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-09-07T06:46:13.3746960Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-09-07T06:46:13.3749932Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-09-07T06:46:13.3753117Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-09-07T06:46:13.3756255Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-09-07T06:46:13.3759588Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-09-07T06:46:13.3762841Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3765927Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-09-07T06:46:13.3769085Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-09-07T06:46:13.3772067Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-09-07T06:46:13.3775309Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-09-07T06:46:13.3778318Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-09-07T06:46:13.3781624Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-09-07T06:46:13.3784906Z adding 'torch/include/ATen/ops/lerp.h' 2025-09-07T06:46:13.3788419Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3791374Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-09-07T06:46:13.3794613Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-09-07T06:46:13.3797626Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-09-07T06:46:13.3800837Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-09-07T06:46:13.3804025Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-09-07T06:46:13.3807738Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-09-07T06:46:13.3811615Z adding 'torch/include/ATen/ops/less.h' 2025-09-07T06:46:13.3814470Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3817651Z adding 'torch/include/ATen/ops/less_equal.h' 2025-09-07T06:46:13.3822037Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3824125Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-09-07T06:46:13.3827727Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-09-07T06:46:13.3830710Z adding 'torch/include/ATen/ops/less_native.h' 2025-09-07T06:46:13.3834197Z adding 'torch/include/ATen/ops/less_ops.h' 2025-09-07T06:46:13.3837343Z adding 'torch/include/ATen/ops/lgamma.h' 2025-09-07T06:46:13.3840833Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3843752Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-09-07T06:46:13.3846954Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-09-07T06:46:13.3850094Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-09-07T06:46:13.3853506Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-09-07T06:46:13.3856919Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-09-07T06:46:13.3860549Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-09-07T06:46:13.3864171Z adding 'torch/include/ATen/ops/lift.h' 2025-09-07T06:46:13.3867548Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3870623Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-09-07T06:46:13.3873816Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3876896Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-09-07T06:46:13.3880144Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.3883492Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3886290Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-09-07T06:46:13.3889602Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-09-07T06:46:13.3892557Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-09-07T06:46:13.3895682Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-09-07T06:46:13.3898632Z adding 'torch/include/ATen/ops/lift_native.h' 2025-09-07T06:46:13.3901922Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-09-07T06:46:13.3905206Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-09-07T06:46:13.3908450Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3911404Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-09-07T06:46:13.3914768Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3917829Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-09-07T06:46:13.3920986Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-09-07T06:46:13.3923943Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-09-07T06:46:13.3926984Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-09-07T06:46:13.3929897Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-09-07T06:46:13.3933047Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-09-07T06:46:13.3935978Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-09-07T06:46:13.3939062Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-09-07T06:46:13.3942173Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-09-07T06:46:13.3945610Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3949044Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-09-07T06:46:13.3952319Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-09-07T06:46:13.3955423Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-09-07T06:46:13.3959195Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.3961631Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-09-07T06:46:13.3964584Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-09-07T06:46:13.3967527Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-09-07T06:46:13.3970620Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-09-07T06:46:13.3974034Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-09-07T06:46:13.3976664Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-09-07T06:46:13.3980035Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-09-07T06:46:13.3983307Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3986195Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-09-07T06:46:13.3989278Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-09-07T06:46:13.3992339Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-09-07T06:46:13.3995562Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.3998407Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-09-07T06:46:13.4001485Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-09-07T06:46:13.4004704Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-09-07T06:46:13.4007954Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-09-07T06:46:13.4011067Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-09-07T06:46:13.4014000Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-09-07T06:46:13.4017178Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-09-07T06:46:13.4020300Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-09-07T06:46:13.4023670Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4026570Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-09-07T06:46:13.4029773Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-09-07T06:46:13.4032801Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-09-07T06:46:13.4036032Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4038933Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-09-07T06:46:13.4041953Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-09-07T06:46:13.4044932Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-09-07T06:46:13.4048004Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-09-07T06:46:13.4051043Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-09-07T06:46:13.4054242Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4057053Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-09-07T06:46:13.4060139Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-09-07T06:46:13.4063404Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-09-07T06:46:13.4066585Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-09-07T06:46:13.4069636Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-09-07T06:46:13.4072558Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-09-07T06:46:13.4075627Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-09-07T06:46:13.4078662Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-09-07T06:46:13.4081817Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4084717Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-09-07T06:46:13.4088018Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4090891Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-09-07T06:46:13.4093913Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-09-07T06:46:13.4097467Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-09-07T06:46:13.4099954Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-09-07T06:46:13.4102882Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-09-07T06:46:13.4106088Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-09-07T06:46:13.4109028Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-09-07T06:46:13.4112100Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-09-07T06:46:13.4115682Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-09-07T06:46:13.4118481Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4121446Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-09-07T06:46:13.4124754Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4127618Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-09-07T06:46:13.4130658Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-09-07T06:46:13.4133570Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-09-07T06:46:13.4136629Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-09-07T06:46:13.4139566Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-09-07T06:46:13.4142764Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-09-07T06:46:13.4146147Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-09-07T06:46:13.4149287Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-09-07T06:46:13.4152355Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-09-07T06:46:13.4155618Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4158478Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-09-07T06:46:13.4161538Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-09-07T06:46:13.4164445Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-09-07T06:46:13.4167657Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-09-07T06:46:13.4170593Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-09-07T06:46:13.4173699Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-09-07T06:46:13.4176873Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-09-07T06:46:13.4180109Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4183160Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-09-07T06:46:13.4186268Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-09-07T06:46:13.4189256Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-09-07T06:46:13.4192469Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-09-07T06:46:13.4195605Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-09-07T06:46:13.4198895Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4201705Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-09-07T06:46:13.4204787Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-09-07T06:46:13.4207825Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-09-07T06:46:13.4211082Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4214025Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-09-07T06:46:13.4217335Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4220217Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-09-07T06:46:13.4223345Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-09-07T06:46:13.4226267Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-09-07T06:46:13.4229509Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-09-07T06:46:13.4232547Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-09-07T06:46:13.4235714Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-09-07T06:46:13.4238726Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-09-07T06:46:13.4241858Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-09-07T06:46:13.4244863Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-09-07T06:46:13.4247964Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-09-07T06:46:13.4250810Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-09-07T06:46:13.4253985Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-09-07T06:46:13.4257105Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-09-07T06:46:13.4260434Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4263412Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-09-07T06:46:13.4266610Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-09-07T06:46:13.4269572Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-09-07T06:46:13.4272792Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-09-07T06:46:13.4275735Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-09-07T06:46:13.4279054Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-09-07T06:46:13.4282103Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-09-07T06:46:13.4285514Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4288489Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-09-07T06:46:13.4291650Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-09-07T06:46:13.4294830Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-09-07T06:46:13.4298118Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4301132Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-09-07T06:46:13.4304345Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-09-07T06:46:13.4307379Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-09-07T06:46:13.4310504Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-09-07T06:46:13.4314291Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-09-07T06:46:13.4317860Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4320781Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-09-07T06:46:13.4325080Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-09-07T06:46:13.4328367Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-09-07T06:46:13.4331722Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4334664Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-09-07T06:46:13.4337834Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-09-07T06:46:13.4341531Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-09-07T06:46:13.4345149Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4348300Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-09-07T06:46:13.4352005Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-09-07T06:46:13.4355237Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-09-07T06:46:13.4358718Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4361978Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-09-07T06:46:13.4365514Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-09-07T06:46:13.4369208Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-09-07T06:46:13.4373105Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4376490Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-09-07T06:46:13.4380434Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-09-07T06:46:13.4384425Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-09-07T06:46:13.4388301Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4391890Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4395440Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4398399Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-09-07T06:46:13.4402155Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-09-07T06:46:13.4405379Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-09-07T06:46:13.4408916Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4411843Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-09-07T06:46:13.4415102Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-09-07T06:46:13.4418108Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-09-07T06:46:13.4421363Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-09-07T06:46:13.4424428Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-09-07T06:46:13.4427563Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-09-07T06:46:13.4430801Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-09-07T06:46:13.4434047Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4436862Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-09-07T06:46:13.4439951Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-09-07T06:46:13.4442991Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-09-07T06:46:13.4446399Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4449413Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-09-07T06:46:13.4452777Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4455619Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-09-07T06:46:13.4458779Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-09-07T06:46:13.4461723Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-09-07T06:46:13.4465092Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-09-07T06:46:13.4468247Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-09-07T06:46:13.4471451Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-09-07T06:46:13.4474505Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-09-07T06:46:13.4477565Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-09-07T06:46:13.4480739Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-09-07T06:46:13.4483829Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-09-07T06:46:13.4487090Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4489893Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-09-07T06:46:13.4493581Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-09-07T06:46:13.4496726Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-09-07T06:46:13.4499954Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4502880Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-09-07T06:46:13.4506041Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-09-07T06:46:13.4509121Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-09-07T06:46:13.4512411Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4515713Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-09-07T06:46:13.4518547Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-09-07T06:46:13.4521681Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-09-07T06:46:13.4525032Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4527851Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-09-07T06:46:13.4530918Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-09-07T06:46:13.4534089Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-09-07T06:46:13.4537375Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4540269Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-09-07T06:46:13.4543437Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-09-07T06:46:13.4546526Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-09-07T06:46:13.4549730Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4552539Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-09-07T06:46:13.4555632Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-09-07T06:46:13.4558814Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-09-07T06:46:13.4562101Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4565042Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-09-07T06:46:13.4568258Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-09-07T06:46:13.4571237Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-09-07T06:46:13.4574375Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-09-07T06:46:13.4577365Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-09-07T06:46:13.4580515Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-09-07T06:46:13.4583708Z adding 'torch/include/ATen/ops/linear.h' 2025-09-07T06:46:13.4586939Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-09-07T06:46:13.4590271Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4593168Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-09-07T06:46:13.4596466Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-09-07T06:46:13.4599773Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4602815Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4605703Z adding 'torch/include/ATen/ops/linear_native.h' 2025-09-07T06:46:13.4608884Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-09-07T06:46:13.4612450Z adding 'torch/include/ATen/ops/linspace.h' 2025-09-07T06:46:13.4616049Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4619041Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-09-07T06:46:13.4622168Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-09-07T06:46:13.4625291Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-09-07T06:46:13.4628394Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-09-07T06:46:13.4632090Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-09-07T06:46:13.4635810Z adding 'torch/include/ATen/ops/log.h' 2025-09-07T06:46:13.4638634Z adding 'torch/include/ATen/ops/log10.h' 2025-09-07T06:46:13.4642018Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4644761Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-09-07T06:46:13.4647802Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-09-07T06:46:13.4650725Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-09-07T06:46:13.4653733Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-09-07T06:46:13.4656685Z adding 'torch/include/ATen/ops/log10_native.h' 2025-09-07T06:46:13.4659844Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-09-07T06:46:13.4663335Z adding 'torch/include/ATen/ops/log1p.h' 2025-09-07T06:46:13.4666600Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4669620Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-09-07T06:46:13.4672554Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-09-07T06:46:13.4675440Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-09-07T06:46:13.4678462Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-09-07T06:46:13.4681416Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-09-07T06:46:13.4684582Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-09-07T06:46:13.4687718Z adding 'torch/include/ATen/ops/log2.h' 2025-09-07T06:46:13.4690875Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4693746Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-09-07T06:46:13.4696742Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-09-07T06:46:13.4699653Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-09-07T06:46:13.4702715Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-09-07T06:46:13.4705827Z adding 'torch/include/ATen/ops/log2_native.h' 2025-09-07T06:46:13.4708993Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-09-07T06:46:13.4712246Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4715111Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-09-07T06:46:13.4718105Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-09-07T06:46:13.4721004Z adding 'torch/include/ATen/ops/log_meta.h' 2025-09-07T06:46:13.4724023Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-09-07T06:46:13.4726918Z adding 'torch/include/ATen/ops/log_native.h' 2025-09-07T06:46:13.4729929Z adding 'torch/include/ATen/ops/log_normal.h' 2025-09-07T06:46:13.4733179Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4736305Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-09-07T06:46:13.4739386Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-09-07T06:46:13.4742755Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-09-07T06:46:13.4745775Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-09-07T06:46:13.4749237Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-09-07T06:46:13.4752481Z adding 'torch/include/ATen/ops/log_ops.h' 2025-09-07T06:46:13.4755751Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-09-07T06:46:13.4759027Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-09-07T06:46:13.4762471Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-09-07T06:46:13.4765703Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-09-07T06:46:13.4768669Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-09-07T06:46:13.4771978Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-09-07T06:46:13.4775208Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4778325Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-09-07T06:46:13.4781521Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-09-07T06:46:13.4784750Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-09-07T06:46:13.4787886Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-09-07T06:46:13.4791041Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-09-07T06:46:13.4794104Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-09-07T06:46:13.4797224Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-09-07T06:46:13.4800459Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-09-07T06:46:13.4803707Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4806964Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4809965Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-09-07T06:46:13.4813278Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-09-07T06:46:13.4816576Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-09-07T06:46:13.4819565Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-09-07T06:46:13.4822989Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4825891Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-09-07T06:46:13.4829048Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-09-07T06:46:13.4832452Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-09-07T06:46:13.4835718Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-09-07T06:46:13.4838660Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-09-07T06:46:13.4849169Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-09-07T06:46:13.4849890Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4850518Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-09-07T06:46:13.4851051Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-09-07T06:46:13.4854018Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-09-07T06:46:13.4857168Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-09-07T06:46:13.4860055Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-09-07T06:46:13.4863644Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-09-07T06:46:13.4867179Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-09-07T06:46:13.4870889Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4874392Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4877692Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-09-07T06:46:13.4881356Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-09-07T06:46:13.4884762Z adding 'torch/include/ATen/ops/logdet.h' 2025-09-07T06:46:13.4888414Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.4891671Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-09-07T06:46:13.4894981Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-09-07T06:46:13.4898038Z adding 'torch/include/ATen/ops/logical_and.h' 2025-09-07T06:46:13.4901427Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4904470Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-09-07T06:46:13.4907659Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-09-07T06:46:13.4910555Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-09-07T06:46:13.4913973Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-09-07T06:46:13.4917090Z adding 'torch/include/ATen/ops/logical_not.h' 2025-09-07T06:46:13.4920492Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4923426Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-09-07T06:46:13.4926372Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-09-07T06:46:13.4929441Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-09-07T06:46:13.4932549Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-09-07T06:46:13.4935600Z adding 'torch/include/ATen/ops/logical_or.h' 2025-09-07T06:46:13.4938760Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4941668Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-09-07T06:46:13.4944950Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-09-07T06:46:13.4948152Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-09-07T06:46:13.4951337Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-09-07T06:46:13.4954413Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-09-07T06:46:13.4957553Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.4960495Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-09-07T06:46:13.4963426Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-09-07T06:46:13.4966436Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-09-07T06:46:13.4969567Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-09-07T06:46:13.4972560Z adding 'torch/include/ATen/ops/logit.h' 2025-09-07T06:46:13.4975762Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-09-07T06:46:13.4979076Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.4982014Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-09-07T06:46:13.4985143Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-09-07T06:46:13.4988064Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-09-07T06:46:13.4991161Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-09-07T06:46:13.4994125Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-09-07T06:46:13.4997253Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-09-07T06:46:13.5000315Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-09-07T06:46:13.5003644Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-09-07T06:46:13.5006644Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-09-07T06:46:13.5009542Z adding 'torch/include/ATen/ops/logit_native.h' 2025-09-07T06:46:13.5012682Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-09-07T06:46:13.5016432Z adding 'torch/include/ATen/ops/logspace.h' 2025-09-07T06:46:13.5020023Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5023145Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-09-07T06:46:13.5026156Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-09-07T06:46:13.5029143Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-09-07T06:46:13.5032335Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-09-07T06:46:13.5036095Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-09-07T06:46:13.5039457Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-09-07T06:46:13.5042681Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5045794Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5048782Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5051582Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-09-07T06:46:13.5055577Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-09-07T06:46:13.5058805Z adding 'torch/include/ATen/ops/lshift.h' 2025-09-07T06:46:13.5062100Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5065196Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-09-07T06:46:13.5068194Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-09-07T06:46:13.5071204Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-09-07T06:46:13.5074135Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-09-07T06:46:13.5077505Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-09-07T06:46:13.5080697Z adding 'torch/include/ATen/ops/lstm.h' 2025-09-07T06:46:13.5083867Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-09-07T06:46:13.5087034Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5089825Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-09-07T06:46:13.5092931Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-09-07T06:46:13.5096166Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5099330Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-09-07T06:46:13.5102782Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5105855Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-09-07T06:46:13.5109267Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-09-07T06:46:13.5112355Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-09-07T06:46:13.5115636Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-09-07T06:46:13.5118711Z adding 'torch/include/ATen/ops/lt.h' 2025-09-07T06:46:13.5121965Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5124914Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-09-07T06:46:13.5128068Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-09-07T06:46:13.5131111Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-09-07T06:46:13.5134282Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-09-07T06:46:13.5137291Z adding 'torch/include/ATen/ops/lt_native.h' 2025-09-07T06:46:13.5140620Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-09-07T06:46:13.5143858Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-09-07T06:46:13.5147057Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5149909Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-09-07T06:46:13.5153068Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-09-07T06:46:13.5156202Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-09-07T06:46:13.5159549Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5162475Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-09-07T06:46:13.5165545Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-09-07T06:46:13.5168581Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-09-07T06:46:13.5171664Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-09-07T06:46:13.5174941Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-09-07T06:46:13.5178167Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-09-07T06:46:13.5181099Z adding 'torch/include/ATen/ops/mH.h' 2025-09-07T06:46:13.5184331Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5187113Z adding 'torch/include/ATen/ops/mH_native.h' 2025-09-07T06:46:13.5190112Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-09-07T06:46:13.5192999Z adding 'torch/include/ATen/ops/mT.h' 2025-09-07T06:46:13.5196105Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5198876Z adding 'torch/include/ATen/ops/mT_native.h' 2025-09-07T06:46:13.5201881Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-09-07T06:46:13.5205051Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-09-07T06:46:13.5208286Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5211119Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-09-07T06:46:13.5214210Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-09-07T06:46:13.5217292Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-09-07T06:46:13.5220596Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5223659Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-09-07T06:46:13.5226707Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-09-07T06:46:13.5229724Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-09-07T06:46:13.5232704Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-09-07T06:46:13.5236358Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-09-07T06:46:13.5239504Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-09-07T06:46:13.5242667Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-09-07T06:46:13.5245957Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5248771Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-09-07T06:46:13.5251924Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-09-07T06:46:13.5255078Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5257967Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-09-07T06:46:13.5261050Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-09-07T06:46:13.5264045Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-09-07T06:46:13.5266991Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-09-07T06:46:13.5270146Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-09-07T06:46:13.5273217Z adding 'torch/include/ATen/ops/masked_select.h' 2025-09-07T06:46:13.5276361Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-09-07T06:46:13.5279522Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5282328Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-09-07T06:46:13.5285371Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-09-07T06:46:13.5288372Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-09-07T06:46:13.5291381Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-09-07T06:46:13.5294262Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-09-07T06:46:13.5297327Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-09-07T06:46:13.5300380Z adding 'torch/include/ATen/ops/matmul.h' 2025-09-07T06:46:13.5303593Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-09-07T06:46:13.5306828Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5309676Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-09-07T06:46:13.5312832Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-09-07T06:46:13.5316050Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5318888Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-09-07T06:46:13.5321955Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-09-07T06:46:13.5324923Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-09-07T06:46:13.5328055Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5330830Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-09-07T06:46:13.5333812Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-09-07T06:46:13.5337119Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-09-07T06:46:13.5341008Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-09-07T06:46:13.5344361Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5347410Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-09-07T06:46:13.5350451Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-09-07T06:46:13.5353743Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5356527Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-09-07T06:46:13.5359675Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-09-07T06:46:13.5362696Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-09-07T06:46:13.5366302Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5369602Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-09-07T06:46:13.5373170Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-09-07T06:46:13.5376997Z adding 'torch/include/ATen/ops/max.h' 2025-09-07T06:46:13.5380876Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5384607Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5388121Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-09-07T06:46:13.5391777Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-09-07T06:46:13.5395354Z adding 'torch/include/ATen/ops/max_meta.h' 2025-09-07T06:46:13.5398914Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-09-07T06:46:13.5402064Z adding 'torch/include/ATen/ops/max_native.h' 2025-09-07T06:46:13.5405758Z adding 'torch/include/ATen/ops/max_ops.h' 2025-09-07T06:46:13.5409011Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-09-07T06:46:13.5412683Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5415476Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-09-07T06:46:13.5418703Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-09-07T06:46:13.5421831Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-09-07T06:46:13.5425334Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5428252Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-09-07T06:46:13.5431311Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-09-07T06:46:13.5434448Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-09-07T06:46:13.5437715Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-09-07T06:46:13.5440965Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5443817Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-09-07T06:46:13.5446996Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-09-07T06:46:13.5450280Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5453203Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-09-07T06:46:13.5456302Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-09-07T06:46:13.5459497Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-09-07T06:46:13.5462792Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-09-07T06:46:13.5466227Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5469140Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-09-07T06:46:13.5472240Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-09-07T06:46:13.5475237Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-09-07T06:46:13.5478338Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-09-07T06:46:13.5481426Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-09-07T06:46:13.5484746Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-09-07T06:46:13.5488071Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5491023Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-09-07T06:46:13.5494156Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-09-07T06:46:13.5497141Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-09-07T06:46:13.5500340Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-09-07T06:46:13.5503513Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-09-07T06:46:13.5506799Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-09-07T06:46:13.5509860Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-09-07T06:46:13.5513025Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5516071Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-09-07T06:46:13.5519239Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-09-07T06:46:13.5522615Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-09-07T06:46:13.5525885Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-09-07T06:46:13.5529041Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-09-07T06:46:13.5532142Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-09-07T06:46:13.5535141Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-09-07T06:46:13.5538595Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-09-07T06:46:13.5541861Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-09-07T06:46:13.5545183Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-09-07T06:46:13.5548268Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-09-07T06:46:13.5551611Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-09-07T06:46:13.5555110Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-09-07T06:46:13.5558541Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-09-07T06:46:13.5561669Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-09-07T06:46:13.5564646Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-09-07T06:46:13.5568001Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-09-07T06:46:13.5571360Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-09-07T06:46:13.5574808Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-09-07T06:46:13.5578038Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-09-07T06:46:13.5581047Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-09-07T06:46:13.5584561Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-09-07T06:46:13.5587698Z adding 'torch/include/ATen/ops/maximum.h' 2025-09-07T06:46:13.5591128Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5594047Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-09-07T06:46:13.5597229Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-09-07T06:46:13.5600171Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-09-07T06:46:13.5603333Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-09-07T06:46:13.5606268Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-09-07T06:46:13.5609582Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-09-07T06:46:13.5612982Z adding 'torch/include/ATen/ops/mean.h' 2025-09-07T06:46:13.5616288Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5619512Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5622547Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5625853Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-09-07T06:46:13.5628947Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-09-07T06:46:13.5632085Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-09-07T06:46:13.5635337Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-09-07T06:46:13.5638436Z adding 'torch/include/ATen/ops/mean_native.h' 2025-09-07T06:46:13.5641987Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-09-07T06:46:13.5645347Z adding 'torch/include/ATen/ops/median.h' 2025-09-07T06:46:13.5648817Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5652082Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5655228Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-09-07T06:46:13.5658396Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-09-07T06:46:13.5661424Z adding 'torch/include/ATen/ops/median_native.h' 2025-09-07T06:46:13.5665107Z adding 'torch/include/ATen/ops/median_ops.h' 2025-09-07T06:46:13.5668297Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-09-07T06:46:13.5671607Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5674450Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-09-07T06:46:13.5677698Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-09-07T06:46:13.5681167Z adding 'torch/include/ATen/ops/min.h' 2025-09-07T06:46:13.5684605Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5687776Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5691013Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-09-07T06:46:13.5694325Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-09-07T06:46:13.5697310Z adding 'torch/include/ATen/ops/min_meta.h' 2025-09-07T06:46:13.5700542Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-09-07T06:46:13.5703847Z adding 'torch/include/ATen/ops/min_native.h' 2025-09-07T06:46:13.5707591Z adding 'torch/include/ATen/ops/min_ops.h' 2025-09-07T06:46:13.5710896Z adding 'torch/include/ATen/ops/minimum.h' 2025-09-07T06:46:13.5714278Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5717224Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-09-07T06:46:13.5720241Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-09-07T06:46:13.5723335Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-09-07T06:46:13.5726394Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-09-07T06:46:13.5729571Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-09-07T06:46:13.5732768Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-09-07T06:46:13.5736073Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-09-07T06:46:13.5739548Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-09-07T06:46:13.5742938Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5746161Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:46:13.5749246Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-09-07T06:46:13.5752713Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-09-07T06:46:13.5756123Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5759118Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-09-07T06:46:13.5762272Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-09-07T06:46:13.5765608Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-09-07T06:46:13.5769397Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-09-07T06:46:13.5772909Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-09-07T06:46:13.5776280Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-09-07T06:46:13.5779374Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-09-07T06:46:13.5782557Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-09-07T06:46:13.5786907Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5789983Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-09-07T06:46:13.5793168Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-09-07T06:46:13.5796503Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-09-07T06:46:13.5799807Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-09-07T06:46:13.5803140Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-09-07T06:46:13.5806116Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-09-07T06:46:13.5809366Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-09-07T06:46:13.5813051Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-09-07T06:46:13.5816818Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5820012Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-09-07T06:46:13.5823118Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-09-07T06:46:13.5826482Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-09-07T06:46:13.5830083Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-09-07T06:46:13.5833753Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5836899Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-09-07T06:46:13.5839977Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-09-07T06:46:13.5843242Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-09-07T06:46:13.5846578Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-09-07T06:46:13.5850265Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-09-07T06:46:13.5853883Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5857045Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-09-07T06:46:13.5860190Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-09-07T06:46:13.5863865Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-09-07T06:46:13.5867433Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5870730Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-09-07T06:46:13.5873903Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-09-07T06:46:13.5877646Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-09-07T06:46:13.5880759Z adding 'torch/include/ATen/ops/mish.h' 2025-09-07T06:46:13.5883993Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-09-07T06:46:13.5887156Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.5890204Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-09-07T06:46:13.5893266Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-09-07T06:46:13.5896337Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-09-07T06:46:13.5899432Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-09-07T06:46:13.5902866Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.5906012Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-09-07T06:46:13.5909035Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-09-07T06:46:13.5911979Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-09-07T06:46:13.5915034Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-09-07T06:46:13.5917942Z adding 'torch/include/ATen/ops/mish_native.h' 2025-09-07T06:46:13.5921068Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-09-07T06:46:13.5924528Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-09-07T06:46:13.5927650Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-09-07T06:46:13.5930904Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5933703Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-09-07T06:46:13.5936781Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-09-07T06:46:13.5939699Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-09-07T06:46:13.5942827Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-09-07T06:46:13.5946369Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-09-07T06:46:13.5949844Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5953004Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-09-07T06:46:13.5956363Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-09-07T06:46:13.5959448Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-09-07T06:46:13.5962624Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-09-07T06:46:13.5965859Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5968874Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-09-07T06:46:13.5972153Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5974968Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-09-07T06:46:13.5978180Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-09-07T06:46:13.5981109Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-09-07T06:46:13.5984426Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-09-07T06:46:13.5987611Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-09-07T06:46:13.5990889Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.5993799Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-09-07T06:46:13.5996908Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-09-07T06:46:13.6000040Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6002872Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-09-07T06:46:13.6005961Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-09-07T06:46:13.6009218Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-09-07T06:46:13.6012480Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-09-07T06:46:13.6015804Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6018696Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-09-07T06:46:13.6021908Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-09-07T06:46:13.6025376Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6028271Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-09-07T06:46:13.6031463Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-09-07T06:46:13.6034584Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-09-07T06:46:13.6037801Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-09-07T06:46:13.6041279Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6044182Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-09-07T06:46:13.6047397Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-09-07T06:46:13.6050641Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6053512Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-09-07T06:46:13.6056676Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-09-07T06:46:13.6060347Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-09-07T06:46:13.6063927Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6066869Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-09-07T06:46:13.6070046Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-09-07T06:46:13.6073545Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-09-07T06:46:13.6077075Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6080029Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-09-07T06:46:13.6083240Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-09-07T06:46:13.6086522Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-09-07T06:46:13.6090487Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-09-07T06:46:13.6094013Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6097093Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6100215Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-09-07T06:46:13.6104360Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-09-07T06:46:13.6107740Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6110862Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-09-07T06:46:13.6113805Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-09-07T06:46:13.6117604Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-09-07T06:46:13.6120840Z adding 'torch/include/ATen/ops/mm.h' 2025-09-07T06:46:13.6124099Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6126947Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-09-07T06:46:13.6130076Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-09-07T06:46:13.6132933Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-09-07T06:46:13.6136054Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-09-07T06:46:13.6139098Z adding 'torch/include/ATen/ops/mm_native.h' 2025-09-07T06:46:13.6142361Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-09-07T06:46:13.6145760Z adding 'torch/include/ATen/ops/mode.h' 2025-09-07T06:46:13.6148989Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6152058Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6154945Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-09-07T06:46:13.6157983Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-09-07T06:46:13.6160946Z adding 'torch/include/ATen/ops/mode_native.h' 2025-09-07T06:46:13.6164242Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-09-07T06:46:13.6167359Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-09-07T06:46:13.6170495Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6173286Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-09-07T06:46:13.6176389Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-09-07T06:46:13.6179391Z adding 'torch/include/ATen/ops/movedim.h' 2025-09-07T06:46:13.6182973Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6187158Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-09-07T06:46:13.6191631Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-09-07T06:46:13.6196062Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-09-07T06:46:13.6200117Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6203057Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-09-07T06:46:13.6206493Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-09-07T06:46:13.6210380Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-09-07T06:46:13.6214010Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6217046Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-09-07T06:46:13.6220607Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-09-07T06:46:13.6223921Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-09-07T06:46:13.6227124Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-09-07T06:46:13.6230407Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6233573Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6236580Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-09-07T06:46:13.6239864Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-09-07T06:46:13.6243184Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6246186Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-09-07T06:46:13.6249243Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-09-07T06:46:13.6252351Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-09-07T06:46:13.6255420Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-09-07T06:46:13.6259654Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-09-07T06:46:13.6263154Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-09-07T06:46:13.6266290Z adding 'torch/include/ATen/ops/msort.h' 2025-09-07T06:46:13.6269610Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6272489Z adding 'torch/include/ATen/ops/msort_native.h' 2025-09-07T06:46:13.6275741Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-09-07T06:46:13.6278914Z adding 'torch/include/ATen/ops/mul.h' 2025-09-07T06:46:13.6282208Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6285591Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6288392Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-09-07T06:46:13.6291574Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-09-07T06:46:13.6294535Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-09-07T06:46:13.6297729Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-09-07T06:46:13.6300858Z adding 'torch/include/ATen/ops/mul_native.h' 2025-09-07T06:46:13.6304470Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-09-07T06:46:13.6307813Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-09-07T06:46:13.6311156Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-09-07T06:46:13.6314519Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6317644Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6320805Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-09-07T06:46:13.6324107Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-09-07T06:46:13.6327408Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-09-07T06:46:13.6330610Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-09-07T06:46:13.6333781Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-09-07T06:46:13.6337162Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-09-07T06:46:13.6340313Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-09-07T06:46:13.6343670Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-09-07T06:46:13.6346831Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6350144Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6353166Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-09-07T06:46:13.6356524Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-09-07T06:46:13.6359898Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6362911Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-09-07T06:46:13.6366258Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-09-07T06:46:13.6369338Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-09-07T06:46:13.6372758Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-09-07T06:46:13.6376499Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-09-07T06:46:13.6379891Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-09-07T06:46:13.6383624Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-09-07T06:46:13.6387377Z adding 'torch/include/ATen/ops/multinomial.h' 2025-09-07T06:46:13.6391134Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-09-07T06:46:13.6394679Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-09-07T06:46:13.6397735Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-09-07T06:46:13.6400976Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-09-07T06:46:13.6404127Z adding 'torch/include/ATen/ops/multiply.h' 2025-09-07T06:46:13.6407958Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6410761Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-09-07T06:46:13.6414277Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-09-07T06:46:13.6417314Z adding 'torch/include/ATen/ops/mv.h' 2025-09-07T06:46:13.6420673Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6423630Z adding 'torch/include/ATen/ops/mv_native.h' 2025-09-07T06:46:13.6426771Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-09-07T06:46:13.6429949Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-09-07T06:46:13.6433313Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6436179Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-09-07T06:46:13.6439132Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-09-07T06:46:13.6442032Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-09-07T06:46:13.6445156Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-09-07T06:46:13.6448482Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-09-07T06:46:13.6451682Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6454639Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-09-07T06:46:13.6457674Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-09-07T06:46:13.6460644Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-09-07T06:46:13.6463987Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-09-07T06:46:13.6467165Z adding 'torch/include/ATen/ops/nanmean.h' 2025-09-07T06:46:13.6470419Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6473262Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-09-07T06:46:13.6476424Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-09-07T06:46:13.6479851Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-09-07T06:46:13.6483141Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6486180Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6489135Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-09-07T06:46:13.6492179Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-09-07T06:46:13.6495138Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-09-07T06:46:13.6498629Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-09-07T06:46:13.6501944Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-09-07T06:46:13.6505406Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6508581Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-09-07T06:46:13.6511951Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-09-07T06:46:13.6515118Z adding 'torch/include/ATen/ops/nansum.h' 2025-09-07T06:46:13.6518235Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-09-07T06:46:13.6521306Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-09-07T06:46:13.6524282Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-09-07T06:46:13.6527636Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-09-07T06:46:13.6537676Z adding 'torch/include/ATen/ops/narrow.h' 2025-09-07T06:46:13.6541089Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6544393Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-09-07T06:46:13.6547841Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6550839Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-09-07T06:46:13.6553874Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-09-07T06:46:13.6557074Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-09-07T06:46:13.6560045Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-09-07T06:46:13.6563185Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-09-07T06:46:13.6566420Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-09-07T06:46:13.6569767Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-09-07T06:46:13.6573226Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6576209Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6579301Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6582409Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-09-07T06:46:13.6586105Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-09-07T06:46:13.6589245Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-09-07T06:46:13.6592430Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-09-07T06:46:13.6595861Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-09-07T06:46:13.6599236Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-09-07T06:46:13.6602431Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-09-07T06:46:13.6605713Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6608670Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-09-07T06:46:13.6611593Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-09-07T06:46:13.6614633Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-09-07T06:46:13.6617721Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-09-07T06:46:13.6620943Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-09-07T06:46:13.6624279Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6627218Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6630221Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6633143Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-09-07T06:46:13.6636285Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-09-07T06:46:13.6639550Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6642502Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-09-07T06:46:13.6645590Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-09-07T06:46:13.6648548Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-09-07T06:46:13.6651708Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-09-07T06:46:13.6655207Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-09-07T06:46:13.6659028Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-09-07T06:46:13.6662572Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6665783Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6668907Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6671968Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-09-07T06:46:13.6675276Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-09-07T06:46:13.6678685Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6681737Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-09-07T06:46:13.6684974Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-09-07T06:46:13.6688046Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-09-07T06:46:13.6691457Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-09-07T06:46:13.6695023Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-09-07T06:46:13.6699049Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-09-07T06:46:13.6702806Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6706063Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6709258Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6712343Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-09-07T06:46:13.6715835Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-09-07T06:46:13.6719307Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6722468Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-09-07T06:46:13.6725641Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-09-07T06:46:13.6728690Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-09-07T06:46:13.6732124Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-09-07T06:46:13.6735376Z adding 'torch/include/ATen/ops/native_norm.h' 2025-09-07T06:46:13.6738841Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6741776Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-09-07T06:46:13.6745318Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-09-07T06:46:13.6748682Z adding 'torch/include/ATen/ops/ne.h' 2025-09-07T06:46:13.6751965Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6755035Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-09-07T06:46:13.6758089Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-09-07T06:46:13.6761213Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-09-07T06:46:13.6764269Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-09-07T06:46:13.6767423Z adding 'torch/include/ATen/ops/ne_native.h' 2025-09-07T06:46:13.6770888Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-09-07T06:46:13.6774094Z adding 'torch/include/ATen/ops/neg.h' 2025-09-07T06:46:13.6777463Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6780678Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-09-07T06:46:13.6783994Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-09-07T06:46:13.6786947Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-09-07T06:46:13.6790138Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-09-07T06:46:13.6793193Z adding 'torch/include/ATen/ops/neg_native.h' 2025-09-07T06:46:13.6796486Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-09-07T06:46:13.6799678Z adding 'torch/include/ATen/ops/negative.h' 2025-09-07T06:46:13.6802944Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6805869Z adding 'torch/include/ATen/ops/negative_native.h' 2025-09-07T06:46:13.6809020Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-09-07T06:46:13.6812241Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-09-07T06:46:13.6815461Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6818448Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-09-07T06:46:13.6821550Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-09-07T06:46:13.6825152Z adding 'torch/include/ATen/ops/new_empty.h' 2025-09-07T06:46:13.6828686Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6831582Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-09-07T06:46:13.6834932Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-09-07T06:46:13.6838431Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-09-07T06:46:13.6841977Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6845336Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6848201Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-09-07T06:46:13.6851578Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-09-07T06:46:13.6854970Z adding 'torch/include/ATen/ops/new_full.h' 2025-09-07T06:46:13.6858728Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6861585Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-09-07T06:46:13.6865108Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-09-07T06:46:13.6868696Z adding 'torch/include/ATen/ops/new_ones.h' 2025-09-07T06:46:13.6872128Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6875196Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-09-07T06:46:13.6878344Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-09-07T06:46:13.6882153Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-09-07T06:46:13.6886170Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.6889539Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-09-07T06:46:13.6893296Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-09-07T06:46:13.6896821Z adding 'torch/include/ATen/ops/nextafter.h' 2025-09-07T06:46:13.6900351Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6903415Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-09-07T06:46:13.6906554Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-09-07T06:46:13.6909581Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-09-07T06:46:13.6912761Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-09-07T06:46:13.6915808Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-09-07T06:46:13.6919053Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-09-07T06:46:13.6922635Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-09-07T06:46:13.6926168Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-09-07T06:46:13.6929762Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-09-07T06:46:13.6933354Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6936587Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6939616Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-09-07T06:46:13.6942872Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-09-07T06:46:13.6946226Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.6949731Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-09-07T06:46:13.6953127Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-09-07T06:46:13.6956323Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-09-07T06:46:13.6959357Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-09-07T06:46:13.6962571Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-09-07T06:46:13.6965563Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-09-07T06:46:13.6969123Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-09-07T06:46:13.6972603Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-09-07T06:46:13.6976083Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.6979070Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-09-07T06:46:13.6982439Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-09-07T06:46:13.6985583Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-09-07T06:46:13.6988718Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-09-07T06:46:13.6991750Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-09-07T06:46:13.6994947Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-09-07T06:46:13.6998252Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7001589Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-09-07T06:46:13.7005028Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7008047Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-09-07T06:46:13.7011112Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-09-07T06:46:13.7014087Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-09-07T06:46:13.7017228Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-09-07T06:46:13.7020247Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-09-07T06:46:13.7023653Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-09-07T06:46:13.7026630Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-09-07T06:46:13.7029735Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-09-07T06:46:13.7033177Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7036100Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-09-07T06:46:13.7039253Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-09-07T06:46:13.7042502Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-09-07T06:46:13.7045553Z adding 'torch/include/ATen/ops/nonzero.h' 2025-09-07T06:46:13.7048600Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-09-07T06:46:13.7051576Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-09-07T06:46:13.7054484Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-09-07T06:46:13.7057380Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-09-07T06:46:13.7060493Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7063345Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-09-07T06:46:13.7066369Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-09-07T06:46:13.7069498Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-09-07T06:46:13.7072741Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-09-07T06:46:13.7075919Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-09-07T06:46:13.7078996Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-09-07T06:46:13.7081917Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-09-07T06:46:13.7084997Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-09-07T06:46:13.7088505Z adding 'torch/include/ATen/ops/norm.h' 2025-09-07T06:46:13.7091888Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7095021Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7098036Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7101013Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-09-07T06:46:13.7104184Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-09-07T06:46:13.7107147Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-09-07T06:46:13.7110317Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7113141Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-09-07T06:46:13.7116160Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-09-07T06:46:13.7119200Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-09-07T06:46:13.7122261Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-09-07T06:46:13.7125366Z adding 'torch/include/ATen/ops/norm_native.h' 2025-09-07T06:46:13.7129171Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-09-07T06:46:13.7133285Z adding 'torch/include/ATen/ops/normal.h' 2025-09-07T06:46:13.7137026Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7140359Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-09-07T06:46:13.7143544Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-09-07T06:46:13.7146687Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-09-07T06:46:13.7150147Z adding 'torch/include/ATen/ops/normal_native.h' 2025-09-07T06:46:13.7154164Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-09-07T06:46:13.7157503Z adding 'torch/include/ATen/ops/not_equal.h' 2025-09-07T06:46:13.7160851Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7163635Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-09-07T06:46:13.7166943Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-09-07T06:46:13.7170187Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-09-07T06:46:13.7173438Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7176349Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-09-07T06:46:13.7179541Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-09-07T06:46:13.7182477Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-09-07T06:46:13.7185712Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7188532Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-09-07T06:46:13.7191504Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-09-07T06:46:13.7194458Z adding 'torch/include/ATen/ops/one_hot.h' 2025-09-07T06:46:13.7197632Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7200430Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-09-07T06:46:13.7203736Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-09-07T06:46:13.7211467Z adding 'torch/include/ATen/ops/ones.h' 2025-09-07T06:46:13.7217331Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7220500Z adding 'torch/include/ATen/ops/ones_like.h' 2025-09-07T06:46:13.7223950Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7226916Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-09-07T06:46:13.7230271Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-09-07T06:46:13.7233343Z adding 'torch/include/ATen/ops/ones_native.h' 2025-09-07T06:46:13.7236678Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-09-07T06:46:13.7240306Z adding 'torch/include/ATen/ops/or.h' 2025-09-07T06:46:13.7243263Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7246068Z adding 'torch/include/ATen/ops/or_native.h' 2025-09-07T06:46:13.7249300Z adding 'torch/include/ATen/ops/or_ops.h' 2025-09-07T06:46:13.7252389Z adding 'torch/include/ATen/ops/orgqr.h' 2025-09-07T06:46:13.7255635Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7258488Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-09-07T06:46:13.7261628Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-09-07T06:46:13.7264978Z adding 'torch/include/ATen/ops/ormqr.h' 2025-09-07T06:46:13.7268149Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-09-07T06:46:13.7271253Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-09-07T06:46:13.7274224Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-09-07T06:46:13.7277368Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-09-07T06:46:13.7280523Z adding 'torch/include/ATen/ops/outer.h' 2025-09-07T06:46:13.7284500Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7287430Z adding 'torch/include/ATen/ops/outer_native.h' 2025-09-07T06:46:13.7290568Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-09-07T06:46:13.7293598Z adding 'torch/include/ATen/ops/output_nr.h' 2025-09-07T06:46:13.7296784Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7299576Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-09-07T06:46:13.7302660Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-09-07T06:46:13.7305893Z adding 'torch/include/ATen/ops/pad.h' 2025-09-07T06:46:13.7309186Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7312075Z adding 'torch/include/ATen/ops/pad_native.h' 2025-09-07T06:46:13.7315187Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-09-07T06:46:13.7318272Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-09-07T06:46:13.7321551Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7324327Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-09-07T06:46:13.7327486Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-09-07T06:46:13.7330554Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-09-07T06:46:13.7333800Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7337023Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-09-07T06:46:13.7340268Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-09-07T06:46:13.7343349Z adding 'torch/include/ATen/ops/pdist.h' 2025-09-07T06:46:13.7346709Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7349573Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-09-07T06:46:13.7352825Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-09-07T06:46:13.7355860Z adding 'torch/include/ATen/ops/permute.h' 2025-09-07T06:46:13.7359310Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7362361Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-09-07T06:46:13.7365653Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7368953Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7371742Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-09-07T06:46:13.7375010Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-09-07T06:46:13.7378034Z adding 'torch/include/ATen/ops/permute_native.h' 2025-09-07T06:46:13.7381505Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-09-07T06:46:13.7385113Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-09-07T06:46:13.7388911Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7392319Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-09-07T06:46:13.7395942Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-09-07T06:46:13.7399441Z adding 'torch/include/ATen/ops/pinverse.h' 2025-09-07T06:46:13.7403148Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7406506Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-09-07T06:46:13.7410061Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-09-07T06:46:13.7413611Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-09-07T06:46:13.7417021Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7420414Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7423359Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-09-07T06:46:13.7426555Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-09-07T06:46:13.7429782Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-09-07T06:46:13.7433074Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-09-07T06:46:13.7436458Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7439829Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7442811Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-09-07T06:46:13.7445865Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-09-07T06:46:13.7449145Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-09-07T06:46:13.7452331Z adding 'torch/include/ATen/ops/poisson.h' 2025-09-07T06:46:13.7455594Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7458551Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-09-07T06:46:13.7461598Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-09-07T06:46:13.7464701Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-09-07T06:46:13.7467962Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-09-07T06:46:13.7471381Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7474172Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-09-07T06:46:13.7477283Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-09-07T06:46:13.7480431Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-09-07T06:46:13.7483517Z adding 'torch/include/ATen/ops/polar.h' 2025-09-07T06:46:13.7486770Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7489644Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-09-07T06:46:13.7492725Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-09-07T06:46:13.7495676Z adding 'torch/include/ATen/ops/polar_native.h' 2025-09-07T06:46:13.7499053Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-09-07T06:46:13.7502194Z adding 'torch/include/ATen/ops/polygamma.h' 2025-09-07T06:46:13.7505535Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7508693Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7511565Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-09-07T06:46:13.7514601Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-09-07T06:46:13.7517514Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-09-07T06:46:13.7520948Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-09-07T06:46:13.7523939Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-09-07T06:46:13.7527109Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-09-07T06:46:13.7530151Z adding 'torch/include/ATen/ops/positive.h' 2025-09-07T06:46:13.7533539Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7536342Z adding 'torch/include/ATen/ops/positive_native.h' 2025-09-07T06:46:13.7539412Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-09-07T06:46:13.7542670Z adding 'torch/include/ATen/ops/pow.h' 2025-09-07T06:46:13.7546166Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7549208Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-09-07T06:46:13.7552347Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-09-07T06:46:13.7555368Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-09-07T06:46:13.7558553Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-09-07T06:46:13.7561631Z adding 'torch/include/ATen/ops/pow_native.h' 2025-09-07T06:46:13.7565108Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-09-07T06:46:13.7568249Z adding 'torch/include/ATen/ops/prelu.h' 2025-09-07T06:46:13.7571497Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7574332Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-09-07T06:46:13.7577420Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-09-07T06:46:13.7580641Z adding 'torch/include/ATen/ops/prod.h' 2025-09-07T06:46:13.7584057Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7587218Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.7590262Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7593300Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-09-07T06:46:13.7596563Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-09-07T06:46:13.7599547Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-09-07T06:46:13.7602625Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-09-07T06:46:13.7605671Z adding 'torch/include/ATen/ops/prod_native.h' 2025-09-07T06:46:13.7609082Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-09-07T06:46:13.7612222Z adding 'torch/include/ATen/ops/promote_types.h' 2025-09-07T06:46:13.7615431Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7618254Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-09-07T06:46:13.7621407Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-09-07T06:46:13.7624533Z adding 'torch/include/ATen/ops/put.h' 2025-09-07T06:46:13.7627780Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7630730Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-09-07T06:46:13.7633758Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-09-07T06:46:13.7636845Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-09-07T06:46:13.7639711Z adding 'torch/include/ATen/ops/put_native.h' 2025-09-07T06:46:13.7642987Z adding 'torch/include/ATen/ops/put_ops.h' 2025-09-07T06:46:13.7646080Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-09-07T06:46:13.7649043Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-09-07T06:46:13.7652094Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-09-07T06:46:13.7655104Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-09-07T06:46:13.7658343Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7661208Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-09-07T06:46:13.7664482Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-09-07T06:46:13.7667569Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-09-07T06:46:13.7670870Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7673728Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-09-07T06:46:13.7676850Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-09-07T06:46:13.7679781Z adding 'torch/include/ATen/ops/q_scale.h' 2025-09-07T06:46:13.7682745Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-09-07T06:46:13.7685795Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-09-07T06:46:13.7688912Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-09-07T06:46:13.7692366Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-09-07T06:46:13.7695924Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-09-07T06:46:13.7699795Z adding 'torch/include/ATen/ops/qr.h' 2025-09-07T06:46:13.7703208Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7706222Z adding 'torch/include/ATen/ops/qr_native.h' 2025-09-07T06:46:13.7709546Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-09-07T06:46:13.7712541Z adding 'torch/include/ATen/ops/qscheme.h' 2025-09-07T06:46:13.7715640Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-09-07T06:46:13.7718760Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-09-07T06:46:13.7722099Z adding 'torch/include/ATen/ops/quantile.h' 2025-09-07T06:46:13.7725576Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7728720Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-09-07T06:46:13.7732273Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-09-07T06:46:13.7735566Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-09-07T06:46:13.7738963Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7741967Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-09-07T06:46:13.7745312Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-09-07T06:46:13.7748270Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-09-07T06:46:13.7751682Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-09-07T06:46:13.7755280Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-09-07T06:46:13.7758764Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7761938Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-09-07T06:46:13.7765057Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-09-07T06:46:13.7768351Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-09-07T06:46:13.7771599Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7774812Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-09-07T06:46:13.7777995Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-09-07T06:46:13.7781041Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-09-07T06:46:13.7784560Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-09-07T06:46:13.7787593Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-09-07T06:46:13.7791282Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-09-07T06:46:13.7795064Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-09-07T06:46:13.7798610Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7801678Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-09-07T06:46:13.7804998Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-09-07T06:46:13.7808354Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-09-07T06:46:13.7811664Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7814803Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-09-07T06:46:13.7818174Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-09-07T06:46:13.7821387Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-09-07T06:46:13.7824925Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7827885Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-09-07T06:46:13.7831295Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-09-07T06:46:13.7834488Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-09-07T06:46:13.7838024Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7840893Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-09-07T06:46:13.7844702Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-09-07T06:46:13.7848406Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-09-07T06:46:13.7852239Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7855652Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-09-07T06:46:13.7859385Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-09-07T06:46:13.7863128Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-09-07T06:46:13.7866589Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7869741Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-09-07T06:46:13.7873070Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-09-07T06:46:13.7876332Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-09-07T06:46:13.7879783Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7882714Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-09-07T06:46:13.7886074Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-09-07T06:46:13.7889550Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-09-07T06:46:13.7892874Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7895806Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-09-07T06:46:13.7899187Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-09-07T06:46:13.7902277Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-09-07T06:46:13.7905721Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7908609Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-09-07T06:46:13.7911949Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-09-07T06:46:13.7916882Z adding 'torch/include/ATen/ops/rand.h' 2025-09-07T06:46:13.7921032Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7924236Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7927354Z adding 'torch/include/ATen/ops/rand_like.h' 2025-09-07T06:46:13.7930744Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7933591Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-09-07T06:46:13.7936832Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-09-07T06:46:13.7939965Z adding 'torch/include/ATen/ops/rand_native.h' 2025-09-07T06:46:13.7943861Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-09-07T06:46:13.7948821Z adding 'torch/include/ATen/ops/randint.h' 2025-09-07T06:46:13.7953133Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7957334Z adding 'torch/include/ATen/ops/randint_like.h' 2025-09-07T06:46:13.7961214Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7964301Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-09-07T06:46:13.7967888Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-09-07T06:46:13.7971202Z adding 'torch/include/ATen/ops/randint_native.h' 2025-09-07T06:46:13.7974856Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-09-07T06:46:13.7979743Z adding 'torch/include/ATen/ops/randn.h' 2025-09-07T06:46:13.7983984Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7987274Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.7990481Z adding 'torch/include/ATen/ops/randn_like.h' 2025-09-07T06:46:13.7993824Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.7997048Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:46:13.8000092Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-09-07T06:46:13.8003374Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-09-07T06:46:13.8006480Z adding 'torch/include/ATen/ops/randn_native.h' 2025-09-07T06:46:13.8010132Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-09-07T06:46:13.8013603Z adding 'torch/include/ATen/ops/random.h' 2025-09-07T06:46:13.8016955Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8019961Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-09-07T06:46:13.8023058Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-09-07T06:46:13.8026104Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-09-07T06:46:13.8029160Z adding 'torch/include/ATen/ops/random_native.h' 2025-09-07T06:46:13.8033447Z adding 'torch/include/ATen/ops/random_ops.h' 2025-09-07T06:46:13.8037753Z adding 'torch/include/ATen/ops/randperm.h' 2025-09-07T06:46:13.8041345Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8044361Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-09-07T06:46:13.8047450Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-09-07T06:46:13.8050468Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-09-07T06:46:13.8053775Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-09-07T06:46:13.8057170Z adding 'torch/include/ATen/ops/range.h' 2025-09-07T06:46:13.8060536Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8063598Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-09-07T06:46:13.8066805Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-09-07T06:46:13.8069905Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-09-07T06:46:13.8072914Z adding 'torch/include/ATen/ops/range_native.h' 2025-09-07T06:46:13.8076257Z adding 'torch/include/ATen/ops/range_ops.h' 2025-09-07T06:46:13.8079458Z adding 'torch/include/ATen/ops/ravel.h' 2025-09-07T06:46:13.8082567Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8085700Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-09-07T06:46:13.8088779Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-09-07T06:46:13.8091940Z adding 'torch/include/ATen/ops/real.h' 2025-09-07T06:46:13.8095116Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8097839Z adding 'torch/include/ATen/ops/real_native.h' 2025-09-07T06:46:13.8100840Z adding 'torch/include/ATen/ops/real_ops.h' 2025-09-07T06:46:13.8104205Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-09-07T06:46:13.8107717Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8110670Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-09-07T06:46:13.8113834Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-09-07T06:46:13.8116780Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-09-07T06:46:13.8120050Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-09-07T06:46:13.8123030Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-09-07T06:46:13.8126363Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-09-07T06:46:13.8129371Z adding 'torch/include/ATen/ops/record_stream.h' 2025-09-07T06:46:13.8132725Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-09-07T06:46:13.8135674Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-09-07T06:46:13.8138936Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-09-07T06:46:13.8141925Z adding 'torch/include/ATen/ops/refine_names.h' 2025-09-07T06:46:13.8145399Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8148395Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-09-07T06:46:13.8151511Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-09-07T06:46:13.8154939Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-09-07T06:46:13.8158451Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-09-07T06:46:13.8162106Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8165230Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.8168426Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.8171530Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-09-07T06:46:13.8174709Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-09-07T06:46:13.8177855Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-09-07T06:46:13.8181058Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-09-07T06:46:13.8184677Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8187673Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-09-07T06:46:13.8190909Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-09-07T06:46:13.8194059Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-09-07T06:46:13.8197215Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-09-07T06:46:13.8200442Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-09-07T06:46:13.8203637Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-09-07T06:46:13.8207063Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-09-07T06:46:13.8210642Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-09-07T06:46:13.8214044Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.8217332Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.8220474Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-09-07T06:46:13.8223886Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-09-07T06:46:13.8227043Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-09-07T06:46:13.8230401Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-09-07T06:46:13.8233432Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-09-07T06:46:13.8236758Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-09-07T06:46:13.8240245Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-09-07T06:46:13.8243658Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-09-07T06:46:13.8247243Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8250237Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.8253549Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.8256684Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-09-07T06:46:13.8259895Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-09-07T06:46:13.8263124Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-09-07T06:46:13.8266402Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-09-07T06:46:13.8270193Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8273171Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-09-07T06:46:13.8276461Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-09-07T06:46:13.8279619Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-09-07T06:46:13.8282780Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-09-07T06:46:13.8285906Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-09-07T06:46:13.8289089Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-09-07T06:46:13.8292289Z adding 'torch/include/ATen/ops/relu.h' 2025-09-07T06:46:13.8295371Z adding 'torch/include/ATen/ops/relu6.h' 2025-09-07T06:46:13.8298752Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8301564Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-09-07T06:46:13.8304955Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-09-07T06:46:13.8308331Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8311278Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-09-07T06:46:13.8314417Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-09-07T06:46:13.8317451Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-09-07T06:46:13.8320623Z adding 'torch/include/ATen/ops/relu_native.h' 2025-09-07T06:46:13.8323896Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-09-07T06:46:13.8327412Z adding 'torch/include/ATen/ops/remainder.h' 2025-09-07T06:46:13.8330793Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8334103Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8337129Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-09-07T06:46:13.8340226Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-09-07T06:46:13.8343409Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-09-07T06:46:13.8346518Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-09-07T06:46:13.8349654Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-09-07T06:46:13.8353187Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-09-07T06:46:13.8356485Z adding 'torch/include/ATen/ops/rename.h' 2025-09-07T06:46:13.8359808Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8362711Z adding 'torch/include/ATen/ops/rename_native.h' 2025-09-07T06:46:13.8365977Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-09-07T06:46:13.8369666Z adding 'torch/include/ATen/ops/renorm.h' 2025-09-07T06:46:13.8372595Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8375481Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-09-07T06:46:13.8378707Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-09-07T06:46:13.8381707Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-09-07T06:46:13.8385499Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-09-07T06:46:13.8388810Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-09-07T06:46:13.8392050Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-09-07T06:46:13.8395596Z adding 'torch/include/ATen/ops/repeat.h' 2025-09-07T06:46:13.8398958Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8402661Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-09-07T06:46:13.8406333Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8409507Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8412732Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-09-07T06:46:13.8415815Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-09-07T06:46:13.8418809Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-09-07T06:46:13.8422162Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-09-07T06:46:13.8425503Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-09-07T06:46:13.8428651Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-09-07T06:46:13.8432019Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-09-07T06:46:13.8435472Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-09-07T06:46:13.8439030Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8442083Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.8445205Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.8448146Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-09-07T06:46:13.8451299Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-09-07T06:46:13.8454465Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-09-07T06:46:13.8457623Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-09-07T06:46:13.8460925Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8463986Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-09-07T06:46:13.8467076Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-09-07T06:46:13.8470200Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-09-07T06:46:13.8473415Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-09-07T06:46:13.8476385Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-09-07T06:46:13.8479516Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-09-07T06:46:13.8482775Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-09-07T06:46:13.8486249Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-09-07T06:46:13.8489537Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.8492642Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.8495605Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-09-07T06:46:13.8498805Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-09-07T06:46:13.8502116Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8505149Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-09-07T06:46:13.8508331Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-09-07T06:46:13.8511215Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-09-07T06:46:13.8514310Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-09-07T06:46:13.8517300Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-09-07T06:46:13.8520423Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-09-07T06:46:13.8523742Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-09-07T06:46:13.8527346Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-09-07T06:46:13.8530654Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-09-07T06:46:13.8533779Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-09-07T06:46:13.8536870Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-09-07T06:46:13.8540063Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-09-07T06:46:13.8543523Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8546439Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-09-07T06:46:13.8549526Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-09-07T06:46:13.8552476Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-09-07T06:46:13.8555552Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-09-07T06:46:13.8558561Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-09-07T06:46:13.8561716Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-09-07T06:46:13.8564592Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-09-07T06:46:13.8567900Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8570741Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-09-07T06:46:13.8573774Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-09-07T06:46:13.8576837Z adding 'torch/include/ATen/ops/reshape.h' 2025-09-07T06:46:13.8579778Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-09-07T06:46:13.8582952Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8586217Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:46:13.8588978Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-09-07T06:46:13.8592068Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-09-07T06:46:13.8595280Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8598389Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:46:13.8601139Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-09-07T06:46:13.8604211Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-09-07T06:46:13.8607639Z adding 'torch/include/ATen/ops/resize.h' 2025-09-07T06:46:13.8610861Z adding 'torch/include/ATen/ops/resize_as.h' 2025-09-07T06:46:13.8614156Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8617097Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-09-07T06:46:13.8620368Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-09-07T06:46:13.8623646Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-09-07T06:46:13.8626895Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8629828Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-09-07T06:46:13.8632980Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-09-07T06:46:13.8636175Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-09-07T06:46:13.8639641Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8642658Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-09-07T06:46:13.8645735Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-09-07T06:46:13.8648827Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-09-07T06:46:13.8651790Z adding 'torch/include/ATen/ops/resize_native.h' 2025-09-07T06:46:13.8655066Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-09-07T06:46:13.8658097Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-09-07T06:46:13.8661263Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8664878Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-09-07T06:46:13.8667286Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-09-07T06:46:13.8670252Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-09-07T06:46:13.8673424Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8676212Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-09-07T06:46:13.8679207Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-09-07T06:46:13.8682337Z adding 'torch/include/ATen/ops/result_type.h' 2025-09-07T06:46:13.8685539Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8688383Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-09-07T06:46:13.8691657Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-09-07T06:46:13.8695092Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-09-07T06:46:13.8698179Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8701210Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-09-07T06:46:13.8704375Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-09-07T06:46:13.8707449Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-09-07T06:46:13.8710772Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8713628Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-09-07T06:46:13.8716786Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-09-07T06:46:13.8719995Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-09-07T06:46:13.8723456Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8726357Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-09-07T06:46:13.8729642Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-09-07T06:46:13.8732780Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-09-07T06:46:13.8736057Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-09-07T06:46:13.8739401Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8742305Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-09-07T06:46:13.8745728Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-09-07T06:46:13.8749028Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8752169Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-09-07T06:46:13.8755351Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-09-07T06:46:13.8758644Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-09-07T06:46:13.8761717Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-09-07T06:46:13.8765812Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8768944Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-09-07T06:46:13.8772116Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-09-07T06:46:13.8775503Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8778394Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-09-07T06:46:13.8781791Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-09-07T06:46:13.8785259Z adding 'torch/include/ATen/ops/roll.h' 2025-09-07T06:46:13.8788739Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8791867Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-09-07T06:46:13.8794923Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-09-07T06:46:13.8798077Z adding 'torch/include/ATen/ops/roll_native.h' 2025-09-07T06:46:13.8801199Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-09-07T06:46:13.8804421Z adding 'torch/include/ATen/ops/rot90.h' 2025-09-07T06:46:13.8808059Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8810942Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-09-07T06:46:13.8815178Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-09-07T06:46:13.8818244Z adding 'torch/include/ATen/ops/round.h' 2025-09-07T06:46:13.8821407Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8824382Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-09-07T06:46:13.8827356Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-09-07T06:46:13.8830346Z adding 'torch/include/ATen/ops/round_meta.h' 2025-09-07T06:46:13.8833612Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-09-07T06:46:13.8836651Z adding 'torch/include/ATen/ops/round_native.h' 2025-09-07T06:46:13.8840142Z adding 'torch/include/ATen/ops/round_ops.h' 2025-09-07T06:46:13.8843241Z adding 'torch/include/ATen/ops/row_indices.h' 2025-09-07T06:46:13.8846569Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8849588Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-09-07T06:46:13.8852827Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8856104Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8858908Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-09-07T06:46:13.8862181Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-09-07T06:46:13.8865258Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-09-07T06:46:13.8868504Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-09-07T06:46:13.8871597Z adding 'torch/include/ATen/ops/row_stack.h' 2025-09-07T06:46:13.8874982Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8877947Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-09-07T06:46:13.8881116Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-09-07T06:46:13.8884420Z adding 'torch/include/ATen/ops/rrelu.h' 2025-09-07T06:46:13.8888005Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.8891249Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-09-07T06:46:13.8894684Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-09-07T06:46:13.8898556Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-09-07T06:46:13.8902361Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-09-07T06:46:13.8906374Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8909781Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-09-07T06:46:13.8913131Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-09-07T06:46:13.8916593Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8919686Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-09-07T06:46:13.8923014Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-09-07T06:46:13.8926095Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-09-07T06:46:13.8929382Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-09-07T06:46:13.8932876Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-09-07T06:46:13.8936286Z adding 'torch/include/ATen/ops/rshift.h' 2025-09-07T06:46:13.8939580Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8951488Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-09-07T06:46:13.8951737Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-09-07T06:46:13.8952022Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-09-07T06:46:13.8952150Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-09-07T06:46:13.8955364Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-09-07T06:46:13.8958431Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-09-07T06:46:13.8961878Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.8964841Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-09-07T06:46:13.8968495Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-09-07T06:46:13.8970871Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-09-07T06:46:13.8973911Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-09-07T06:46:13.8976815Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-09-07T06:46:13.8979947Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-09-07T06:46:13.8983190Z adding 'torch/include/ATen/ops/rsub.h' 2025-09-07T06:46:13.8986497Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.8989399Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-09-07T06:46:13.8992547Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-09-07T06:46:13.8995519Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-09-07T06:46:13.8999039Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-09-07T06:46:13.9002554Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-09-07T06:46:13.9005575Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9008422Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-09-07T06:46:13.9011603Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-09-07T06:46:13.9014773Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-09-07T06:46:13.9018053Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9020939Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-09-07T06:46:13.9024162Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-09-07T06:46:13.9027504Z adding 'torch/include/ATen/ops/scatter.h' 2025-09-07T06:46:13.9030726Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-09-07T06:46:13.9034005Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9036976Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9040187Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-09-07T06:46:13.9043251Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-09-07T06:46:13.9046171Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-09-07T06:46:13.9049390Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-09-07T06:46:13.9052502Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-09-07T06:46:13.9055766Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-09-07T06:46:13.9059196Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9062250Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9065558Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-09-07T06:46:13.9069086Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-09-07T06:46:13.9071891Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-09-07T06:46:13.9075087Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-09-07T06:46:13.9078176Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-09-07T06:46:13.9082190Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-09-07T06:46:13.9085637Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-09-07T06:46:13.9088979Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9091889Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-09-07T06:46:13.9095050Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-09-07T06:46:13.9097906Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-09-07T06:46:13.9100968Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-09-07T06:46:13.9104056Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-09-07T06:46:13.9107313Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-09-07T06:46:13.9110629Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-09-07T06:46:13.9114037Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-09-07T06:46:13.9117110Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-09-07T06:46:13.9120194Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-09-07T06:46:13.9123582Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-09-07T06:46:13.9126973Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-09-07T06:46:13.9130286Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9133253Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-09-07T06:46:13.9136269Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-09-07T06:46:13.9139327Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-09-07T06:46:13.9142596Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-09-07T06:46:13.9145839Z adding 'torch/include/ATen/ops/select.h' 2025-09-07T06:46:13.9149259Z adding 'torch/include/ATen/ops/select_backward.h' 2025-09-07T06:46:13.9152865Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9156184Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9159020Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-09-07T06:46:13.9162335Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-09-07T06:46:13.9165521Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9168728Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9171964Z adding 'torch/include/ATen/ops/select_copy.h' 2025-09-07T06:46:13.9175546Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9178811Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9181847Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-09-07T06:46:13.9185274Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-09-07T06:46:13.9188318Z adding 'torch/include/ATen/ops/select_native.h' 2025-09-07T06:46:13.9191642Z adding 'torch/include/ATen/ops/select_ops.h' 2025-09-07T06:46:13.9194994Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-09-07T06:46:13.9198566Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9201851Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9204776Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-09-07T06:46:13.9208055Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-09-07T06:46:13.9211085Z adding 'torch/include/ATen/ops/selu.h' 2025-09-07T06:46:13.9214432Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9217272Z adding 'torch/include/ATen/ops/selu_native.h' 2025-09-07T06:46:13.9220565Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-09-07T06:46:13.9224543Z adding 'torch/include/ATen/ops/set.h' 2025-09-07T06:46:13.9228182Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9231539Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9234618Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-09-07T06:46:13.9237913Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-09-07T06:46:13.9240864Z adding 'torch/include/ATen/ops/set_data.h' 2025-09-07T06:46:13.9244345Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9247229Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-09-07T06:46:13.9250530Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-09-07T06:46:13.9253587Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-09-07T06:46:13.9256733Z adding 'torch/include/ATen/ops/set_native.h' 2025-09-07T06:46:13.9260696Z adding 'torch/include/ATen/ops/set_ops.h' 2025-09-07T06:46:13.9264184Z adding 'torch/include/ATen/ops/sgn.h' 2025-09-07T06:46:13.9267535Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9270568Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-09-07T06:46:13.9273634Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-09-07T06:46:13.9276754Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-09-07T06:46:13.9279919Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-09-07T06:46:13.9283097Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-09-07T06:46:13.9286308Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-09-07T06:46:13.9289548Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-09-07T06:46:13.9292718Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-09-07T06:46:13.9296223Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9299204Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-09-07T06:46:13.9302509Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-09-07T06:46:13.9305508Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-09-07T06:46:13.9308824Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-09-07T06:46:13.9311691Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-09-07T06:46:13.9314838Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-09-07T06:46:13.9318304Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9321509Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-09-07T06:46:13.9324689Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-09-07T06:46:13.9327730Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-09-07T06:46:13.9330830Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-09-07T06:46:13.9333934Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-09-07T06:46:13.9337118Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-09-07T06:46:13.9340323Z adding 'torch/include/ATen/ops/sign.h' 2025-09-07T06:46:13.9343702Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9346755Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-09-07T06:46:13.9349840Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-09-07T06:46:13.9352995Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-09-07T06:46:13.9356158Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-09-07T06:46:13.9359196Z adding 'torch/include/ATen/ops/sign_native.h' 2025-09-07T06:46:13.9362506Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-09-07T06:46:13.9365833Z adding 'torch/include/ATen/ops/signbit.h' 2025-09-07T06:46:13.9369255Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9372154Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-09-07T06:46:13.9375451Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-09-07T06:46:13.9378429Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-09-07T06:46:13.9381691Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-09-07T06:46:13.9384910Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-09-07T06:46:13.9388578Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-09-07T06:46:13.9392202Z adding 'torch/include/ATen/ops/silu.h' 2025-09-07T06:46:13.9395539Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-09-07T06:46:13.9398956Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9402174Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9405198Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-09-07T06:46:13.9408441Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-09-07T06:46:13.9411491Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-09-07T06:46:13.9414915Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-09-07T06:46:13.9417946Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-09-07T06:46:13.9421217Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-09-07T06:46:13.9424665Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9427572Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-09-07T06:46:13.9430831Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-09-07T06:46:13.9433851Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-09-07T06:46:13.9436946Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-09-07T06:46:13.9440010Z adding 'torch/include/ATen/ops/silu_native.h' 2025-09-07T06:46:13.9443140Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-09-07T06:46:13.9446365Z adding 'torch/include/ATen/ops/sin.h' 2025-09-07T06:46:13.9449702Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9452621Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-09-07T06:46:13.9455769Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-09-07T06:46:13.9458735Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-09-07T06:46:13.9461788Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-09-07T06:46:13.9464970Z adding 'torch/include/ATen/ops/sin_native.h' 2025-09-07T06:46:13.9468200Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-09-07T06:46:13.9471351Z adding 'torch/include/ATen/ops/sinc.h' 2025-09-07T06:46:13.9474609Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9477727Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-09-07T06:46:13.9480888Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-09-07T06:46:13.9483902Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-09-07T06:46:13.9486966Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-09-07T06:46:13.9489934Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-09-07T06:46:13.9493141Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-09-07T06:46:13.9496211Z adding 'torch/include/ATen/ops/sinh.h' 2025-09-07T06:46:13.9499486Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9503263Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-09-07T06:46:13.9506418Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-09-07T06:46:13.9509446Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-09-07T06:46:13.9512535Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-09-07T06:46:13.9515464Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-09-07T06:46:13.9518655Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-09-07T06:46:13.9521641Z adding 'torch/include/ATen/ops/size.h' 2025-09-07T06:46:13.9524831Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9527681Z adding 'torch/include/ATen/ops/size_native.h' 2025-09-07T06:46:13.9530945Z adding 'torch/include/ATen/ops/size_ops.h' 2025-09-07T06:46:13.9534358Z adding 'torch/include/ATen/ops/slice.h' 2025-09-07T06:46:13.9537865Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-09-07T06:46:13.9541303Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9544432Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-09-07T06:46:13.9547952Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-09-07T06:46:13.9551187Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9554559Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-09-07T06:46:13.9557919Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9561128Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9563933Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-09-07T06:46:13.9567172Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-09-07T06:46:13.9570455Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-09-07T06:46:13.9573683Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9576523Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-09-07T06:46:13.9579619Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-09-07T06:46:13.9582602Z adding 'torch/include/ATen/ops/slice_native.h' 2025-09-07T06:46:13.9585884Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-09-07T06:46:13.9589306Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-09-07T06:46:13.9592763Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9595986Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9598798Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-09-07T06:46:13.9602025Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-09-07T06:46:13.9605143Z adding 'torch/include/ATen/ops/slogdet.h' 2025-09-07T06:46:13.9608344Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9611169Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-09-07T06:46:13.9614259Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-09-07T06:46:13.9617696Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-09-07T06:46:13.9621199Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9624741Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-09-07T06:46:13.9628124Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-09-07T06:46:13.9631140Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-09-07T06:46:13.9634349Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-09-07T06:46:13.9637347Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-09-07T06:46:13.9640561Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-09-07T06:46:13.9644164Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-09-07T06:46:13.9647726Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9650873Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-09-07T06:46:13.9653954Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-09-07T06:46:13.9656995Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-09-07T06:46:13.9660285Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-09-07T06:46:13.9664006Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-09-07T06:46:13.9667560Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9670606Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-09-07T06:46:13.9673707Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-09-07T06:46:13.9676711Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-09-07T06:46:13.9679960Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-09-07T06:46:13.9683641Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-09-07T06:46:13.9687237Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9690341Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-09-07T06:46:13.9693550Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-09-07T06:46:13.9696627Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-09-07T06:46:13.9699935Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-09-07T06:46:13.9703120Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-09-07T06:46:13.9706483Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-09-07T06:46:13.9710119Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-09-07T06:46:13.9713638Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-09-07T06:46:13.9716851Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-09-07T06:46:13.9719910Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-09-07T06:46:13.9723207Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-09-07T06:46:13.9726257Z adding 'torch/include/ATen/ops/smm.h' 2025-09-07T06:46:13.9729394Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9732621Z adding 'torch/include/ATen/ops/smm_native.h' 2025-09-07T06:46:13.9735652Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-09-07T06:46:13.9738779Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-09-07T06:46:13.9741947Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-09-07T06:46:13.9745297Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9748299Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-09-07T06:46:13.9751331Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-09-07T06:46:13.9754248Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-09-07T06:46:13.9757410Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-09-07T06:46:13.9760635Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9763564Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-09-07T06:46:13.9766590Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-09-07T06:46:13.9769510Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-09-07T06:46:13.9772638Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-09-07T06:46:13.9775616Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-09-07T06:46:13.9778876Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-09-07T06:46:13.9781972Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-09-07T06:46:13.9785248Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-09-07T06:46:13.9788517Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9791357Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-09-07T06:46:13.9794509Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-09-07T06:46:13.9797840Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9800794Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-09-07T06:46:13.9803999Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-09-07T06:46:13.9807271Z adding 'torch/include/ATen/ops/softmax.h' 2025-09-07T06:46:13.9810521Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9813868Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9816691Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-09-07T06:46:13.9820203Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-09-07T06:46:13.9823368Z adding 'torch/include/ATen/ops/softplus.h' 2025-09-07T06:46:13.9826656Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-09-07T06:46:13.9830134Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9833030Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-09-07T06:46:13.9836325Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-09-07T06:46:13.9839228Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-09-07T06:46:13.9842475Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-09-07T06:46:13.9845488Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-09-07T06:46:13.9848844Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-09-07T06:46:13.9852251Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9855199Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-09-07T06:46:13.9858391Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-09-07T06:46:13.9861352Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-09-07T06:46:13.9864648Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-09-07T06:46:13.9867689Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-09-07T06:46:13.9870965Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-09-07T06:46:13.9874052Z adding 'torch/include/ATen/ops/softshrink.h' 2025-09-07T06:46:13.9877329Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-09-07T06:46:13.9880717Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9883795Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-09-07T06:46:13.9886924Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-09-07T06:46:13.9889967Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-09-07T06:46:13.9893308Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-09-07T06:46:13.9896403Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-09-07T06:46:13.9899491Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-09-07T06:46:13.9903320Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9906669Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-09-07T06:46:13.9910171Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-09-07T06:46:13.9913862Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-09-07T06:46:13.9917434Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-09-07T06:46:13.9920897Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-09-07T06:46:13.9924551Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-09-07T06:46:13.9928512Z adding 'torch/include/ATen/ops/sort.h' 2025-09-07T06:46:13.9932448Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9936052Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:13.9939570Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9942642Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-09-07T06:46:13.9946036Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-09-07T06:46:13.9949014Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-09-07T06:46:13.9952314Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-09-07T06:46:13.9955423Z adding 'torch/include/ATen/ops/sort_native.h' 2025-09-07T06:46:13.9959241Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-09-07T06:46:13.9962804Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-09-07T06:46:13.9966275Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9969196Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-09-07T06:46:13.9972490Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-09-07T06:46:13.9976018Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-09-07T06:46:13.9979374Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:13.9982285Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-09-07T06:46:13.9985779Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-09-07T06:46:13.9989331Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-09-07T06:46:13.9993016Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:13.9995962Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-09-07T06:46:13.9999221Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-09-07T06:46:14.0002672Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-09-07T06:46:14.0005949Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0009102Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0012074Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-09-07T06:46:14.0015670Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-09-07T06:46:14.0018954Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-09-07T06:46:14.0022436Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0025502Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-09-07T06:46:14.0028776Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-09-07T06:46:14.0032053Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-09-07T06:46:14.0035402Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0038289Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-09-07T06:46:14.0041559Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-09-07T06:46:14.0044537Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-09-07T06:46:14.0047780Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0050589Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-09-07T06:46:14.0053603Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-09-07T06:46:14.0057016Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-09-07T06:46:14.0059864Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0062735Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-09-07T06:46:14.0065901Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-09-07T06:46:14.0069015Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-09-07T06:46:14.0072214Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-09-07T06:46:14.0075468Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0078429Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-09-07T06:46:14.0081701Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-09-07T06:46:14.0084647Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-09-07T06:46:14.0087960Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0090876Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-09-07T06:46:14.0093807Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-09-07T06:46:14.0097009Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-09-07T06:46:14.0100454Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-09-07T06:46:14.0103629Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-09-07T06:46:14.0106890Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-09-07T06:46:14.0109909Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-09-07T06:46:14.0113143Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0115976Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-09-07T06:46:14.0118982Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-09-07T06:46:14.0121871Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-09-07T06:46:14.0124971Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-09-07T06:46:14.0127830Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-09-07T06:46:14.0131005Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-09-07T06:46:14.0134051Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-09-07T06:46:14.0137293Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0140252Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-09-07T06:46:14.0143356Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-09-07T06:46:14.0146322Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-09-07T06:46:14.0149439Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-09-07T06:46:14.0152358Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-09-07T06:46:14.0155481Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-09-07T06:46:14.0158562Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-09-07T06:46:14.0161866Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0164750Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-09-07T06:46:14.0167767Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-09-07T06:46:14.0170705Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-09-07T06:46:14.0173783Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-09-07T06:46:14.0176673Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-09-07T06:46:14.0179825Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-09-07T06:46:14.0183019Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-09-07T06:46:14.0186363Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0189280Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-09-07T06:46:14.0192297Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-09-07T06:46:14.0195220Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-09-07T06:46:14.0198251Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-09-07T06:46:14.0201165Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-09-07T06:46:14.0204452Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-09-07T06:46:14.0207523Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-09-07T06:46:14.0210799Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0213674Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-09-07T06:46:14.0216697Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-09-07T06:46:14.0219608Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-09-07T06:46:14.0222684Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-09-07T06:46:14.0225645Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-09-07T06:46:14.0228744Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-09-07T06:46:14.0232006Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-09-07T06:46:14.0236060Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0239485Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0242407Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-09-07T06:46:14.0245476Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-09-07T06:46:14.0248398Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-09-07T06:46:14.0251465Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-09-07T06:46:14.0254541Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-09-07T06:46:14.0257852Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-09-07T06:46:14.0261115Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-09-07T06:46:14.0264553Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0267807Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0270630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-09-07T06:46:14.0273651Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-09-07T06:46:14.0276909Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-09-07T06:46:14.0279991Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-09-07T06:46:14.0282978Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-09-07T06:46:14.0286342Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-09-07T06:46:14.0289614Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-09-07T06:46:14.0292922Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0296096Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0299012Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-09-07T06:46:14.0302111Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-09-07T06:46:14.0305314Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-09-07T06:46:14.0308413Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-09-07T06:46:14.0311597Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-09-07T06:46:14.0315003Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-09-07T06:46:14.0318459Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-09-07T06:46:14.0321895Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0325101Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0328143Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-09-07T06:46:14.0331217Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-09-07T06:46:14.0334333Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-09-07T06:46:14.0337452Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-09-07T06:46:14.0340658Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-09-07T06:46:14.0344214Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-09-07T06:46:14.0347429Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-09-07T06:46:14.0350822Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0353685Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-09-07T06:46:14.0356937Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-09-07T06:46:14.0360005Z adding 'torch/include/ATen/ops/special_entr.h' 2025-09-07T06:46:14.0363426Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0366306Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-09-07T06:46:14.0369529Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-09-07T06:46:14.0372498Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-09-07T06:46:14.0375802Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-09-07T06:46:14.0378794Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-09-07T06:46:14.0381943Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-09-07T06:46:14.0385290Z adding 'torch/include/ATen/ops/special_erf.h' 2025-09-07T06:46:14.0388465Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0391420Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-09-07T06:46:14.0395022Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-09-07T06:46:14.0398106Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-09-07T06:46:14.0401832Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0405156Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-09-07T06:46:14.0408753Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-09-07T06:46:14.0412326Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-09-07T06:46:14.0416157Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0419557Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-09-07T06:46:14.0423175Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-09-07T06:46:14.0426492Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-09-07T06:46:14.0429609Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-09-07T06:46:14.0432849Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-09-07T06:46:14.0435951Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-09-07T06:46:14.0439210Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-09-07T06:46:14.0442456Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0445461Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-09-07T06:46:14.0448604Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-09-07T06:46:14.0451832Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-09-07T06:46:14.0455030Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0457893Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-09-07T06:46:14.0461518Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-09-07T06:46:14.0464707Z adding 'torch/include/ATen/ops/special_expit.h' 2025-09-07T06:46:14.0467911Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0470807Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-09-07T06:46:14.0473916Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-09-07T06:46:14.0477161Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-09-07T06:46:14.0480381Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0483268Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-09-07T06:46:14.0486341Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-09-07T06:46:14.0489402Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-09-07T06:46:14.0492640Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0495458Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-09-07T06:46:14.0498577Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-09-07T06:46:14.0501615Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-09-07T06:46:14.0504969Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0508328Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-09-07T06:46:14.0511165Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-09-07T06:46:14.0514200Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-09-07T06:46:14.0517385Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0520201Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-09-07T06:46:14.0523408Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-09-07T06:46:14.0526580Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-09-07T06:46:14.0529946Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0533093Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0536095Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-09-07T06:46:14.0539097Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-09-07T06:46:14.0542030Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-09-07T06:46:14.0545215Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-09-07T06:46:14.0548367Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-09-07T06:46:14.0551756Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-09-07T06:46:14.0555085Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-09-07T06:46:14.0558425Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0561592Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0564630Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-09-07T06:46:14.0567682Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-09-07T06:46:14.0570628Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-09-07T06:46:14.0573639Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-09-07T06:46:14.0576603Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-09-07T06:46:14.0579987Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-09-07T06:46:14.0583156Z adding 'torch/include/ATen/ops/special_i0.h' 2025-09-07T06:46:14.0586366Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0589207Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-09-07T06:46:14.0592310Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-09-07T06:46:14.0595345Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-09-07T06:46:14.0598578Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0601576Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-09-07T06:46:14.0604550Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-09-07T06:46:14.0607459Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-09-07T06:46:14.0610532Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-09-07T06:46:14.0613445Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-09-07T06:46:14.0616540Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-09-07T06:46:14.0619606Z adding 'torch/include/ATen/ops/special_i1.h' 2025-09-07T06:46:14.0622856Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0625905Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-09-07T06:46:14.0628943Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-09-07T06:46:14.0631886Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-09-07T06:46:14.0634998Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-09-07T06:46:14.0638247Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-09-07T06:46:14.0641364Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-09-07T06:46:14.0644445Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-09-07T06:46:14.0647761Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0650559Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-09-07T06:46:14.0654118Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-09-07T06:46:14.0656643Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-09-07T06:46:14.0659736Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-09-07T06:46:14.0662733Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-09-07T06:46:14.0666381Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-09-07T06:46:14.0669481Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-09-07T06:46:14.0673008Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0676370Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0679312Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-09-07T06:46:14.0682535Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-09-07T06:46:14.0685516Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-09-07T06:46:14.0688738Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-09-07T06:46:14.0691898Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-09-07T06:46:14.0695468Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-09-07T06:46:14.0698859Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-09-07T06:46:14.0702298Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.0705747Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0708662Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-09-07T06:46:14.0711876Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-09-07T06:46:14.0714866Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-09-07T06:46:14.0718070Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-09-07T06:46:14.0721074Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-09-07T06:46:14.0724594Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-09-07T06:46:14.0727798Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-09-07T06:46:14.0731102Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0734069Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-09-07T06:46:14.0737193Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-09-07T06:46:14.0740690Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-09-07T06:46:14.0743851Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0746897Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-09-07T06:46:14.0749958Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-09-07T06:46:14.0753078Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-09-07T06:46:14.0756252Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-09-07T06:46:14.0759357Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-09-07T06:46:14.0762585Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-09-07T06:46:14.0765715Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-09-07T06:46:14.0769108Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0772019Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-09-07T06:46:14.0775265Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-09-07T06:46:14.0778331Z adding 'torch/include/ATen/ops/special_logit.h' 2025-09-07T06:46:14.0781763Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0785361Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-09-07T06:46:14.0788183Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-09-07T06:46:14.0791350Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-09-07T06:46:14.0794648Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0797640Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-09-07T06:46:14.0800872Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-09-07T06:46:14.0804097Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-09-07T06:46:14.0807465Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0810604Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-09-07T06:46:14.0813732Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-09-07T06:46:14.0816796Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-09-07T06:46:14.0820225Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-09-07T06:46:14.0823299Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-09-07T06:46:14.0826577Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-09-07T06:46:14.0829687Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-09-07T06:46:14.0833179Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0836113Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-09-07T06:46:14.0839330Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-09-07T06:46:14.0842398Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-09-07T06:46:14.0845504Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-09-07T06:46:14.0848565Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-09-07T06:46:14.0851697Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-09-07T06:46:14.0854922Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-09-07T06:46:14.0858243Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0861329Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-09-07T06:46:14.0864576Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-09-07T06:46:14.0867702Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-09-07T06:46:14.0870875Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-09-07T06:46:14.0873964Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-09-07T06:46:14.0877236Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-09-07T06:46:14.0880341Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-09-07T06:46:14.0884147Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0887123Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-09-07T06:46:14.0890331Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-09-07T06:46:14.0893306Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-09-07T06:46:14.0897003Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-09-07T06:46:14.0900433Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-09-07T06:46:14.0904144Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-09-07T06:46:14.0907746Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-09-07T06:46:14.0911618Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0915140Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-09-07T06:46:14.0917843Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-09-07T06:46:14.0921109Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-09-07T06:46:14.0924489Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0927370Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-09-07T06:46:14.0930644Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-09-07T06:46:14.0933794Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-09-07T06:46:14.0937221Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.0940093Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-09-07T06:46:14.0943234Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-09-07T06:46:14.0946303Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-09-07T06:46:14.0949631Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-09-07T06:46:14.0952578Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-09-07T06:46:14.0955653Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-09-07T06:46:14.0958704Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-09-07T06:46:14.0961963Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0965806Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-09-07T06:46:14.0969066Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-09-07T06:46:14.0972113Z adding 'torch/include/ATen/ops/special_psi.h' 2025-09-07T06:46:14.0975325Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0978161Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-09-07T06:46:14.0981260Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-09-07T06:46:14.0984477Z adding 'torch/include/ATen/ops/special_round.h' 2025-09-07T06:46:14.0987824Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.0990642Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-09-07T06:46:14.0993844Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-09-07T06:46:14.0997144Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-09-07T06:46:14.1000501Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1003665Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-09-07T06:46:14.1006722Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-09-07T06:46:14.1009712Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-09-07T06:46:14.1012764Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-09-07T06:46:14.1015745Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-09-07T06:46:14.1018899Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-09-07T06:46:14.1021948Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-09-07T06:46:14.1025412Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1028290Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-09-07T06:46:14.1031951Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-09-07T06:46:14.1038893Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-09-07T06:46:14.1042936Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-09-07T06:46:14.1046201Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-09-07T06:46:14.1049175Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-09-07T06:46:14.1053370Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-09-07T06:46:14.1056176Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1059274Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1062184Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-09-07T06:46:14.1065498Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-09-07T06:46:14.1068384Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-09-07T06:46:14.1071441Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-09-07T06:46:14.1074469Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-09-07T06:46:14.1077822Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-09-07T06:46:14.1081121Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-09-07T06:46:14.1084443Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1087603Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1090533Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-09-07T06:46:14.1093574Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-09-07T06:46:14.1096502Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-09-07T06:46:14.1099590Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-09-07T06:46:14.1102637Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-09-07T06:46:14.1106104Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-09-07T06:46:14.1109373Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-09-07T06:46:14.1112736Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1115933Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1118850Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-09-07T06:46:14.1121947Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-09-07T06:46:14.1124884Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-09-07T06:46:14.1127979Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-09-07T06:46:14.1130978Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-09-07T06:46:14.1134358Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-09-07T06:46:14.1137671Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-09-07T06:46:14.1141022Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1144306Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1147253Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-09-07T06:46:14.1150302Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-09-07T06:46:14.1153425Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-09-07T06:46:14.1156574Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-09-07T06:46:14.1160072Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-09-07T06:46:14.1163522Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-09-07T06:46:14.1167264Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-09-07T06:46:14.1171005Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1174293Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-09-07T06:46:14.1178042Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-09-07T06:46:14.1181521Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-09-07T06:46:14.1185590Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1189223Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-09-07T06:46:14.1192888Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-09-07T06:46:14.1196583Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-09-07T06:46:14.1200128Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1203161Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-09-07T06:46:14.1206371Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-09-07T06:46:14.1209311Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-09-07T06:46:14.1212867Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-09-07T06:46:14.1215933Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-09-07T06:46:14.1219300Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-09-07T06:46:14.1222443Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-09-07T06:46:14.1226153Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1229426Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1232519Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-09-07T06:46:14.1235614Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-09-07T06:46:14.1238841Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-09-07T06:46:14.1241983Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-09-07T06:46:14.1244999Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-09-07T06:46:14.1248604Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-09-07T06:46:14.1251960Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-09-07T06:46:14.1255261Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1258239Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-09-07T06:46:14.1261738Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-09-07T06:46:14.1265414Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-09-07T06:46:14.1268674Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1271759Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1274612Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-09-07T06:46:14.1277635Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-09-07T06:46:14.1280539Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-09-07T06:46:14.1283584Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-09-07T06:46:14.1286553Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-09-07T06:46:14.1289910Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-09-07T06:46:14.1293210Z adding 'torch/include/ATen/ops/split.h' 2025-09-07T06:46:14.1296611Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1299689Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1302904Z adding 'torch/include/ATen/ops/split_copy.h' 2025-09-07T06:46:14.1306223Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1309518Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1312569Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-09-07T06:46:14.1315735Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-09-07T06:46:14.1318722Z adding 'torch/include/ATen/ops/split_native.h' 2025-09-07T06:46:14.1321979Z adding 'torch/include/ATen/ops/split_ops.h' 2025-09-07T06:46:14.1324985Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-09-07T06:46:14.1328218Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1331446Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-09-07T06:46:14.1334801Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1337966Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1341017Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-09-07T06:46:14.1344112Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-09-07T06:46:14.1347314Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-09-07T06:46:14.1350323Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-09-07T06:46:14.1353628Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-09-07T06:46:14.1356748Z adding 'torch/include/ATen/ops/sqrt.h' 2025-09-07T06:46:14.1360044Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1363065Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-09-07T06:46:14.1366151Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-09-07T06:46:14.1369100Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-09-07T06:46:14.1372576Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-09-07T06:46:14.1375557Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-09-07T06:46:14.1378801Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-09-07T06:46:14.1381865Z adding 'torch/include/ATen/ops/square.h' 2025-09-07T06:46:14.1385265Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1388152Z adding 'torch/include/ATen/ops/square_native.h' 2025-09-07T06:46:14.1391417Z adding 'torch/include/ATen/ops/square_ops.h' 2025-09-07T06:46:14.1394587Z adding 'torch/include/ATen/ops/squeeze.h' 2025-09-07T06:46:14.1397863Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1400966Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1404060Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-09-07T06:46:14.1407554Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1410577Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1413434Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-09-07T06:46:14.1416949Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-09-07T06:46:14.1420100Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-09-07T06:46:14.1423618Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-09-07T06:46:14.1426819Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-09-07T06:46:14.1430072Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1433016Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-09-07T06:46:14.1436105Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-09-07T06:46:14.1438986Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-09-07T06:46:14.1442164Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-09-07T06:46:14.1445219Z adding 'torch/include/ATen/ops/stack.h' 2025-09-07T06:46:14.1448483Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1451398Z adding 'torch/include/ATen/ops/stack_native.h' 2025-09-07T06:46:14.1454683Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-09-07T06:46:14.1458407Z adding 'torch/include/ATen/ops/std.h' 2025-09-07T06:46:14.1461854Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1465438Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-09-07T06:46:14.1469075Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-09-07T06:46:14.1472759Z adding 'torch/include/ATen/ops/std_mean.h' 2025-09-07T06:46:14.1476734Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1480252Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1483752Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-09-07T06:46:14.1487231Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-09-07T06:46:14.1490722Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-09-07T06:46:14.1494776Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-09-07T06:46:14.1498453Z adding 'torch/include/ATen/ops/std_native.h' 2025-09-07T06:46:14.1502487Z adding 'torch/include/ATen/ops/std_ops.h' 2025-09-07T06:46:14.1505961Z adding 'torch/include/ATen/ops/stft.h' 2025-09-07T06:46:14.1509465Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1512425Z adding 'torch/include/ATen/ops/stft_native.h' 2025-09-07T06:46:14.1515897Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-09-07T06:46:14.1519048Z adding 'torch/include/ATen/ops/stride.h' 2025-09-07T06:46:14.1522342Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1525359Z adding 'torch/include/ATen/ops/stride_native.h' 2025-09-07T06:46:14.1528475Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-09-07T06:46:14.1531586Z adding 'torch/include/ATen/ops/sub.h' 2025-09-07T06:46:14.1534822Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1538046Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1540897Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-09-07T06:46:14.1543999Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-09-07T06:46:14.1546933Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-09-07T06:46:14.1550007Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-09-07T06:46:14.1553217Z adding 'torch/include/ATen/ops/sub_native.h' 2025-09-07T06:46:14.1556587Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-09-07T06:46:14.1560038Z adding 'torch/include/ATen/ops/subtract.h' 2025-09-07T06:46:14.1563276Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1566213Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-09-07T06:46:14.1569431Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-09-07T06:46:14.1572778Z adding 'torch/include/ATen/ops/sum.h' 2025-09-07T06:46:14.1576030Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1579136Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1582184Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1585389Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-09-07T06:46:14.1588461Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-09-07T06:46:14.1591425Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-09-07T06:46:14.1594506Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-09-07T06:46:14.1597617Z adding 'torch/include/ATen/ops/sum_native.h' 2025-09-07T06:46:14.1601037Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-09-07T06:46:14.1604161Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-09-07T06:46:14.1607308Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1610177Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-09-07T06:46:14.1613131Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-09-07T06:46:14.1616188Z adding 'torch/include/ATen/ops/svd.h' 2025-09-07T06:46:14.1619413Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1622270Z adding 'torch/include/ATen/ops/svd_native.h' 2025-09-07T06:46:14.1625581Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-09-07T06:46:14.1628706Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-09-07T06:46:14.1631770Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1634587Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-09-07T06:46:14.1637679Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-09-07T06:46:14.1640851Z adding 'torch/include/ATen/ops/swapdims.h' 2025-09-07T06:46:14.1644150Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1647015Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-09-07T06:46:14.1650262Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-09-07T06:46:14.1653322Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-09-07T06:46:14.1656640Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1659540Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-09-07T06:46:14.1662959Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1665902Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-09-07T06:46:14.1669189Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-09-07T06:46:14.1672181Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-09-07T06:46:14.1675480Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-09-07T06:46:14.1678508Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-09-07T06:46:14.1681710Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1684993Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-09-07T06:46:14.1687724Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-09-07T06:46:14.1690831Z adding 'torch/include/ATen/ops/sym_size.h' 2025-09-07T06:46:14.1694030Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1697008Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-09-07T06:46:14.1700057Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-09-07T06:46:14.1703384Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-09-07T06:46:14.1707380Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1710314Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-09-07T06:46:14.1713484Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-09-07T06:46:14.1716442Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-09-07T06:46:14.1719719Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1722551Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-09-07T06:46:14.1725744Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-09-07T06:46:14.1728690Z adding 'torch/include/ATen/ops/t.h' 2025-09-07T06:46:14.1732067Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1734903Z adding 'torch/include/ATen/ops/t_copy.h' 2025-09-07T06:46:14.1738192Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.1741541Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1744445Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-09-07T06:46:14.1747660Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-09-07T06:46:14.1750608Z adding 'torch/include/ATen/ops/t_native.h' 2025-09-07T06:46:14.1753887Z adding 'torch/include/ATen/ops/t_ops.h' 2025-09-07T06:46:14.1756908Z adding 'torch/include/ATen/ops/take.h' 2025-09-07T06:46:14.1760172Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-09-07T06:46:14.1763450Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1766486Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-09-07T06:46:14.1769701Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-09-07T06:46:14.1772873Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-09-07T06:46:14.1775961Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-09-07T06:46:14.1778959Z adding 'torch/include/ATen/ops/take_native.h' 2025-09-07T06:46:14.1782265Z adding 'torch/include/ATen/ops/take_ops.h' 2025-09-07T06:46:14.1785343Z adding 'torch/include/ATen/ops/tan.h' 2025-09-07T06:46:14.1788734Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1791612Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-09-07T06:46:14.1794762Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-09-07T06:46:14.1797705Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-09-07T06:46:14.1800906Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-09-07T06:46:14.1803891Z adding 'torch/include/ATen/ops/tan_native.h' 2025-09-07T06:46:14.1807240Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-09-07T06:46:14.1810420Z adding 'torch/include/ATen/ops/tanh.h' 2025-09-07T06:46:14.1813818Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-09-07T06:46:14.1817183Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1820140Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-09-07T06:46:14.1823086Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-09-07T06:46:14.1825994Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-09-07T06:46:14.1829216Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-09-07T06:46:14.1832152Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-09-07T06:46:14.1835398Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-09-07T06:46:14.1838664Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1841675Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-09-07T06:46:14.1844780Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-09-07T06:46:14.1847739Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-09-07T06:46:14.1850919Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-09-07T06:46:14.1853987Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-09-07T06:46:14.1857313Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-09-07T06:46:14.1860503Z adding 'torch/include/ATen/ops/tensor.h' 2025-09-07T06:46:14.1863972Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-09-07T06:46:14.1867319Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1870337Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-09-07T06:46:14.1873574Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-09-07T06:46:14.1876740Z adding 'torch/include/ATen/ops/tensordot.h' 2025-09-07T06:46:14.1880155Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1883002Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-09-07T06:46:14.1886303Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-09-07T06:46:14.1889801Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-09-07T06:46:14.1893436Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1896494Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-09-07T06:46:14.1899801Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-09-07T06:46:14.1903237Z adding 'torch/include/ATen/ops/threshold.h' 2025-09-07T06:46:14.1906912Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-09-07T06:46:14.1910843Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1914211Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-09-07T06:46:14.1917782Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-09-07T06:46:14.1921263Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-09-07T06:46:14.1925080Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-09-07T06:46:14.1928252Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-09-07T06:46:14.1931578Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-09-07T06:46:14.1934887Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.1937955Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-09-07T06:46:14.1941014Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-09-07T06:46:14.1944237Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-09-07T06:46:14.1947315Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-09-07T06:46:14.1950505Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-09-07T06:46:14.1953688Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-09-07T06:46:14.1956807Z adding 'torch/include/ATen/ops/tile.h' 2025-09-07T06:46:14.1960123Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1963044Z adding 'torch/include/ATen/ops/tile_native.h' 2025-09-07T06:46:14.1966075Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-09-07T06:46:14.1968980Z adding 'torch/include/ATen/ops/to.h' 2025-09-07T06:46:14.1972190Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1975041Z adding 'torch/include/ATen/ops/to_dense.h' 2025-09-07T06:46:14.1978308Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-09-07T06:46:14.1981532Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1984521Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-09-07T06:46:14.1987543Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-09-07T06:46:14.1990632Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.1993414Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-09-07T06:46:14.1996482Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-09-07T06:46:14.1999484Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-09-07T06:46:14.2002452Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-09-07T06:46:14.2005609Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2008622Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-09-07T06:46:14.2011700Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-09-07T06:46:14.2014784Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2017674Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-09-07T06:46:14.2020570Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-09-07T06:46:14.2023800Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-09-07T06:46:14.2026882Z adding 'torch/include/ATen/ops/to_native.h' 2025-09-07T06:46:14.2030299Z adding 'torch/include/ATen/ops/to_ops.h' 2025-09-07T06:46:14.2033782Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-09-07T06:46:14.2037110Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2039939Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-09-07T06:46:14.2043090Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-09-07T06:46:14.2045961Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-09-07T06:46:14.2048854Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-09-07T06:46:14.2052007Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2055081Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-09-07T06:46:14.2058144Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-09-07T06:46:14.2061096Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-09-07T06:46:14.2064462Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2067312Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-09-07T06:46:14.2070419Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-09-07T06:46:14.2073512Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2076334Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-09-07T06:46:14.2079486Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2082325Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-09-07T06:46:14.2085361Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-09-07T06:46:14.2088289Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-09-07T06:46:14.2091423Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2094235Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-09-07T06:46:14.2097294Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-09-07T06:46:14.2100489Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-09-07T06:46:14.2103749Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-09-07T06:46:14.2107116Z adding 'torch/include/ATen/ops/topk.h' 2025-09-07T06:46:14.2110519Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2113470Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-09-07T06:46:14.2116553Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-09-07T06:46:14.2119517Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-09-07T06:46:14.2122668Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-09-07T06:46:14.2125669Z adding 'torch/include/ATen/ops/topk_native.h' 2025-09-07T06:46:14.2128851Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-09-07T06:46:14.2131903Z adding 'torch/include/ATen/ops/trace.h' 2025-09-07T06:46:14.2134983Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-09-07T06:46:14.2138167Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2140948Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-09-07T06:46:14.2144111Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-09-07T06:46:14.2147269Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2150142Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-09-07T06:46:14.2153122Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-09-07T06:46:14.2156121Z adding 'torch/include/ATen/ops/trace_native.h' 2025-09-07T06:46:14.2159204Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-09-07T06:46:14.2162216Z adding 'torch/include/ATen/ops/transpose.h' 2025-09-07T06:46:14.2165496Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2168548Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2171700Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-09-07T06:46:14.2174897Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2178150Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2180852Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-09-07T06:46:14.2184168Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-09-07T06:46:14.2187100Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-09-07T06:46:14.2190442Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-09-07T06:46:14.2193418Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-09-07T06:46:14.2196727Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2199533Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-09-07T06:46:14.2202667Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-09-07T06:46:14.2205766Z adding 'torch/include/ATen/ops/trapz.h' 2025-09-07T06:46:14.2208907Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2211799Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-09-07T06:46:14.2214938Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-09-07T06:46:14.2218104Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-09-07T06:46:14.2221388Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2224533Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-09-07T06:46:14.2227598Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-09-07T06:46:14.2230655Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-09-07T06:46:14.2233842Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-09-07T06:46:14.2236864Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-09-07T06:46:14.2240175Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-09-07T06:46:14.2243218Z adding 'torch/include/ATen/ops/tril.h' 2025-09-07T06:46:14.2246618Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2249475Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-09-07T06:46:14.2252687Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-09-07T06:46:14.2255827Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-09-07T06:46:14.2259234Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2262308Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-09-07T06:46:14.2265470Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-09-07T06:46:14.2268559Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-09-07T06:46:14.2271764Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-09-07T06:46:14.2274920Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-09-07T06:46:14.2278221Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-09-07T06:46:14.2281333Z adding 'torch/include/ATen/ops/tril_native.h' 2025-09-07T06:46:14.2284451Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-09-07T06:46:14.2287725Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-09-07T06:46:14.2291097Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2293913Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-09-07T06:46:14.2297137Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-09-07T06:46:14.2300155Z adding 'torch/include/ATen/ops/triu.h' 2025-09-07T06:46:14.2303588Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2306462Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-09-07T06:46:14.2309613Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-09-07T06:46:14.2312737Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-09-07T06:46:14.2316099Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2319076Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-09-07T06:46:14.2322248Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-09-07T06:46:14.2325239Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-09-07T06:46:14.2328555Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-09-07T06:46:14.2331632Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-09-07T06:46:14.2334674Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-09-07T06:46:14.2337734Z adding 'torch/include/ATen/ops/triu_native.h' 2025-09-07T06:46:14.2340871Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-09-07T06:46:14.2344214Z adding 'torch/include/ATen/ops/true_divide.h' 2025-09-07T06:46:14.2347550Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2350507Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-09-07T06:46:14.2353841Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-09-07T06:46:14.2357049Z adding 'torch/include/ATen/ops/trunc.h' 2025-09-07T06:46:14.2360394Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2363306Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-09-07T06:46:14.2366367Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-09-07T06:46:14.2369279Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-09-07T06:46:14.2372555Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-09-07T06:46:14.2375614Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-09-07T06:46:14.2378938Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-09-07T06:46:14.2381887Z adding 'torch/include/ATen/ops/type_as.h' 2025-09-07T06:46:14.2385322Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2388112Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-09-07T06:46:14.2391259Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-09-07T06:46:14.2394375Z adding 'torch/include/ATen/ops/unbind.h' 2025-09-07T06:46:14.2397561Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2400780Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2404069Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-09-07T06:46:14.2407757Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2411107Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2413832Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-09-07T06:46:14.2417262Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-09-07T06:46:14.2420229Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-09-07T06:46:14.2423652Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-09-07T06:46:14.2427766Z adding 'torch/include/ATen/ops/unflatten.h' 2025-09-07T06:46:14.2431170Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2434281Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-09-07T06:46:14.2437526Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2440507Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-09-07T06:46:14.2443585Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-09-07T06:46:14.2446484Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-09-07T06:46:14.2449641Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-09-07T06:46:14.2452814Z adding 'torch/include/ATen/ops/unfold.h' 2025-09-07T06:46:14.2456145Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-09-07T06:46:14.2459689Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2462710Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-09-07T06:46:14.2465768Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-09-07T06:46:14.2468933Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-09-07T06:46:14.2472092Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-09-07T06:46:14.2476171Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-09-07T06:46:14.2479473Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2482556Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2485311Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-09-07T06:46:14.2488415Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-09-07T06:46:14.2491490Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-09-07T06:46:14.2494423Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-09-07T06:46:14.2497407Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-09-07T06:46:14.2500518Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-09-07T06:46:14.2503664Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-09-07T06:46:14.2506761Z adding 'torch/include/ATen/ops/uniform.h' 2025-09-07T06:46:14.2510060Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2512926Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-09-07T06:46:14.2515906Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-09-07T06:46:14.2518881Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-09-07T06:46:14.2521806Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-09-07T06:46:14.2525018Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-09-07T06:46:14.2528193Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-09-07T06:46:14.2531444Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2534357Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-09-07T06:46:14.2537362Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-09-07T06:46:14.2540288Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-09-07T06:46:14.2543575Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-09-07T06:46:14.2546769Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-09-07T06:46:14.2549999Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2553029Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-09-07T06:46:14.2556244Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2559294Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-09-07T06:46:14.2562316Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-09-07T06:46:14.2565234Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-09-07T06:46:14.2568424Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-09-07T06:46:14.2571493Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-09-07T06:46:14.2574436Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-09-07T06:46:14.2577357Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-09-07T06:46:14.2580576Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-09-07T06:46:14.2583669Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-09-07T06:46:14.2586806Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2589600Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-09-07T06:46:14.2592661Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-09-07T06:46:14.2595921Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-09-07T06:46:14.2599234Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2602056Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-09-07T06:46:14.2605173Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-09-07T06:46:14.2615925Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-09-07T06:46:14.2619545Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2622521Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-09-07T06:46:14.2625873Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-09-07T06:46:14.2628867Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-09-07T06:46:14.2632084Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2635104Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-09-07T06:46:14.2638349Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2641528Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2644505Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-09-07T06:46:14.2647658Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-09-07T06:46:14.2650659Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-09-07T06:46:14.2653775Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-09-07T06:46:14.2657498Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-09-07T06:46:14.2661942Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-09-07T06:46:14.2665961Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2669594Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-09-07T06:46:14.2673405Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-09-07T06:46:14.2676576Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-09-07T06:46:14.2680418Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-09-07T06:46:14.2683579Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-09-07T06:46:14.2687580Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-09-07T06:46:14.2691372Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2694692Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2698344Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-09-07T06:46:14.2701635Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-09-07T06:46:14.2705440Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-09-07T06:46:14.2708817Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-09-07T06:46:14.2722648Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-09-07T06:46:14.2723178Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-09-07T06:46:14.2723349Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-09-07T06:46:14.2724909Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-09-07T06:46:14.2729005Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2732129Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-09-07T06:46:14.2735916Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-09-07T06:46:14.2739053Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-09-07T06:46:14.2743015Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-09-07T06:46:14.2746465Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-09-07T06:46:14.2750013Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-09-07T06:46:14.2753893Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2757179Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2760885Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2764067Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-09-07T06:46:14.2768004Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-09-07T06:46:14.2771445Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-09-07T06:46:14.2774882Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-09-07T06:46:14.2778580Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-09-07T06:46:14.2782130Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-09-07T06:46:14.2786558Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-09-07T06:46:14.2790756Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-09-07T06:46:14.2794414Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2798109Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-09-07T06:46:14.2801498Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-09-07T06:46:14.2805143Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-09-07T06:46:14.2808856Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-09-07T06:46:14.2812046Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-09-07T06:46:14.2815844Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-09-07T06:46:14.2819294Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2823100Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2826495Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-09-07T06:46:14.2830001Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-09-07T06:46:14.2833577Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-09-07T06:46:14.2836900Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-09-07T06:46:14.2840511Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-09-07T06:46:14.2843900Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-09-07T06:46:14.2848191Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-09-07T06:46:14.2852585Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-09-07T06:46:14.2856249Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2859964Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-09-07T06:46:14.2863613Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-09-07T06:46:14.2866889Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-09-07T06:46:14.2870608Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-09-07T06:46:14.2873756Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-09-07T06:46:14.2877562Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-09-07T06:46:14.2881001Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2884879Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2888286Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-09-07T06:46:14.2891772Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-09-07T06:46:14.2895287Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-09-07T06:46:14.2898541Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-09-07T06:46:14.2902179Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-09-07T06:46:14.2905859Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-09-07T06:46:14.2911726Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-09-07T06:46:14.2915964Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-09-07T06:46:14.2920627Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2925431Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-09-07T06:46:14.2930480Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-09-07T06:46:14.2935182Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-09-07T06:46:14.2940105Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-09-07T06:46:14.2943306Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-09-07T06:46:14.2947290Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-09-07T06:46:14.2950684Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.2954717Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2957956Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.2961814Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-09-07T06:46:14.2965000Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-09-07T06:46:14.2968010Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-09-07T06:46:14.2972385Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-09-07T06:46:14.2975639Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-09-07T06:46:14.2978792Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-09-07T06:46:14.2982669Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-09-07T06:46:14.2986977Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-09-07T06:46:14.2991152Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.2994646Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-09-07T06:46:14.2998377Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-09-07T06:46:14.3001487Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-09-07T06:46:14.3004916Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-09-07T06:46:14.3008141Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-09-07T06:46:14.3011588Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-09-07T06:46:14.3014959Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3018149Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3021833Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-09-07T06:46:14.3025370Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-09-07T06:46:14.3028640Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-09-07T06:46:14.3032032Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-09-07T06:46:14.3035321Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-09-07T06:46:14.3038801Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-09-07T06:46:14.3042893Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-09-07T06:46:14.3046635Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-09-07T06:46:14.3050349Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3053599Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-09-07T06:46:14.3056986Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-09-07T06:46:14.3060190Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-09-07T06:46:14.3063750Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-09-07T06:46:14.3067444Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-09-07T06:46:14.3070873Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-09-07T06:46:14.3074330Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3077339Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3080633Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-09-07T06:46:14.3083769Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-09-07T06:46:14.3087207Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-09-07T06:46:14.3090232Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-09-07T06:46:14.3093467Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-09-07T06:46:14.3097110Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-09-07T06:46:14.3100287Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-09-07T06:46:14.3103959Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3106844Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-09-07T06:46:14.3110346Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-09-07T06:46:14.3113459Z adding 'torch/include/ATen/ops/values.h' 2025-09-07T06:46:14.3116994Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3119784Z adding 'torch/include/ATen/ops/values_copy.h' 2025-09-07T06:46:14.3123028Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3126315Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3129083Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-09-07T06:46:14.3132366Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-09-07T06:46:14.3135396Z adding 'torch/include/ATen/ops/values_native.h' 2025-09-07T06:46:14.3138629Z adding 'torch/include/ATen/ops/values_ops.h' 2025-09-07T06:46:14.3141819Z adding 'torch/include/ATen/ops/vander.h' 2025-09-07T06:46:14.3145192Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3148427Z adding 'torch/include/ATen/ops/vander_native.h' 2025-09-07T06:46:14.3151608Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-09-07T06:46:14.3155208Z adding 'torch/include/ATen/ops/var.h' 2025-09-07T06:46:14.3158686Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3162198Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-09-07T06:46:14.3165138Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-09-07T06:46:14.3168467Z adding 'torch/include/ATen/ops/var_mean.h' 2025-09-07T06:46:14.3172048Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3175375Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3178381Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-09-07T06:46:14.3181516Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-09-07T06:46:14.3185315Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-09-07T06:46:14.3188974Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-09-07T06:46:14.3192372Z adding 'torch/include/ATen/ops/var_native.h' 2025-09-07T06:46:14.3196259Z adding 'torch/include/ATen/ops/var_ops.h' 2025-09-07T06:46:14.3199766Z adding 'torch/include/ATen/ops/vdot.h' 2025-09-07T06:46:14.3203306Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3206469Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-09-07T06:46:14.3209790Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-09-07T06:46:14.3212931Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-09-07T06:46:14.3216613Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-09-07T06:46:14.3219706Z adding 'torch/include/ATen/ops/view.h' 2025-09-07T06:46:14.3224363Z adding 'torch/include/ATen/ops/view_as.h' 2025-09-07T06:46:14.3228120Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-09-07T06:46:14.3231597Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-09-07T06:46:14.3235821Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3239284Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3243206Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-09-07T06:46:14.3247310Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-09-07T06:46:14.3251010Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-09-07T06:46:14.3256092Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-09-07T06:46:14.3259198Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-09-07T06:46:14.3262207Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-09-07T06:46:14.3265898Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-09-07T06:46:14.3269141Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3272509Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-09-07T06:46:14.3275674Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-09-07T06:46:14.3279407Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-09-07T06:46:14.3282526Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-09-07T06:46:14.3286435Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3290001Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3292961Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-09-07T06:46:14.3296592Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-09-07T06:46:14.3299740Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-09-07T06:46:14.3303414Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-09-07T06:46:14.3306550Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-09-07T06:46:14.3310161Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-09-07T06:46:14.3313271Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-09-07T06:46:14.3317108Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3320867Z adding 'torch/include/ATen/ops/view_copy.h' 2025-09-07T06:46:14.3324346Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3328113Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3331431Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-09-07T06:46:14.3335126Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-09-07T06:46:14.3338403Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-09-07T06:46:14.3341808Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-09-07T06:46:14.3345421Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-09-07T06:46:14.3348501Z adding 'torch/include/ATen/ops/view_native.h' 2025-09-07T06:46:14.3352144Z adding 'torch/include/ATen/ops/view_ops.h' 2025-09-07T06:46:14.3355306Z adding 'torch/include/ATen/ops/vsplit.h' 2025-09-07T06:46:14.3359304Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3362142Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-09-07T06:46:14.3365871Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-09-07T06:46:14.3369117Z adding 'torch/include/ATen/ops/vstack.h' 2025-09-07T06:46:14.3372789Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3376058Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-09-07T06:46:14.3379379Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-09-07T06:46:14.3383216Z adding 'torch/include/ATen/ops/where.h' 2025-09-07T06:46:14.3386767Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3390366Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-09-07T06:46:14.3393395Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-09-07T06:46:14.3397228Z adding 'torch/include/ATen/ops/where_native.h' 2025-09-07T06:46:14.3401017Z adding 'torch/include/ATen/ops/where_ops.h' 2025-09-07T06:46:14.3404453Z adding 'torch/include/ATen/ops/xlogy.h' 2025-09-07T06:46:14.3408326Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3411580Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:46:14.3416032Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-09-07T06:46:14.3421468Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-09-07T06:46:14.3425551Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-09-07T06:46:14.3430317Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-09-07T06:46:14.3434923Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-09-07T06:46:14.3439616Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-09-07T06:46:14.3443112Z adding 'torch/include/ATen/ops/xor.h' 2025-09-07T06:46:14.3447139Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:46:14.3450444Z adding 'torch/include/ATen/ops/xor_native.h' 2025-09-07T06:46:14.3454051Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-09-07T06:46:14.3457891Z adding 'torch/include/ATen/ops/zero.h' 2025-09-07T06:46:14.3461224Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3464321Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-09-07T06:46:14.3467318Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-09-07T06:46:14.3471186Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-09-07T06:46:14.3474423Z adding 'torch/include/ATen/ops/zero_native.h' 2025-09-07T06:46:14.3477537Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-09-07T06:46:14.3480990Z adding 'torch/include/ATen/ops/zeros.h' 2025-09-07T06:46:14.3484835Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3488520Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-09-07T06:46:14.3491904Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:46:14.3495124Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:46:14.3497968Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-09-07T06:46:14.3501352Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-09-07T06:46:14.3504559Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-09-07T06:46:14.3507806Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-09-07T06:46:14.3514776Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-09-07T06:46:14.3520525Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-09-07T06:46:14.3524912Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-09-07T06:46:14.3528035Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-09-07T06:46:14.3530810Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-09-07T06:46:14.3533504Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-09-07T06:46:14.3537518Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-09-07T06:46:14.3540826Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-09-07T06:46:14.3544808Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-09-07T06:46:14.3548410Z adding 'torch/include/THC/THCAtomics.cuh' 2025-09-07T06:46:14.3551101Z adding 'torch/include/THC/THCDeviceUtils.cuh' 2025-09-07T06:46:14.3560170Z adding 'torch/include/c10/core/Allocator.h' 2025-09-07T06:46:14.3566943Z adding 'torch/include/c10/core/AllocatorConfig.h' 2025-09-07T06:46:14.3571312Z adding 'torch/include/c10/core/AutogradState.h' 2025-09-07T06:46:14.3576014Z adding 'torch/include/c10/core/Backend.h' 2025-09-07T06:46:14.3579610Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-09-07T06:46:14.3583595Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-09-07T06:46:14.3587026Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-09-07T06:46:14.3590424Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-09-07T06:46:14.3595162Z adding 'torch/include/c10/core/Contiguity.h' 2025-09-07T06:46:14.3598649Z adding 'torch/include/c10/core/CopyBytes.h' 2025-09-07T06:46:14.3601612Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-09-07T06:46:14.3604684Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-09-07T06:46:14.3609058Z adding 'torch/include/c10/core/Device.h' 2025-09-07T06:46:14.3612339Z adding 'torch/include/c10/core/DeviceArray.h' 2025-09-07T06:46:14.3617612Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-09-07T06:46:14.3621106Z adding 'torch/include/c10/core/DeviceType.h' 2025-09-07T06:46:14.3634494Z adding 'torch/include/c10/core/DispatchKey.h' 2025-09-07T06:46:14.3651231Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-09-07T06:46:14.3656103Z adding 'torch/include/c10/core/DynamicCast.h' 2025-09-07T06:46:14.3660239Z adding 'torch/include/c10/core/Event.h' 2025-09-07T06:46:14.3664362Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-09-07T06:46:14.3667609Z adding 'torch/include/c10/core/GradMode.h' 2025-09-07T06:46:14.3672010Z adding 'torch/include/c10/core/InferenceMode.h' 2025-09-07T06:46:14.3675733Z adding 'torch/include/c10/core/Layout.h' 2025-09-07T06:46:14.3681258Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-09-07T06:46:14.3685079Z adding 'torch/include/c10/core/OptionalRef.h' 2025-09-07T06:46:14.3689333Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-09-07T06:46:14.3692610Z adding 'torch/include/c10/core/QEngine.h' 2025-09-07T06:46:14.3696507Z adding 'torch/include/c10/core/QScheme.h' 2025-09-07T06:46:14.3700326Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-09-07T06:46:14.3704515Z adding 'torch/include/c10/core/SafePyObject.h' 2025-09-07T06:46:14.3711415Z adding 'torch/include/c10/core/Scalar.h' 2025-09-07T06:46:14.3720295Z adding 'torch/include/c10/core/ScalarType.h' 2025-09-07T06:46:14.3724090Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-09-07T06:46:14.3729060Z adding 'torch/include/c10/core/Storage.h' 2025-09-07T06:46:14.3735351Z adding 'torch/include/c10/core/StorageImpl.h' 2025-09-07T06:46:14.3741055Z adding 'torch/include/c10/core/Stream.h' 2025-09-07T06:46:14.3746062Z adding 'torch/include/c10/core/StreamGuard.h' 2025-09-07T06:46:14.3750510Z adding 'torch/include/c10/core/SymBool.h' 2025-09-07T06:46:14.3754704Z adding 'torch/include/c10/core/SymFloat.h' 2025-09-07T06:46:14.3762675Z adding 'torch/include/c10/core/SymInt.h' 2025-09-07T06:46:14.3766693Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-09-07T06:46:14.3771614Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-09-07T06:46:14.3776508Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-09-07T06:46:14.3821972Z adding 'torch/include/c10/core/TensorImpl.h' 2025-09-07T06:46:14.3838247Z adding 'torch/include/c10/core/TensorOptions.h' 2025-09-07T06:46:14.3842058Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-09-07T06:46:14.3845870Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-09-07T06:46:14.3849077Z adding 'torch/include/c10/core/alignment.h' 2025-09-07T06:46:14.3853602Z adding 'torch/include/c10/core/thread_pool.h' 2025-09-07T06:46:14.3858214Z adding 'torch/include/c10/core/impl/COW.h' 2025-09-07T06:46:14.3862125Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-09-07T06:46:14.3871861Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-09-07T06:46:14.3877963Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-09-07T06:46:14.3882899Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-09-07T06:46:14.3888258Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-09-07T06:46:14.3898017Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-09-07T06:46:14.3904531Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-09-07T06:46:14.3911399Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-09-07T06:46:14.3916614Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-09-07T06:46:14.3922972Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-09-07T06:46:14.3926763Z adding 'torch/include/c10/core/impl/PyInterpreterHooks.h' 2025-09-07T06:46:14.3931658Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-09-07T06:46:14.3934899Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-09-07T06:46:14.3940019Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-09-07T06:46:14.3943895Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-09-07T06:46:14.3948151Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-09-07T06:46:14.3950514Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-09-07T06:46:14.3954777Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-09-07T06:46:14.3959527Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-09-07T06:46:14.3966857Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-09-07T06:46:14.3971381Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-09-07T06:46:14.3976599Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-09-07T06:46:14.3980617Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-09-07T06:46:14.3985329Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-09-07T06:46:14.3988975Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-09-07T06:46:14.3993977Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-09-07T06:46:14.3997512Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-09-07T06:46:14.4000947Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-09-07T06:46:14.4004126Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-09-07T06:46:14.4009739Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-09-07T06:46:14.4013681Z adding 'torch/include/c10/cuda/driver_api.h' 2025-09-07T06:46:14.4019390Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-09-07T06:46:14.4022466Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-09-07T06:46:14.4026216Z adding 'torch/include/c10/cuda/impl/cuda_cmake_macros.h' 2025-09-07T06:46:14.4029751Z adding 'torch/include/c10/macros/Export.h' 2025-09-07T06:46:14.4032314Z adding 'torch/include/c10/macros/Macros.h' 2025-09-07T06:46:14.4035201Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-09-07T06:46:14.4040631Z adding 'torch/include/c10/metal/atomic.h' 2025-09-07T06:46:14.4043822Z adding 'torch/include/c10/metal/common.h' 2025-09-07T06:46:14.4047613Z adding 'torch/include/c10/metal/expm1f.h' 2025-09-07T06:46:14.4060138Z adding 'torch/include/c10/metal/igamma.h' 2025-09-07T06:46:14.4067032Z adding 'torch/include/c10/metal/indexing.h' 2025-09-07T06:46:14.4071034Z adding 'torch/include/c10/metal/random.h' 2025-09-07T06:46:14.4076352Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-09-07T06:46:14.4092267Z adding 'torch/include/c10/metal/special_math.h' 2025-09-07T06:46:14.4097874Z adding 'torch/include/c10/metal/utils.h' 2025-09-07T06:46:14.4102903Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-09-07T06:46:14.4107103Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-09-07T06:46:14.4111453Z adding 'torch/include/c10/test/util/Macros.h' 2025-09-07T06:46:14.4116709Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-09-07T06:46:14.4123504Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-09-07T06:46:14.4130000Z adding 'torch/include/c10/util/AbortHandler.h' 2025-09-07T06:46:14.4134051Z adding 'torch/include/c10/util/AlignOf.h' 2025-09-07T06:46:14.4137929Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-09-07T06:46:14.4141783Z adding 'torch/include/c10/util/Array.h' 2025-09-07T06:46:14.4147174Z adding 'torch/include/c10/util/ArrayRef.h' 2025-09-07T06:46:14.4150376Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-09-07T06:46:14.4154725Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-09-07T06:46:14.4157605Z adding 'torch/include/c10/util/BFloat16.h' 2025-09-07T06:46:14.4160561Z adding 'torch/include/c10/util/Backtrace.h' 2025-09-07T06:46:14.4164209Z adding 'torch/include/c10/util/Bitset.h' 2025-09-07T06:46:14.4167687Z adding 'torch/include/c10/util/C++17.h' 2025-09-07T06:46:14.4171130Z adding 'torch/include/c10/util/CallOnce.h' 2025-09-07T06:46:14.4176057Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-09-07T06:46:14.4179697Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-09-07T06:46:14.4183262Z adding 'torch/include/c10/util/Deprecated.h' 2025-09-07T06:46:14.4186262Z adding 'torch/include/c10/util/DimVector.h' 2025-09-07T06:46:14.4189374Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-09-07T06:46:14.4194345Z adding 'torch/include/c10/util/Enumerate.h' 2025-09-07T06:46:14.4204315Z adding 'torch/include/c10/util/Exception.h' 2025-09-07T06:46:14.4208936Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-09-07T06:46:14.4212454Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-09-07T06:46:14.4215406Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-09-07T06:46:14.4220504Z adding 'torch/include/c10/util/Flags.h' 2025-09-07T06:46:14.4223691Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-09-07T06:46:14.4226375Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-09-07T06:46:14.4229119Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-09-07T06:46:14.4231747Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-09-07T06:46:14.4234252Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-09-07T06:46:14.4236858Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-09-07T06:46:14.4239448Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-09-07T06:46:14.4242524Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-09-07T06:46:14.4245445Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-09-07T06:46:14.4248427Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-09-07T06:46:14.4251372Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-09-07T06:46:14.4255208Z adding 'torch/include/c10/util/FunctionRef.h' 2025-09-07T06:46:14.4258494Z adding 'torch/include/c10/util/Gauge.h' 2025-09-07T06:46:14.4262560Z adding 'torch/include/c10/util/Half-inl.h' 2025-09-07T06:46:14.4265675Z adding 'torch/include/c10/util/Half.h' 2025-09-07T06:46:14.4269741Z adding 'torch/include/c10/util/IdWrapper.h' 2025-09-07T06:46:14.4274085Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-09-07T06:46:14.4277767Z adding 'torch/include/c10/util/Lazy.h' 2025-09-07T06:46:14.4283186Z adding 'torch/include/c10/util/LeftRight.h' 2025-09-07T06:46:14.4286984Z adding 'torch/include/c10/util/Load.h' 2025-09-07T06:46:14.4293685Z adding 'torch/include/c10/util/Logging.h' 2025-09-07T06:46:14.4297951Z adding 'torch/include/c10/util/MathConstants.h' 2025-09-07T06:46:14.4302574Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-09-07T06:46:14.4307985Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-09-07T06:46:14.4311972Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-09-07T06:46:14.4315300Z adding 'torch/include/c10/util/Optional.h' 2025-09-07T06:46:14.4320054Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-09-07T06:46:14.4323743Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-09-07T06:46:14.4329755Z adding 'torch/include/c10/util/Registry.h' 2025-09-07T06:46:14.4333377Z adding 'torch/include/c10/util/ScopeExit.h' 2025-09-07T06:46:14.4337370Z adding 'torch/include/c10/util/Semaphore.h' 2025-09-07T06:46:14.4341061Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-09-07T06:46:14.4359611Z adding 'torch/include/c10/util/SmallVector.h' 2025-09-07T06:46:14.4365903Z adding 'torch/include/c10/util/StringUtil.h' 2025-09-07T06:46:14.4369543Z adding 'torch/include/c10/util/Synchronized.h' 2025-09-07T06:46:14.4373942Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-09-07T06:46:14.4378115Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-09-07T06:46:14.4381289Z adding 'torch/include/c10/util/Type.h' 2025-09-07T06:46:14.4385905Z adding 'torch/include/c10/util/TypeCast.h' 2025-09-07T06:46:14.4390560Z adding 'torch/include/c10/util/TypeIndex.h' 2025-09-07T06:46:14.4397387Z adding 'torch/include/c10/util/TypeList.h' 2025-09-07T06:46:14.4400695Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-09-07T06:46:14.4405145Z adding 'torch/include/c10/util/TypeTraits.h' 2025-09-07T06:46:14.4408735Z adding 'torch/include/c10/util/Unicode.h' 2025-09-07T06:46:14.4412812Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-09-07T06:46:14.4416616Z adding 'torch/include/c10/util/Unroll.h' 2025-09-07T06:46:14.4420619Z adding 'torch/include/c10/util/WaitCounter.h' 2025-09-07T06:46:14.4425597Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-09-07T06:46:14.4431605Z adding 'torch/include/c10/util/accumulate.h' 2025-09-07T06:46:14.4435579Z adding 'torch/include/c10/util/bit_cast.h' 2025-09-07T06:46:14.4438387Z adding 'torch/include/c10/util/bits.h' 2025-09-07T06:46:14.4442362Z adding 'torch/include/c10/util/complex.h' 2025-09-07T06:46:14.4447351Z adding 'torch/include/c10/util/complex_math.h' 2025-09-07T06:46:14.4451825Z adding 'torch/include/c10/util/complex_utils.h' 2025-09-07T06:46:14.4454971Z adding 'torch/include/c10/util/copysign.h' 2025-09-07T06:46:14.4459142Z adding 'torch/include/c10/util/env.h' 2025-09-07T06:46:14.4462071Z adding 'torch/include/c10/util/error.h' 2025-09-07T06:46:14.4479762Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-09-07T06:46:14.4484733Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-09-07T06:46:14.4488292Z adding 'torch/include/c10/util/generic_math.h' 2025-09-07T06:46:14.4494519Z adding 'torch/include/c10/util/hash.h' 2025-09-07T06:46:14.4501038Z adding 'torch/include/c10/util/int128.h' 2025-09-07T06:46:14.4514872Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-09-07T06:46:14.4519489Z adding 'torch/include/c10/util/irange.h' 2025-09-07T06:46:14.4529849Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-09-07T06:46:14.4534239Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-09-07T06:46:14.4538955Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-09-07T06:46:14.4542273Z adding 'torch/include/c10/util/numa.h' 2025-09-07T06:46:14.4561252Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-09-07T06:46:14.4566370Z adding 'torch/include/c10/util/overflows.h' 2025-09-07T06:46:14.4569457Z adding 'torch/include/c10/util/overloaded.h' 2025-09-07T06:46:14.4572205Z adding 'torch/include/c10/util/python_stub.h' 2025-09-07T06:46:14.4575268Z adding 'torch/include/c10/util/qint32.h' 2025-09-07T06:46:14.4577985Z adding 'torch/include/c10/util/qint8.h' 2025-09-07T06:46:14.4580821Z adding 'torch/include/c10/util/quint2x4.h' 2025-09-07T06:46:14.4583453Z adding 'torch/include/c10/util/quint4x2.h' 2025-09-07T06:46:14.4585982Z adding 'torch/include/c10/util/quint8.h' 2025-09-07T06:46:14.4589697Z adding 'torch/include/c10/util/safe_numerics.h' 2025-09-07T06:46:14.4593523Z adding 'torch/include/c10/util/signal_handler.h' 2025-09-07T06:46:14.4602585Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-09-07T06:46:14.4606488Z adding 'torch/include/c10/util/ssize.h' 2025-09-07T06:46:14.4609737Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-09-07T06:46:14.4614076Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-09-07T06:46:14.4617148Z adding 'torch/include/c10/util/strides.h' 2025-09-07T06:46:14.4620077Z adding 'torch/include/c10/util/string_utils.h' 2025-09-07T06:46:14.4626725Z adding 'torch/include/c10/util/string_view.h' 2025-09-07T06:46:14.4636370Z adding 'torch/include/c10/util/strong_type.h' 2025-09-07T06:46:14.4640621Z adding 'torch/include/c10/util/tempfile.h' 2025-09-07T06:46:14.4643386Z adding 'torch/include/c10/util/thread_name.h' 2025-09-07T06:46:14.4652428Z adding 'torch/include/c10/util/typeid.h' 2025-09-07T06:46:14.4656079Z adding 'torch/include/c10/util/win32-headers.h' 2025-09-07T06:46:14.4660199Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-09-07T06:46:14.4665231Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-09-07T06:46:14.4668569Z adding 'torch/include/c10/xpu/XPUException.h' 2025-09-07T06:46:14.4671704Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-09-07T06:46:14.4674785Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-09-07T06:46:14.4679322Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-09-07T06:46:14.4684618Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-09-07T06:46:14.4689095Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-09-07T06:46:14.4693664Z adding 'torch/include/caffe2/core/common.h' 2025-09-07T06:46:14.4697072Z adding 'torch/include/caffe2/core/macros.h' 2025-09-07T06:46:14.4700909Z adding 'torch/include/caffe2/core/timer.h' 2025-09-07T06:46:14.4705849Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-09-07T06:46:14.4709953Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-09-07T06:46:14.4713460Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-09-07T06:46:14.4754947Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-09-07T06:46:14.4760372Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-09-07T06:46:14.4764139Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-09-07T06:46:14.4770145Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-09-07T06:46:14.4773589Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-09-07T06:46:14.4777520Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-09-07T06:46:14.4782525Z adding 'torch/include/caffe2/serialize/versions.h' 2025-09-07T06:46:14.4787829Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-09-07T06:46:14.4791155Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-09-07T06:46:14.4794969Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-09-07T06:46:14.4799954Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-09-07T06:46:14.4803181Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-09-07T06:46:14.4809861Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-09-07T06:46:14.4814133Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-09-07T06:46:14.4818656Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-09-07T06:46:14.4821960Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-09-07T06:46:14.4828159Z adding 'torch/include/fmt/args.h' 2025-09-07T06:46:14.4869246Z adding 'torch/include/fmt/base.h' 2025-09-07T06:46:14.4898183Z adding 'torch/include/fmt/chrono.h' 2025-09-07T06:46:14.4910360Z adding 'torch/include/fmt/color.h' 2025-09-07T06:46:14.4918617Z adding 'torch/include/fmt/compile.h' 2025-09-07T06:46:14.4923557Z adding 'torch/include/fmt/core.h' 2025-09-07T06:46:14.4961857Z adding 'torch/include/fmt/format-inl.h' 2025-09-07T06:46:14.5022791Z adding 'torch/include/fmt/format.h' 2025-09-07T06:46:14.5033810Z adding 'torch/include/fmt/os.h' 2025-09-07T06:46:14.5037988Z adding 'torch/include/fmt/ostream.h' 2025-09-07T06:46:14.5046287Z adding 'torch/include/fmt/printf.h' 2025-09-07T06:46:14.5056019Z adding 'torch/include/fmt/ranges.h' 2025-09-07T06:46:14.5064638Z adding 'torch/include/fmt/std.h' 2025-09-07T06:46:14.5070802Z adding 'torch/include/fmt/xchar.h' 2025-09-07T06:46:14.5075690Z adding 'torch/include/fp16/bitcasts.h' 2025-09-07T06:46:14.5082810Z adding 'torch/include/fp16/fp16.h' 2025-09-07T06:46:14.5087399Z adding 'torch/include/fp16/psimd.h' 2025-09-07T06:46:14.5094066Z adding 'torch/include/google/protobuf/any.h' 2025-09-07T06:46:14.5099841Z adding 'torch/include/google/protobuf/any.pb.h' 2025-09-07T06:46:14.5111957Z adding 'torch/include/google/protobuf/api.pb.h' 2025-09-07T06:46:14.5125090Z adding 'torch/include/google/protobuf/arena.h' 2025-09-07T06:46:14.5132668Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-09-07T06:46:14.5139325Z adding 'torch/include/google/protobuf/arenastring.h' 2025-09-07T06:46:14.5172125Z adding 'torch/include/google/protobuf/descriptor.h' 2025-09-07T06:46:14.5259585Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-09-07T06:46:14.5281219Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-09-07T06:46:14.5286929Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-09-07T06:46:14.5293213Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-09-07T06:46:14.5298311Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-09-07T06:46:14.5322821Z adding 'torch/include/google/protobuf/extension_set.h' 2025-09-07T06:46:14.5330394Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-09-07T06:46:14.5336255Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-09-07T06:46:14.5341188Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-09-07T06:46:14.5345505Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-09-07T06:46:14.5352461Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-09-07T06:46:14.5359396Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-09-07T06:46:14.5365497Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-09-07T06:46:14.5370012Z adding 'torch/include/google/protobuf/has_bits.h' 2025-09-07T06:46:14.5374807Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-09-07T06:46:14.5380222Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-09-07T06:46:14.5399634Z adding 'torch/include/google/protobuf/map.h' 2025-09-07T06:46:14.5406117Z adding 'torch/include/google/protobuf/map_entry.h' 2025-09-07T06:46:14.5416668Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-09-07T06:46:14.5430710Z adding 'torch/include/google/protobuf/map_field.h' 2025-09-07T06:46:14.5440764Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-09-07T06:46:14.5446495Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-09-07T06:46:14.5457527Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-09-07T06:46:14.5481865Z adding 'torch/include/google/protobuf/message.h' 2025-09-07T06:46:14.5494689Z adding 'torch/include/google/protobuf/message_lite.h' 2025-09-07T06:46:14.5498768Z adding 'torch/include/google/protobuf/metadata.h' 2025-09-07T06:46:14.5503794Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-09-07T06:46:14.5515109Z adding 'torch/include/google/protobuf/parse_context.h' 2025-09-07T06:46:14.5519373Z adding 'torch/include/google/protobuf/port.h' 2025-09-07T06:46:14.5528010Z adding 'torch/include/google/protobuf/reflection.h' 2025-09-07T06:46:14.5532378Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-09-07T06:46:14.5567159Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-09-07T06:46:14.5576067Z adding 'torch/include/google/protobuf/service.h' 2025-09-07T06:46:14.5582065Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-09-07T06:46:14.5593170Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-09-07T06:46:14.5605079Z adding 'torch/include/google/protobuf/text_format.h' 2025-09-07T06:46:14.5610478Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-09-07T06:46:14.5629669Z adding 'torch/include/google/protobuf/type.pb.h' 2025-09-07T06:46:14.5638283Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-09-07T06:46:14.5645489Z adding 'torch/include/google/protobuf/wire_format.h' 2025-09-07T06:46:14.5667051Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-09-07T06:46:14.5679536Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-09-07T06:46:14.5687120Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-09-07T06:46:14.5696477Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-09-07T06:46:14.5703957Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-09-07T06:46:14.5715537Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-09-07T06:46:14.5720164Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-09-07T06:46:14.5735016Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-09-07T06:46:14.5741594Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-09-07T06:46:14.5746268Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-09-07T06:46:14.5750311Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-09-07T06:46:14.5754757Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-09-07T06:46:14.5758617Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-09-07T06:46:14.5765243Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-09-07T06:46:14.5769122Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-09-07T06:46:14.5773593Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-09-07T06:46:14.5779764Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-09-07T06:46:14.5785231Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-09-07T06:46:14.5790619Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-09-07T06:46:14.5795071Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-09-07T06:46:14.5822995Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-09-07T06:46:14.5829123Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-09-07T06:46:14.5833534Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-09-07T06:46:14.5840826Z adding 'torch/include/google/protobuf/io/printer.h' 2025-09-07T06:46:14.5844746Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-09-07T06:46:14.5852660Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-09-07T06:46:14.5858605Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-09-07T06:46:14.5864467Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-09-07T06:46:14.5871832Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-09-07T06:46:14.5878913Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-09-07T06:46:14.5885250Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-09-07T06:46:14.5890787Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-09-07T06:46:14.5896342Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-09-07T06:46:14.5901624Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-09-07T06:46:14.5906247Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-09-07T06:46:14.5911773Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-09-07T06:46:14.5916717Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-09-07T06:46:14.5928859Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-09-07T06:46:14.5934421Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-09-07T06:46:14.5940037Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-09-07T06:46:14.5946313Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-09-07T06:46:14.5954940Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-09-07T06:46:14.5961476Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-09-07T06:46:14.5967498Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-09-07T06:46:14.5978991Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-09-07T06:46:14.5995456Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-09-07T06:46:14.6001465Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-09-07T06:46:14.6007821Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-09-07T06:46:14.6013198Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-09-07T06:46:14.6019806Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-09-07T06:46:14.6024852Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-09-07T06:46:14.6043645Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-09-07T06:46:14.6050230Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-09-07T06:46:14.6054175Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-09-07T06:46:14.6057752Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-09-07T06:46:14.6063159Z adding 'torch/include/kineto/AbstractConfig.h' 2025-09-07T06:46:14.6067237Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-09-07T06:46:14.6070334Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-09-07T06:46:14.6074512Z adding 'torch/include/kineto/ActivityType.h' 2025-09-07T06:46:14.6077624Z adding 'torch/include/kineto/ClientInterface.h' 2025-09-07T06:46:14.6084740Z adding 'torch/include/kineto/Config.h' 2025-09-07T06:46:14.6089682Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-09-07T06:46:14.6093800Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-09-07T06:46:14.6097226Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-09-07T06:46:14.6100599Z adding 'torch/include/kineto/ITraceActivity.h' 2025-09-07T06:46:14.6103623Z adding 'torch/include/kineto/LoggingAPI.h' 2025-09-07T06:46:14.6106644Z adding 'torch/include/kineto/ThreadUtil.h' 2025-09-07T06:46:14.6109698Z adding 'torch/include/kineto/TraceSpan.h' 2025-09-07T06:46:14.6113371Z adding 'torch/include/kineto/libkineto.h' 2025-09-07T06:46:14.6116964Z adding 'torch/include/kineto/output_base.h' 2025-09-07T06:46:14.6119938Z adding 'torch/include/kineto/time_since_epoch.h' 2025-09-07T06:46:14.6129720Z adding 'torch/include/legacy/ittnotify.h' 2025-09-07T06:46:14.6135003Z adding 'torch/include/mimalloc-2.2/mimalloc-new-delete.h' 2025-09-07T06:46:14.6138569Z adding 'torch/include/mimalloc-2.2/mimalloc-override.h' 2025-09-07T06:46:14.6142405Z adding 'torch/include/mimalloc-2.2/mimalloc-stats.h' 2025-09-07T06:46:14.6154101Z adding 'torch/include/mimalloc-2.2/mimalloc.h' 2025-09-07T06:46:14.6192514Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-09-07T06:46:14.6311474Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-09-07T06:46:14.6331697Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-09-07T06:46:14.6339252Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-09-07T06:46:14.6344758Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-09-07T06:46:14.6349375Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-09-07T06:46:14.6353261Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-09-07T06:46:14.6364212Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-09-07T06:46:14.6387638Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-09-07T06:46:14.6393791Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-09-07T06:46:14.6398586Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-09-07T06:46:14.6402496Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-09-07T06:46:14.6407322Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-09-07T06:46:14.6414019Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-09-07T06:46:14.6420072Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-09-07T06:46:14.6427380Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-09-07T06:46:14.6432902Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-09-07T06:46:14.6439574Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-09-07T06:46:14.6448650Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-09-07T06:46:14.6454234Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-09-07T06:46:14.6459268Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-09-07T06:46:14.6463535Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-09-07T06:46:14.6467941Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-09-07T06:46:14.6497034Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-09-07T06:46:14.6504961Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-09-07T06:46:14.6511677Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-09-07T06:46:14.6515578Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-09-07T06:46:14.6518721Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-09-07T06:46:14.6521966Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-09-07T06:46:14.6532263Z adding 'torch/include/pybind11/attr.h' 2025-09-07T06:46:14.6538315Z adding 'torch/include/pybind11/buffer_info.h' 2025-09-07T06:46:14.6567621Z adding 'torch/include/pybind11/cast.h' 2025-09-07T06:46:14.6574618Z adding 'torch/include/pybind11/chrono.h' 2025-09-07T06:46:14.6577671Z adding 'torch/include/pybind11/common.h' 2025-09-07T06:46:14.6580714Z adding 'torch/include/pybind11/complex.h' 2025-09-07T06:46:14.6584645Z adding 'torch/include/pybind11/critical_section.h' 2025-09-07T06:46:14.6587541Z adding 'torch/include/pybind11/eigen.h' 2025-09-07T06:46:14.6593308Z adding 'torch/include/pybind11/embed.h' 2025-09-07T06:46:14.6597406Z adding 'torch/include/pybind11/eval.h' 2025-09-07T06:46:14.6602112Z adding 'torch/include/pybind11/functional.h' 2025-09-07T06:46:14.6606609Z adding 'torch/include/pybind11/gil.h' 2025-09-07T06:46:14.6610685Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-09-07T06:46:14.6613843Z adding 'torch/include/pybind11/gil_simple.h' 2025-09-07T06:46:14.6618751Z adding 'torch/include/pybind11/iostream.h' 2025-09-07T06:46:14.6623019Z adding 'torch/include/pybind11/native_enum.h' 2025-09-07T06:46:14.6651994Z adding 'torch/include/pybind11/numpy.h' 2025-09-07T06:46:14.6658503Z adding 'torch/include/pybind11/operators.h' 2025-09-07T06:46:14.6662420Z adding 'torch/include/pybind11/options.h' 2025-09-07T06:46:14.6713004Z adding 'torch/include/pybind11/pybind11.h' 2025-09-07T06:46:14.6750984Z adding 'torch/include/pybind11/pytypes.h' 2025-09-07T06:46:14.6761374Z adding 'torch/include/pybind11/stl.h' 2025-09-07T06:46:14.6771665Z adding 'torch/include/pybind11/stl_bind.h' 2025-09-07T06:46:14.6778128Z adding 'torch/include/pybind11/subinterpreter.h' 2025-09-07T06:46:14.6781933Z adding 'torch/include/pybind11/trampoline_self_life_support.h' 2025-09-07T06:46:14.6785396Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-09-07T06:46:14.6789744Z adding 'torch/include/pybind11/typing.h' 2025-09-07T06:46:14.6793332Z adding 'torch/include/pybind11/warnings.h' 2025-09-07T06:46:14.6798218Z adding 'torch/include/pybind11/conduit/pybind11_conduit_v1.h' 2025-09-07T06:46:14.6802016Z adding 'torch/include/pybind11/conduit/pybind11_platform_abi_id.h' 2025-09-07T06:46:14.6805788Z adding 'torch/include/pybind11/conduit/wrap_include_python_h.h' 2025-09-07T06:46:14.6817935Z adding 'torch/include/pybind11/detail/class.h' 2025-09-07T06:46:14.6839328Z adding 'torch/include/pybind11/detail/common.h' 2025-09-07T06:46:14.6844972Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-09-07T06:46:14.6849865Z adding 'torch/include/pybind11/detail/descr.h' 2025-09-07T06:46:14.6853798Z adding 'torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h' 2025-09-07T06:46:14.6857413Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-09-07T06:46:14.6862522Z adding 'torch/include/pybind11/detail/function_record_pyobject.h' 2025-09-07T06:46:14.6871940Z adding 'torch/include/pybind11/detail/init.h' 2025-09-07T06:46:14.6885168Z adding 'torch/include/pybind11/detail/internals.h' 2025-09-07T06:46:14.6891030Z adding 'torch/include/pybind11/detail/native_enum_data.h' 2025-09-07T06:46:14.6895190Z adding 'torch/include/pybind11/detail/pybind11_namespace_macros.h' 2025-09-07T06:46:14.6901881Z adding 'torch/include/pybind11/detail/struct_smart_holder.h' 2025-09-07T06:46:14.6926901Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-09-07T06:46:14.6932197Z adding 'torch/include/pybind11/detail/typeid.h' 2025-09-07T06:46:14.6936942Z adding 'torch/include/pybind11/detail/using_smart_holder.h' 2025-09-07T06:46:14.6941103Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-09-07T06:46:14.6946270Z adding 'torch/include/pybind11/eigen/common.h' 2025-09-07T06:46:14.6962816Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-09-07T06:46:14.6973449Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-09-07T06:46:14.6981084Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-09-07T06:46:14.6994068Z adding 'torch/include/torch/custom_class.h' 2025-09-07T06:46:14.6999920Z adding 'torch/include/torch/custom_class_detail.h' 2025-09-07T06:46:14.7003624Z adding 'torch/include/torch/extension.h' 2025-09-07T06:46:14.7020225Z adding 'torch/include/torch/library.h' 2025-09-07T06:46:14.7024569Z adding 'torch/include/torch/script.h' 2025-09-07T06:46:14.7030098Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-09-07T06:46:14.7033091Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-09-07T06:46:14.7035987Z adding 'torch/include/torch/csrc/Device.h' 2025-09-07T06:46:14.7038892Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-09-07T06:46:14.7042428Z adding 'torch/include/torch/csrc/Dtype.h' 2025-09-07T06:46:14.7045621Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-09-07T06:46:14.7048822Z adding 'torch/include/torch/csrc/Event.h' 2025-09-07T06:46:14.7055159Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-09-07T06:46:14.7058259Z adding 'torch/include/torch/csrc/Export.h' 2025-09-07T06:46:14.7061320Z adding 'torch/include/torch/csrc/Generator.h' 2025-09-07T06:46:14.7064478Z adding 'torch/include/torch/csrc/Layout.h' 2025-09-07T06:46:14.7067486Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-09-07T06:46:14.7070175Z adding 'torch/include/torch/csrc/Module.h' 2025-09-07T06:46:14.7073834Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-09-07T06:46:14.7076566Z adding 'torch/include/torch/csrc/PyInterpreterHooks.h' 2025-09-07T06:46:14.7079437Z adding 'torch/include/torch/csrc/QScheme.h' 2025-09-07T06:46:14.7082295Z adding 'torch/include/torch/csrc/Size.h' 2025-09-07T06:46:14.7085972Z adding 'torch/include/torch/csrc/Storage.h' 2025-09-07T06:46:14.7088853Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-09-07T06:46:14.7091627Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-09-07T06:46:14.7094546Z adding 'torch/include/torch/csrc/Stream.h' 2025-09-07T06:46:14.7097381Z adding 'torch/include/torch/csrc/THConcat.h' 2025-09-07T06:46:14.7100312Z adding 'torch/include/torch/csrc/THP.h' 2025-09-07T06:46:14.7103342Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-09-07T06:46:14.7106121Z adding 'torch/include/torch/csrc/Types.h' 2025-09-07T06:46:14.7109232Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-09-07T06:46:14.7112044Z adding 'torch/include/torch/csrc/itt.h' 2025-09-07T06:46:14.7114855Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-09-07T06:46:14.7117642Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-09-07T06:46:14.7120569Z adding 'torch/include/torch/csrc/python_headers.h' 2025-09-07T06:46:14.7123441Z adding 'torch/include/torch/csrc/serialization.h' 2025-09-07T06:46:14.7127794Z adding 'torch/include/torch/csrc/utils.h' 2025-09-07T06:46:14.7133283Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-09-07T06:46:14.7136426Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-09-07T06:46:14.7139343Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-09-07T06:46:14.7142291Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-09-07T06:46:14.7145309Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-09-07T06:46:14.7149504Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-09-07T06:46:14.7153836Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-09-07T06:46:14.7158333Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-09-07T06:46:14.7162030Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-09-07T06:46:14.7165184Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-09-07T06:46:14.7168337Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-09-07T06:46:14.7171839Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-09-07T06:46:14.7174746Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-09-07T06:46:14.7177570Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-09-07T06:46:14.7184017Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-09-07T06:46:14.7189329Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-09-07T06:46:14.7193607Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-09-07T06:46:14.7196472Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-09-07T06:46:14.7203647Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-09-07T06:46:14.7207448Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-09-07T06:46:14.7210817Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-09-07T06:46:14.7214590Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-09-07T06:46:14.7217680Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-09-07T06:46:14.7220636Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-09-07T06:46:14.7225097Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-09-07T06:46:14.7228588Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-09-07T06:46:14.7231478Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-09-07T06:46:14.7234664Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-09-07T06:46:14.7238749Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-09-07T06:46:14.7242412Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-09-07T06:46:14.7245344Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-09-07T06:46:14.7248547Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-09-07T06:46:14.7254501Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-09-07T06:46:14.7258338Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-09-07T06:46:14.7262053Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-09-07T06:46:14.7266771Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-09-07T06:46:14.7275510Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-09-07T06:46:14.7279849Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-09-07T06:46:14.7283222Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-09-07T06:46:14.7286728Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-09-07T06:46:14.7290228Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-09-07T06:46:14.7293410Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-09-07T06:46:14.7297897Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-09-07T06:46:14.7301666Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-09-07T06:46:14.7305945Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-09-07T06:46:14.7310147Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-09-07T06:46:14.7313294Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-09-07T06:46:14.7316902Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-09-07T06:46:14.7320291Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-09-07T06:46:14.7323464Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-09-07T06:46:14.7326501Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-09-07T06:46:14.7329829Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-09-07T06:46:14.7333918Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-09-07T06:46:14.7337154Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-09-07T06:46:14.7340385Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-09-07T06:46:14.7344383Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-09-07T06:46:14.7348326Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-09-07T06:46:14.7355895Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-09-07T06:46:14.7359832Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-09-07T06:46:14.7364466Z adding 'torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h' 2025-09-07T06:46:14.7369909Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-09-07T06:46:14.7373483Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-09-07T06:46:14.7377396Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-09-07T06:46:14.7387921Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-09-07T06:46:14.7392196Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-09-07T06:46:14.7395304Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-09-07T06:46:14.7399547Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-09-07T06:46:14.7404723Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-09-07T06:46:14.7407945Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-09-07T06:46:14.7417784Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-09-07T06:46:14.7422784Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-09-07T06:46:14.7426591Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-09-07T06:46:14.7431856Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-09-07T06:46:14.7436149Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-09-07T06:46:14.7441990Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-09-07T06:46:14.7447643Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-09-07T06:46:14.7453170Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-09-07T06:46:14.7456735Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-09-07T06:46:14.7466459Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-09-07T06:46:14.7474262Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-09-07T06:46:14.7479568Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-09-07T06:46:14.7484254Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-09-07T06:46:14.7492140Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-09-07T06:46:14.7498467Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-09-07T06:46:14.7503143Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-09-07T06:46:14.7507816Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-09-07T06:46:14.7514868Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-09-07T06:46:14.7519792Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-09-07T06:46:14.7524182Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-09-07T06:46:14.7528363Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-09-07T06:46:14.7541345Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-09-07T06:46:14.7545443Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-09-07T06:46:14.7549429Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-09-07T06:46:14.7553584Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-09-07T06:46:14.7557198Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-09-07T06:46:14.7561809Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-09-07T06:46:14.7566151Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-09-07T06:46:14.7573766Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-09-07T06:46:14.7578603Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-09-07T06:46:14.7583477Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-09-07T06:46:14.7587443Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-09-07T06:46:14.7594347Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-09-07T06:46:14.7600109Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-09-07T06:46:14.7604702Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-09-07T06:46:14.7608822Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-09-07T06:46:14.7613096Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-09-07T06:46:14.7616604Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-09-07T06:46:14.7619903Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-09-07T06:46:14.7627245Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-09-07T06:46:14.7631808Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-09-07T06:46:14.7635837Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-09-07T06:46:14.7639860Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-09-07T06:46:14.7644768Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-09-07T06:46:14.7650041Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-09-07T06:46:14.7653822Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-09-07T06:46:14.7657765Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-09-07T06:46:14.7661988Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-09-07T06:46:14.7672837Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-09-07T06:46:14.7680337Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-09-07T06:46:14.7684038Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-09-07T06:46:14.7687548Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-09-07T06:46:14.7692103Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-09-07T06:46:14.7695802Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-09-07T06:46:14.7699223Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-09-07T06:46:14.7703896Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-09-07T06:46:14.7707652Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-09-07T06:46:14.7711142Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-09-07T06:46:14.7714679Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-09-07T06:46:14.7721550Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-09-07T06:46:14.7726121Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-09-07T06:46:14.7730232Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-09-07T06:46:14.7733720Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-09-07T06:46:14.7738884Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-09-07T06:46:14.7743681Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-09-07T06:46:14.7747952Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-09-07T06:46:14.7751506Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-09-07T06:46:14.7754835Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-09-07T06:46:14.7758662Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-09-07T06:46:14.7762035Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-09-07T06:46:14.7768779Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-09-07T06:46:14.7774205Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-09-07T06:46:14.7777967Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-09-07T06:46:14.7784225Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-09-07T06:46:14.7789123Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-09-07T06:46:14.7792808Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-09-07T06:46:14.7796408Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-09-07T06:46:14.7800200Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-09-07T06:46:14.7804931Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-09-07T06:46:14.7808789Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-09-07T06:46:14.7814177Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-09-07T06:46:14.7817973Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-09-07T06:46:14.7822322Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-09-07T06:46:14.7825905Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-09-07T06:46:14.7828912Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-09-07T06:46:14.7832607Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-09-07T06:46:14.7836267Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-09-07T06:46:14.7840024Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-09-07T06:46:14.7843663Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-09-07T06:46:14.7847394Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-09-07T06:46:14.7859066Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-09-07T06:46:14.7862680Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-09-07T06:46:14.7869035Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-09-07T06:46:14.7872704Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-09-07T06:46:14.7876830Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-09-07T06:46:14.7880251Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-09-07T06:46:14.7883202Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-09-07T06:46:14.7892096Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-09-07T06:46:14.7895895Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-09-07T06:46:14.7901664Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-09-07T06:46:14.7907559Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-09-07T06:46:14.7920738Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-09-07T06:46:14.7924697Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-09-07T06:46:14.7927649Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-09-07T06:46:14.7933104Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-09-07T06:46:14.7936800Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-09-07T06:46:14.7940381Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-09-07T06:46:14.7943837Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-09-07T06:46:14.7946647Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-09-07T06:46:14.7952332Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-09-07T06:46:14.7958270Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-09-07T06:46:14.7961462Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-09-07T06:46:14.7964810Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-09-07T06:46:14.7967571Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-09-07T06:46:14.7971253Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-09-07T06:46:14.7974511Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-09-07T06:46:14.7977329Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-09-07T06:46:14.7980171Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-09-07T06:46:14.7984427Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-09-07T06:46:14.7987745Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-09-07T06:46:14.7990751Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-09-07T06:46:14.7993564Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-09-07T06:46:14.7996345Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-09-07T06:46:14.7999378Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-09-07T06:46:14.8002476Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-09-07T06:46:14.8005306Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-09-07T06:46:14.8008080Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-09-07T06:46:14.8011046Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-09-07T06:46:14.8014661Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-09-07T06:46:14.8018302Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-09-07T06:46:14.8021432Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-09-07T06:46:14.8025707Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-09-07T06:46:14.8028878Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-09-07T06:46:14.8031716Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-09-07T06:46:14.8048123Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-09-07T06:46:14.8053222Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-09-07T06:46:14.8061857Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-09-07T06:46:14.8066485Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-09-07T06:46:14.8069791Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-09-07T06:46:14.8074278Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-09-07T06:46:14.8079439Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-09-07T06:46:14.8085261Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-09-07T06:46:14.8151042Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-09-07T06:46:14.8168995Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-09-07T06:46:14.8177083Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-09-07T06:46:14.8182019Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-09-07T06:46:14.8186653Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-09-07T06:46:14.8196962Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-09-07T06:46:14.8203687Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-09-07T06:46:14.8207993Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-09-07T06:46:14.8212456Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-09-07T06:46:14.8216149Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-09-07T06:46:14.8220006Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-09-07T06:46:14.8224727Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-09-07T06:46:14.8229856Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-09-07T06:46:14.8236413Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-09-07T06:46:14.8240547Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-09-07T06:46:14.8244068Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-09-07T06:46:14.8248375Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-09-07T06:46:14.8252209Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-09-07T06:46:14.8255659Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-09-07T06:46:14.8259874Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-09-07T06:46:14.8263469Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-09-07T06:46:14.8267228Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-09-07T06:46:14.8272496Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-09-07T06:46:14.8276555Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-09-07T06:46:14.8279867Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-09-07T06:46:14.8283668Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-09-07T06:46:14.8290193Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-09-07T06:46:14.8293429Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-09-07T06:46:14.8297430Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-09-07T06:46:14.8303713Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-09-07T06:46:14.8309174Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-09-07T06:46:14.8315683Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-09-07T06:46:14.8320629Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-09-07T06:46:14.8324245Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-09-07T06:46:14.8329269Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-09-07T06:46:14.8333060Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-09-07T06:46:14.8336318Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-09-07T06:46:14.8340284Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-09-07T06:46:14.8343754Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-09-07T06:46:14.8348123Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-09-07T06:46:14.8352299Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-09-07T06:46:14.8356009Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-09-07T06:46:14.8359899Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-09-07T06:46:14.8363670Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-09-07T06:46:14.8371821Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-09-07T06:46:14.8376069Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-09-07T06:46:14.8380461Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-09-07T06:46:14.8384710Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-09-07T06:46:14.8390823Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-09-07T06:46:14.8399223Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-09-07T06:46:14.8403498Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-09-07T06:46:14.8407250Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-09-07T06:46:14.8410404Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-09-07T06:46:14.8414426Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-09-07T06:46:14.8421830Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-09-07T06:46:14.8425957Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-09-07T06:46:14.8430566Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-09-07T06:46:14.8434469Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-09-07T06:46:14.8448577Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-09-07T06:46:14.8460334Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-09-07T06:46:14.8471825Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-09-07T06:46:14.8477803Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-09-07T06:46:14.8501978Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-09-07T06:46:14.8508901Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-09-07T06:46:14.8513241Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-09-07T06:46:14.8519105Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-09-07T06:46:14.8523065Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-09-07T06:46:14.8527006Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-09-07T06:46:14.8531415Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-09-07T06:46:14.8535077Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-09-07T06:46:14.8540305Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-09-07T06:46:14.8544848Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-09-07T06:46:14.8549464Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-09-07T06:46:14.8553792Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-09-07T06:46:14.8557214Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-09-07T06:46:14.8565660Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-09-07T06:46:14.8569441Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-09-07T06:46:14.8574412Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-09-07T06:46:14.8577694Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-09-07T06:46:14.8581835Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-09-07T06:46:14.8585202Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-09-07T06:46:14.8588635Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-09-07T06:46:14.8591902Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-09-07T06:46:14.8596039Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-09-07T06:46:14.8600960Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-09-07T06:46:14.8604973Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-09-07T06:46:14.8608592Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-09-07T06:46:14.8620111Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-09-07T06:46:14.8624507Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-09-07T06:46:14.8628068Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-09-07T06:46:14.8631607Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-09-07T06:46:14.8634894Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-09-07T06:46:14.8639384Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-09-07T06:46:14.8642740Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-09-07T06:46:14.8647172Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-09-07T06:46:14.8650498Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-09-07T06:46:14.8655015Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-09-07T06:46:14.8658018Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-09-07T06:46:14.8660843Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-09-07T06:46:14.8665037Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-09-07T06:46:14.8668170Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-09-07T06:46:14.8671524Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-09-07T06:46:14.8678403Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-09-07T06:46:14.8682193Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-09-07T06:46:14.8685629Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-09-07T06:46:14.8689460Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-09-07T06:46:14.8692857Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-09-07T06:46:14.8697866Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-09-07T06:46:14.8701834Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-09-07T06:46:14.8707648Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-09-07T06:46:14.8947541Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-09-07T06:46:14.8954293Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-09-07T06:46:14.8959606Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-09-07T06:46:14.8965445Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-09-07T06:46:14.8970538Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-09-07T06:46:14.8975346Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-09-07T06:46:14.8980056Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-09-07T06:46:14.8984503Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-09-07T06:46:14.8988457Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-09-07T06:46:14.8992616Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-09-07T06:46:14.8996580Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-09-07T06:46:14.9003342Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-09-07T06:46:14.9007727Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-09-07T06:46:14.9016168Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-09-07T06:46:14.9025309Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-09-07T06:46:14.9029660Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-09-07T06:46:14.9033354Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-09-07T06:46:14.9036931Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-09-07T06:46:14.9040151Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-09-07T06:46:14.9048070Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-09-07T06:46:14.9052669Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-09-07T06:46:14.9056995Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-09-07T06:46:14.9060470Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-09-07T06:46:14.9064193Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-09-07T06:46:14.9067591Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-09-07T06:46:14.9071477Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-09-07T06:46:14.9076172Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-09-07T06:46:14.9080662Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-09-07T06:46:14.9085118Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-09-07T06:46:14.9090026Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-09-07T06:46:14.9093176Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-09-07T06:46:14.9098476Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-09-07T06:46:14.9116845Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-09-07T06:46:14.9121119Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-09-07T06:46:14.9124394Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-09-07T06:46:14.9128226Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-09-07T06:46:14.9132122Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-09-07T06:46:14.9135578Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-09-07T06:46:14.9138637Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-09-07T06:46:14.9143316Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-09-07T06:46:14.9147315Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-09-07T06:46:14.9151156Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-09-07T06:46:14.9154367Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-09-07T06:46:14.9157473Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-09-07T06:46:14.9160516Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-09-07T06:46:14.9164534Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-09-07T06:46:14.9168419Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-09-07T06:46:14.9171497Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-09-07T06:46:14.9175716Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-09-07T06:46:14.9180202Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-09-07T06:46:14.9183989Z adding 'torch/include/torch/csrc/fx/node.h' 2025-09-07T06:46:14.9188551Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-09-07T06:46:14.9201497Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-09-07T06:46:14.9205724Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-09-07T06:46:14.9208767Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-09-07T06:46:14.9213976Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-09-07T06:46:14.9218722Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-09-07T06:46:14.9222863Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-09-07T06:46:14.9225988Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-09-07T06:46:14.9228805Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-09-07T06:46:14.9231590Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-09-07T06:46:14.9234811Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-09-07T06:46:14.9237606Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-09-07T06:46:14.9241770Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-09-07T06:46:14.9244590Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-09-07T06:46:14.9249589Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-09-07T06:46:14.9252733Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-09-07T06:46:14.9255998Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-09-07T06:46:14.9259154Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-09-07T06:46:14.9262482Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-09-07T06:46:14.9265669Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-09-07T06:46:14.9270782Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-09-07T06:46:14.9274009Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-09-07T06:46:14.9277449Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-09-07T06:46:14.9282119Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-09-07T06:46:14.9286327Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-09-07T06:46:14.9289775Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-09-07T06:46:14.9300074Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-09-07T06:46:14.9310244Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-09-07T06:46:14.9314713Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-09-07T06:46:14.9319447Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-09-07T06:46:14.9323205Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-09-07T06:46:14.9328482Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-09-07T06:46:14.9332134Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-09-07T06:46:14.9335389Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-09-07T06:46:14.9339287Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-09-07T06:46:14.9343258Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-09-07T06:46:14.9346455Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-09-07T06:46:14.9349609Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-09-07T06:46:14.9353923Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-09-07T06:46:14.9358390Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-09-07T06:46:14.9366156Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-09-07T06:46:14.9370544Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-09-07T06:46:14.9374427Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-09-07T06:46:14.9377698Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-09-07T06:46:14.9381324Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-09-07T06:46:14.9385694Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h' 2025-09-07T06:46:14.9392405Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-09-07T06:46:14.9400756Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-09-07T06:46:14.9407308Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-09-07T06:46:14.9412313Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-09-07T06:46:14.9416890Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-09-07T06:46:14.9420274Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-09-07T06:46:14.9423242Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-09-07T06:46:14.9426018Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-09-07T06:46:14.9428747Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-09-07T06:46:14.9431572Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-09-07T06:46:14.9435094Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-09-07T06:46:14.9437876Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-09-07T06:46:14.9440639Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-09-07T06:46:14.9443506Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-09-07T06:46:14.9446981Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-09-07T06:46:14.9451723Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-09-07T06:46:14.9455069Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-09-07T06:46:14.9458044Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-09-07T06:46:14.9464757Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-09-07T06:46:14.9469403Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-09-07T06:46:14.9473052Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-09-07T06:46:14.9482710Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-09-07T06:46:14.9487914Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-09-07T06:46:14.9501827Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-09-07T06:46:14.9502440Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-09-07T06:46:14.9502707Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-09-07T06:46:14.9504753Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-09-07T06:46:14.9507942Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-09-07T06:46:14.9510866Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-09-07T06:46:14.9514011Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-09-07T06:46:14.9517551Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-09-07T06:46:14.9520673Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-09-07T06:46:14.9525019Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-09-07T06:46:14.9529031Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-09-07T06:46:14.9532049Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-09-07T06:46:14.9535079Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-09-07T06:46:14.9538102Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-09-07T06:46:14.9541110Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-09-07T06:46:14.9545751Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-09-07T06:46:14.9549683Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-09-07T06:46:14.9553737Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-09-07T06:46:14.9558071Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-09-07T06:46:14.9562677Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-09-07T06:46:14.9566834Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-09-07T06:46:14.9569903Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-09-07T06:46:14.9573159Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-09-07T06:46:14.9576172Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-09-07T06:46:14.9579039Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-09-07T06:46:14.9582591Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-09-07T06:46:14.9586044Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-09-07T06:46:14.9589254Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-09-07T06:46:14.9593304Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-09-07T06:46:14.9596714Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-09-07T06:46:14.9600829Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-09-07T06:46:14.9603951Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-09-07T06:46:14.9607921Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-09-07T06:46:14.9611539Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-09-07T06:46:14.9615089Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-09-07T06:46:14.9619240Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-09-07T06:46:14.9624807Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-09-07T06:46:14.9630801Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-09-07T06:46:14.9634007Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-09-07T06:46:14.9636873Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-09-07T06:46:14.9640052Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-09-07T06:46:14.9643530Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-09-07T06:46:14.9646484Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-09-07T06:46:14.9649650Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-09-07T06:46:14.9653204Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-09-07T06:46:14.9656207Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-09-07T06:46:14.9659844Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-09-07T06:46:14.9663107Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-09-07T06:46:14.9667914Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-09-07T06:46:14.9672245Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-09-07T06:46:14.9675210Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-09-07T06:46:14.9680376Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-09-07T06:46:14.9683580Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-09-07T06:46:14.9686480Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-09-07T06:46:14.9689817Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-09-07T06:46:14.9693226Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-09-07T06:46:14.9696315Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-09-07T06:46:14.9699199Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-09-07T06:46:14.9702059Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-09-07T06:46:14.9710470Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-09-07T06:46:14.9714274Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-09-07T06:46:14.9726526Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-09-07T06:46:14.9728461Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-09-07T06:46:14.9731528Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-09-07T06:46:14.9734564Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-09-07T06:46:14.9737947Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-09-07T06:46:14.9741410Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-09-07T06:46:14.9744815Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-09-07T06:46:14.9748236Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-09-07T06:46:14.9755891Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-09-07T06:46:14.9760393Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-09-07T06:46:14.9763496Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-09-07T06:46:14.9773967Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-09-07T06:46:14.9780170Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-09-07T06:46:14.9785362Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-09-07T06:46:14.9797151Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-09-07T06:46:14.9801335Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-09-07T06:46:14.9809219Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-09-07T06:46:14.9813595Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-09-07T06:46:14.9817142Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-09-07T06:46:14.9821567Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-09-07T06:46:14.9824943Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-09-07T06:46:14.9845710Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-09-07T06:46:14.9851048Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-09-07T06:46:14.9854358Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-09-07T06:46:14.9857969Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-09-07T06:46:14.9861602Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-09-07T06:46:14.9866664Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-09-07T06:46:14.9870918Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-09-07T06:46:14.9874122Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-09-07T06:46:14.9878658Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-09-07T06:46:14.9882510Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-09-07T06:46:14.9887758Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-09-07T06:46:14.9892741Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-09-07T06:46:14.9896594Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-09-07T06:46:14.9900848Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-09-07T06:46:14.9905475Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-09-07T06:46:14.9909240Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-09-07T06:46:14.9912873Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-09-07T06:46:14.9916333Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-09-07T06:46:14.9919638Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-09-07T06:46:14.9924104Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-09-07T06:46:14.9932165Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-09-07T06:46:14.9935654Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-09-07T06:46:14.9939122Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-09-07T06:46:14.9942403Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-09-07T06:46:14.9946566Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-09-07T06:46:14.9949811Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-09-07T06:46:14.9953279Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-09-07T06:46:14.9956745Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-09-07T06:46:14.9960070Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-09-07T06:46:14.9963331Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-09-07T06:46:14.9967544Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-09-07T06:46:14.9970925Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-09-07T06:46:14.9974562Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-09-07T06:46:14.9977839Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-09-07T06:46:14.9982175Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-09-07T06:46:14.9985526Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-09-07T06:46:14.9988800Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-09-07T06:46:14.9992940Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-09-07T06:46:14.9996346Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-09-07T06:46:14.9999521Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-09-07T06:46:15.0002785Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-09-07T06:46:15.0006926Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-09-07T06:46:15.0011487Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-09-07T06:46:15.0014908Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-09-07T06:46:15.0019086Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-09-07T06:46:15.0022383Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-09-07T06:46:15.0025787Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-09-07T06:46:15.0030417Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-09-07T06:46:15.0034654Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-09-07T06:46:15.0037771Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-09-07T06:46:15.0041052Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-09-07T06:46:15.0044232Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-09-07T06:46:15.0049793Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-09-07T06:46:15.0052679Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-09-07T06:46:15.0055849Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-09-07T06:46:15.0059628Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-09-07T06:46:15.0063026Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-09-07T06:46:15.0066628Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-09-07T06:46:15.0070130Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-09-07T06:46:15.0073442Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-09-07T06:46:15.0076909Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-09-07T06:46:15.0080500Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-09-07T06:46:15.0083949Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-09-07T06:46:15.0087309Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-09-07T06:46:15.0090715Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-09-07T06:46:15.0094643Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-09-07T06:46:15.0097829Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-09-07T06:46:15.0100958Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-09-07T06:46:15.0104325Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-09-07T06:46:15.0107381Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-09-07T06:46:15.0110477Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-09-07T06:46:15.0113434Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-09-07T06:46:15.0116576Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-09-07T06:46:15.0119720Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-09-07T06:46:15.0123252Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-09-07T06:46:15.0126454Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-09-07T06:46:15.0129813Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-09-07T06:46:15.0132999Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-09-07T06:46:15.0136140Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-09-07T06:46:15.0139326Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-09-07T06:46:15.0142336Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-09-07T06:46:15.0145751Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-09-07T06:46:15.0148608Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-09-07T06:46:15.0151753Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-09-07T06:46:15.0154777Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-09-07T06:46:15.0158003Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-09-07T06:46:15.0160982Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-09-07T06:46:15.0164414Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-09-07T06:46:15.0167888Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-09-07T06:46:15.0170929Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-09-07T06:46:15.0173992Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-09-07T06:46:15.0176988Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-09-07T06:46:15.0180084Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-09-07T06:46:15.0183086Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-09-07T06:46:15.0186085Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-09-07T06:46:15.0189083Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-09-07T06:46:15.0192194Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-09-07T06:46:15.0195162Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-09-07T06:46:15.0198256Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-09-07T06:46:15.0201308Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-09-07T06:46:15.0204482Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-09-07T06:46:15.0207649Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-09-07T06:46:15.0210751Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-09-07T06:46:15.0213817Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-09-07T06:46:15.0216825Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-09-07T06:46:15.0219851Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-09-07T06:46:15.0223021Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-09-07T06:46:15.0226213Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-09-07T06:46:15.0229562Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-09-07T06:46:15.0232684Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-09-07T06:46:15.0236845Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-09-07T06:46:15.0239994Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-09-07T06:46:15.0243011Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-09-07T06:46:15.0246151Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-09-07T06:46:15.0249471Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-09-07T06:46:15.0252904Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-09-07T06:46:15.0255587Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-09-07T06:46:15.0258641Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-09-07T06:46:15.0261320Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-09-07T06:46:15.0264578Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-09-07T06:46:15.0267563Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-09-07T06:46:15.0270421Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-09-07T06:46:15.0273844Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-09-07T06:46:15.0276869Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-09-07T06:46:15.0279968Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-09-07T06:46:15.0282751Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-09-07T06:46:15.0285988Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-09-07T06:46:15.0289171Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-09-07T06:46:15.0292271Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-09-07T06:46:15.0296182Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-09-07T06:46:15.0299721Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-09-07T06:46:15.0303081Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-09-07T06:46:15.0306746Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-09-07T06:46:15.0310552Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-09-07T06:46:15.0313955Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-09-07T06:46:15.0317504Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-09-07T06:46:15.0320596Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-09-07T06:46:15.0324110Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-09-07T06:46:15.0327282Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-09-07T06:46:15.0331488Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-09-07T06:46:15.0335754Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-09-07T06:46:15.0338946Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-09-07T06:46:15.0342922Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-09-07T06:46:15.0346329Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-09-07T06:46:15.0349300Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-09-07T06:46:15.0352359Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-09-07T06:46:15.0355396Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-09-07T06:46:15.0359094Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-09-07T06:46:15.0362192Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-09-07T06:46:15.0365567Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-09-07T06:46:15.0368847Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-09-07T06:46:15.0371830Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-09-07T06:46:15.0375069Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-09-07T06:46:15.0378006Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-09-07T06:46:15.0381338Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-09-07T06:46:15.0384435Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-09-07T06:46:15.0387438Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-09-07T06:46:15.0390467Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-09-07T06:46:15.0394436Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-09-07T06:46:15.0397722Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-09-07T06:46:15.0401868Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-09-07T06:46:15.0404822Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-09-07T06:46:15.0408840Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-09-07T06:46:15.0412135Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-09-07T06:46:15.0416350Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-09-07T06:46:15.0419915Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-09-07T06:46:15.0423060Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-09-07T06:46:15.0427714Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-09-07T06:46:15.0431412Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-09-07T06:46:15.0434903Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-09-07T06:46:15.0445917Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-09-07T06:46:15.0450414Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-09-07T06:46:15.0453928Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-09-07T06:46:15.0458455Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-09-07T06:46:15.0463654Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-09-07T06:46:15.0467485Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-09-07T06:46:15.0470915Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-09-07T06:46:15.0474859Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-09-07T06:46:15.0479388Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-09-07T06:46:15.0482875Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-09-07T06:46:15.0487626Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-09-07T06:46:15.0504617Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-09-07T06:46:15.0509759Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-09-07T06:46:15.0512952Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-09-07T06:46:15.0516962Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-09-07T06:46:15.0520290Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-09-07T06:46:15.0524207Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-09-07T06:46:15.0528618Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-09-07T06:46:15.0534012Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-09-07T06:46:15.0537554Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-09-07T06:46:15.0540510Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-09-07T06:46:15.0543441Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-09-07T06:46:15.0546352Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-09-07T06:46:15.0549155Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-09-07T06:46:15.0557714Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-09-07T06:46:15.0562127Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-09-07T06:46:15.0565946Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-09-07T06:46:15.0569182Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-09-07T06:46:15.0572439Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-09-07T06:46:15.0575353Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-09-07T06:46:15.0578344Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-09-07T06:46:15.0582504Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-09-07T06:46:15.0586727Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-09-07T06:46:15.0590872Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-09-07T06:46:15.0595311Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-09-07T06:46:15.0599609Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-09-07T06:46:15.0603027Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-09-07T06:46:15.0606044Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-09-07T06:46:15.0609428Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-09-07T06:46:15.0614900Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-09-07T06:46:15.0618169Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-09-07T06:46:15.0621133Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-09-07T06:46:15.0625014Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-09-07T06:46:15.0630066Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-09-07T06:46:15.0639903Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-09-07T06:46:15.0644502Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-09-07T06:46:15.0647662Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-09-07T06:46:15.0650517Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-09-07T06:46:15.0653556Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-09-07T06:46:15.0656637Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-09-07T06:46:15.0659653Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-09-07T06:46:15.0663414Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-09-07T06:46:15.0666535Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-09-07T06:46:15.0669633Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-09-07T06:46:15.0672661Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-09-07T06:46:15.0677684Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-09-07T06:46:15.0689344Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-09-07T06:46:15.0693368Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-09-07T06:46:15.0696486Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-09-07T06:46:15.0701721Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-09-07T06:46:15.0705027Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-09-07T06:46:15.0718584Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-09-07T06:46:15.0722386Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-09-07T06:46:15.0728008Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-09-07T06:46:15.0732331Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-09-07T06:46:15.0736244Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-09-07T06:46:15.0740651Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-09-07T06:46:15.0744209Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-09-07T06:46:15.0747389Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-09-07T06:46:15.0752763Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-09-07T06:46:15.0758414Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-09-07T06:46:15.0762135Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-09-07T06:46:15.0766042Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-09-07T06:46:15.0769263Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-09-07T06:46:15.0773540Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-09-07T06:46:15.0776252Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-09-07T06:46:15.0779213Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-09-07T06:46:15.0782414Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-09-07T06:46:15.0785667Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-09-07T06:46:15.0790358Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-09-07T06:46:15.0811171Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-09-07T06:46:15.0816596Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-09-07T06:46:15.0820652Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-09-07T06:46:15.0825574Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-09-07T06:46:15.0830656Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-09-07T06:46:15.0834329Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-09-07T06:46:15.0837907Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-09-07T06:46:15.0841314Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-09-07T06:46:15.0845148Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-09-07T06:46:15.0848407Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-09-07T06:46:15.0853361Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-09-07T06:46:15.0859838Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-09-07T06:46:15.0864241Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-09-07T06:46:15.0867927Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-09-07T06:46:15.0872154Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-09-07T06:46:15.0877154Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-09-07T06:46:15.0881041Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-09-07T06:46:15.0884224Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-09-07T06:46:15.0888984Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-09-07T06:46:15.0892941Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-09-07T06:46:15.0898491Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-09-07T06:46:15.0901926Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-09-07T06:46:15.0908173Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-09-07T06:46:15.0912366Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-09-07T06:46:15.0915803Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-09-07T06:46:15.0919243Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-09-07T06:46:15.0923010Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-09-07T06:46:15.0927205Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-09-07T06:46:15.0931463Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-09-07T06:46:15.0936268Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-09-07T06:46:15.0939750Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-09-07T06:46:15.0947759Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-09-07T06:46:15.0951987Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-09-07T06:46:15.0955793Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-09-07T06:46:15.0960067Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-09-07T06:46:15.0966979Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-09-07T06:46:15.0971300Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-09-07T06:46:15.0974077Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-09-07T06:46:15.0980550Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-09-07T06:46:15.0985053Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-09-07T06:46:15.0988644Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-09-07T06:46:15.0998025Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-09-07T06:46:15.1001805Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-09-07T06:46:15.1005033Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-09-07T06:46:15.1011416Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-09-07T06:46:15.1016443Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-09-07T06:46:15.1026250Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-09-07T06:46:15.1035530Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-09-07T06:46:15.1040949Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-09-07T06:46:15.1044382Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-09-07T06:46:15.1048432Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-09-07T06:46:15.1051786Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-09-07T06:46:15.1055095Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-09-07T06:46:15.1059552Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-09-07T06:46:15.1062762Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-09-07T06:46:15.1066299Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-09-07T06:46:15.1069366Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-09-07T06:46:15.1072365Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-09-07T06:46:15.1075639Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-09-07T06:46:15.1079157Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-09-07T06:46:15.1082325Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-09-07T06:46:15.1085267Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-09-07T06:46:15.1089240Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-09-07T06:46:15.1092779Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-09-07T06:46:15.1095931Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-09-07T06:46:15.1101117Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-09-07T06:46:15.1105548Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-09-07T06:46:15.1109280Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-09-07T06:46:15.1113303Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-09-07T06:46:15.1118303Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-09-07T06:46:15.1121509Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-09-07T06:46:15.1124768Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-09-07T06:46:15.1128073Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-09-07T06:46:15.1132526Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-09-07T06:46:15.1136198Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-09-07T06:46:15.1141266Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-09-07T06:46:15.1145479Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-09-07T06:46:15.1148668Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-09-07T06:46:15.1151910Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-09-07T06:46:15.1155137Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-09-07T06:46:15.1162274Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-09-07T06:46:15.1167014Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-09-07T06:46:15.1170661Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-09-07T06:46:15.1173976Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-09-07T06:46:15.1177330Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-09-07T06:46:15.1182266Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-09-07T06:46:15.1188811Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-09-07T06:46:15.1191911Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-09-07T06:46:15.1195506Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-09-07T06:46:15.1198694Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-09-07T06:46:15.1202220Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-09-07T06:46:15.1205497Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-09-07T06:46:15.1209328Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-09-07T06:46:15.1213557Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-09-07T06:46:15.1217222Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-09-07T06:46:15.1220373Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-09-07T06:46:15.1256480Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-09-07T06:46:15.1269297Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-09-07T06:46:15.1273490Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-09-07T06:46:15.1277331Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-09-07T06:46:15.1280308Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-09-07T06:46:15.1284138Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-09-07T06:46:15.1287491Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-09-07T06:46:15.1290975Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-09-07T06:46:15.1294023Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-09-07T06:46:15.1297051Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-09-07T06:46:15.1300204Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-09-07T06:46:15.1303376Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-09-07T06:46:15.1307563Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-09-07T06:46:15.1311415Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-09-07T06:46:15.1314783Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-09-07T06:46:15.1319018Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-09-07T06:46:15.1322287Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-09-07T06:46:15.1326269Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-09-07T06:46:15.1332058Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-09-07T06:46:15.1336020Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-09-07T06:46:15.1339096Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-09-07T06:46:15.1342920Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-09-07T06:46:15.1346501Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-09-07T06:46:15.1350512Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-09-07T06:46:15.1354202Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-09-07T06:46:15.1358385Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-09-07T06:46:15.1361401Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-09-07T06:46:15.1364416Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-09-07T06:46:15.1368440Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-09-07T06:46:15.1376819Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-09-07T06:46:15.1381461Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-09-07T06:46:15.1385659Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-09-07T06:46:15.1389881Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-09-07T06:46:15.1393176Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-09-07T06:46:15.1396344Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-09-07T06:46:15.1400022Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-09-07T06:46:15.1403389Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-09-07T06:46:15.1407295Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-09-07T06:46:15.1412002Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-09-07T06:46:15.1417761Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-09-07T06:46:15.1421524Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-09-07T06:46:15.1424872Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-09-07T06:46:15.1428837Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-09-07T06:46:15.1432026Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-09-07T06:46:15.1435306Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-09-07T06:46:15.1439303Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-09-07T06:46:15.1442313Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-09-07T06:46:15.1445222Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-09-07T06:46:15.1448587Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-09-07T06:46:15.1452506Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-09-07T06:46:15.1457327Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-09-07T06:46:15.1461240Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-09-07T06:46:15.1466822Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-09-07T06:46:15.1470768Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-09-07T06:46:15.1475250Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-09-07T06:46:15.1478866Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-09-07T06:46:15.1482837Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-09-07T06:46:15.1488561Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-09-07T06:46:15.1492782Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-09-07T06:46:15.1498255Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-09-07T06:46:15.1502841Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-09-07T06:46:15.1506474Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-09-07T06:46:15.1510339Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-09-07T06:46:15.1513831Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-09-07T06:46:15.1516997Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-09-07T06:46:15.1520441Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-09-07T06:46:15.1524801Z adding 'torch/include/torch/csrc/stable/accelerator.h' 2025-09-07T06:46:15.1529443Z adding 'torch/include/torch/csrc/stable/library.h' 2025-09-07T06:46:15.1533752Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-09-07T06:46:15.1539734Z adding 'torch/include/torch/csrc/stable/stableivalue_conversions.h' 2025-09-07T06:46:15.1542936Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-09-07T06:46:15.1546004Z adding 'torch/include/torch/csrc/stable/tensor_inl.h' 2025-09-07T06:46:15.1550252Z adding 'torch/include/torch/csrc/stable/tensor_struct.h' 2025-09-07T06:46:15.1554414Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-09-07T06:46:15.1559646Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-09-07T06:46:15.1563211Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-09-07T06:46:15.1565562Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-09-07T06:46:15.1569155Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-09-07T06:46:15.1572465Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-09-07T06:46:15.1595586Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-09-07T06:46:15.1601272Z adding 'torch/include/torch/csrc/utils/init.h' 2025-09-07T06:46:15.1604184Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-09-07T06:46:15.1607159Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-09-07T06:46:15.1610682Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-09-07T06:46:15.1614044Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-09-07T06:46:15.1617031Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-09-07T06:46:15.1622507Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-09-07T06:46:15.1626139Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-09-07T06:46:15.1629031Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-09-07T06:46:15.1642457Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-09-07T06:46:15.1646703Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-09-07T06:46:15.1649725Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-09-07T06:46:15.1653730Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-09-07T06:46:15.1657278Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-09-07T06:46:15.1661233Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-09-07T06:46:15.1665396Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-09-07T06:46:15.1668333Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-09-07T06:46:15.1672531Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-09-07T06:46:15.1675904Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-09-07T06:46:15.1678937Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-09-07T06:46:15.1691804Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-09-07T06:46:15.1696478Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-09-07T06:46:15.1699828Z adding 'torch/include/torch/csrc/utils/six.h' 2025-09-07T06:46:15.1702775Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-09-07T06:46:15.1705779Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-09-07T06:46:15.1708632Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-09-07T06:46:15.1712121Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-09-07T06:46:15.1715045Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-09-07T06:46:15.1717853Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-09-07T06:46:15.1720744Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-09-07T06:46:15.1724121Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-09-07T06:46:15.1727298Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-09-07T06:46:15.1730188Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-09-07T06:46:15.1733145Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-09-07T06:46:15.1737563Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-09-07T06:46:15.1742418Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-09-07T06:46:15.1746032Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-09-07T06:46:15.1749663Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-09-07T06:46:15.1752624Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-09-07T06:46:15.1756388Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-09-07T06:46:15.1759276Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-09-07T06:46:15.1762205Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-09-07T06:46:15.1767560Z adding 'torch/include/torch/headeronly/core/ScalarType.h' 2025-09-07T06:46:15.1772747Z adding 'torch/include/torch/headeronly/cpu/vec/intrinsics.h' 2025-09-07T06:46:15.1775979Z adding 'torch/include/torch/headeronly/cpu/vec/vec_half.h' 2025-09-07T06:46:15.1781138Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h' 2025-09-07T06:46:15.1784808Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h' 2025-09-07T06:46:15.1790078Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-09-07T06:46:15.1798322Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-09-07T06:46:15.1801843Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-09-07T06:46:15.1808302Z adding 'torch/include/torch/headeronly/util/BFloat16.h' 2025-09-07T06:46:15.1812644Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-09-07T06:46:15.1815957Z adding 'torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h' 2025-09-07T06:46:15.1823551Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fn.h' 2025-09-07T06:46:15.1829479Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fnuz.h' 2025-09-07T06:46:15.1835314Z adding 'torch/include/torch/headeronly/util/Float8_e5m2.h' 2025-09-07T06:46:15.1841222Z adding 'torch/include/torch/headeronly/util/Float8_e5m2fnuz.h' 2025-09-07T06:46:15.1846208Z adding 'torch/include/torch/headeronly/util/Float8_e8m0fnu.h' 2025-09-07T06:46:15.1849948Z adding 'torch/include/torch/headeronly/util/Float8_fnuz_cvt.h' 2025-09-07T06:46:15.1859013Z adding 'torch/include/torch/headeronly/util/Half.h' 2025-09-07T06:46:15.1864053Z adding 'torch/include/torch/headeronly/util/TypeSafeSignMath.h' 2025-09-07T06:46:15.1867586Z adding 'torch/include/torch/headeronly/util/bit_cast.h' 2025-09-07T06:46:15.1870902Z adding 'torch/include/torch/headeronly/util/bits.h' 2025-09-07T06:46:15.1877875Z adding 'torch/include/torch/headeronly/util/complex.h' 2025-09-07T06:46:15.1881540Z adding 'torch/include/torch/headeronly/util/floating_point_utils.h' 2025-09-07T06:46:15.1884634Z adding 'torch/include/torch/headeronly/util/qint32.h' 2025-09-07T06:46:15.1887708Z adding 'torch/include/torch/headeronly/util/qint8.h' 2025-09-07T06:46:15.1890869Z adding 'torch/include/torch/headeronly/util/quint2x4.h' 2025-09-07T06:46:15.1893874Z adding 'torch/include/torch/headeronly/util/quint4x2.h' 2025-09-07T06:46:15.1896942Z adding 'torch/include/torch/headeronly/util/quint8.h' 2025-09-07T06:46:15.1900207Z adding 'torch/include/torch/headeronly/util/shim_utils.h' 2025-09-07T06:46:15.1906866Z adding 'torch/jit/__init__.py' 2025-09-07T06:46:15.1910942Z adding 'torch/jit/_async.py' 2025-09-07T06:46:15.1915201Z adding 'torch/jit/_await.py' 2025-09-07T06:46:15.1919802Z adding 'torch/jit/_builtins.py' 2025-09-07T06:46:15.1925134Z adding 'torch/jit/_check.py' 2025-09-07T06:46:15.1930025Z adding 'torch/jit/_dataclass_impls.py' 2025-09-07T06:46:15.1933138Z adding 'torch/jit/_decomposition_utils.py' 2025-09-07T06:46:15.1937268Z adding 'torch/jit/_decompositions.py' 2025-09-07T06:46:15.1942708Z adding 'torch/jit/_freeze.py' 2025-09-07T06:46:15.1947506Z adding 'torch/jit/_fuser.py' 2025-09-07T06:46:15.1950748Z adding 'torch/jit/_ir_utils.py' 2025-09-07T06:46:15.1953790Z adding 'torch/jit/_logging.py' 2025-09-07T06:46:15.1958537Z adding 'torch/jit/_monkeytype_config.py' 2025-09-07T06:46:15.1962322Z adding 'torch/jit/_pickle.py' 2025-09-07T06:46:15.1979601Z adding 'torch/jit/_recursive.py' 2025-09-07T06:46:15.2006566Z adding 'torch/jit/_script.py' 2025-09-07T06:46:15.2012978Z adding 'torch/jit/_script.pyi' 2025-09-07T06:46:15.2018903Z adding 'torch/jit/_serialization.py' 2025-09-07T06:46:15.2035833Z adding 'torch/jit/_shape_functions.py' 2025-09-07T06:46:15.2041297Z adding 'torch/jit/_state.py' 2025-09-07T06:46:15.2062019Z adding 'torch/jit/_trace.py' 2025-09-07T06:46:15.2071505Z adding 'torch/jit/annotations.py' 2025-09-07T06:46:15.2088173Z adding 'torch/jit/frontend.py' 2025-09-07T06:46:15.2092585Z adding 'torch/jit/generate_bytecode.py' 2025-09-07T06:46:15.2095820Z adding 'torch/jit/quantized.py' 2025-09-07T06:46:15.2101200Z adding 'torch/jit/supported_ops.py' 2025-09-07T06:46:15.2104990Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-09-07T06:46:15.2108949Z adding 'torch/jit/_passes/__init__.py' 2025-09-07T06:46:15.2112214Z adding 'torch/jit/_passes/_property_propagation.py' 2025-09-07T06:46:15.2117442Z adding 'torch/jit/mobile/__init__.py' 2025-09-07T06:46:15.3039106Z adding 'torch/lib/XNNPACK.lib' 2025-09-07T06:46:15.3104617Z adding 'torch/lib/_C.lib' 2025-09-07T06:46:15.3217313Z adding 'torch/lib/aoti_custom_ops.dll' 2025-09-07T06:46:15.3230874Z adding 'torch/lib/aoti_custom_ops.lib' 2025-09-07T06:46:15.3336510Z adding 'torch/lib/backend_with_compiler.dll' 2025-09-07T06:46:15.3350409Z adding 'torch/lib/backend_with_compiler.lib' 2025-09-07T06:46:15.3837985Z adding 'torch/lib/c10.dll' 2025-09-07T06:46:15.4029395Z adding 'torch/lib/c10.lib' 2025-09-07T06:46:15.4281306Z adding 'torch/lib/c10_cuda.dll' 2025-09-07T06:46:15.4304566Z adding 'torch/lib/c10_cuda.lib' 2025-09-07T06:46:15.4316222Z adding 'torch/lib/caffe2_nvrtc.dll' 2025-09-07T06:46:15.4320381Z adding 'torch/lib/caffe2_nvrtc.lib' 2025-09-07T06:46:15.4369050Z adding 'torch/lib/cpuinfo.lib' 2025-09-07T06:46:31.6222122Z adding 'torch/lib/dnnl.lib' 2025-09-07T06:46:33.2589954Z adding 'torch/lib/fmt.lib' 2025-09-07T06:46:33.2727718Z adding 'torch/lib/jitbackend_test.dll' 2025-09-07T06:46:33.2740691Z adding 'torch/lib/jitbackend_test.lib' 2025-09-07T06:46:34.2050831Z adding 'torch/lib/kineto.lib' 2025-09-07T06:46:34.2970177Z adding 'torch/lib/libittnotify.lib' 2025-09-07T06:46:34.4421128Z adding 'torch/lib/libprotobuf-lite.lib' 2025-09-07T06:46:35.3140648Z adding 'torch/lib/libprotobuf.lib' 2025-09-07T06:46:36.3209571Z adding 'torch/lib/libprotoc.lib' 2025-09-07T06:46:36.5141864Z adding 'torch/lib/microkernels-prod.lib' 2025-09-07T06:46:36.5308797Z adding 'torch/lib/pthreadpool.lib' 2025-09-07T06:46:36.5324942Z adding 'torch/lib/shm.dll' 2025-09-07T06:46:36.5330663Z adding 'torch/lib/shm.lib' 2025-09-07T06:46:36.9335507Z adding 'torch/lib/sleef.lib' 2025-09-07T06:46:36.9540659Z adding 'torch/lib/torch.dll' 2025-09-07T06:46:36.9544599Z adding 'torch/lib/torch.lib' 2025-09-07T06:46:47.8759804Z adding 'torch/lib/torch_cpu.dll' 2025-09-07T06:46:48.9828727Z adding 'torch/lib/torch_cpu.lib' 2025-09-07T06:47:04.2670661Z adding 'torch/lib/torch_cuda.dll' 2025-09-07T06:47:04.8940579Z adding 'torch/lib/torch_cuda.lib' 2025-09-07T06:47:04.8993257Z adding 'torch/lib/torch_global_deps.dll' 2025-09-07T06:47:05.6610730Z adding 'torch/lib/torch_python.dll' 2025-09-07T06:47:05.7092226Z adding 'torch/lib/torch_python.lib' 2025-09-07T06:47:05.7322705Z adding 'torch/lib/torchbind_test.dll' 2025-09-07T06:47:05.7348790Z adding 'torch/lib/torchbind_test.lib' 2025-09-07T06:47:05.7353998Z adding 'torch/lib/libshm/alloc_info.h' 2025-09-07T06:47:05.7357407Z adding 'torch/lib/libshm/err.h' 2025-09-07T06:47:05.7360622Z adding 'torch/lib/libshm/libshm.h' 2025-09-07T06:47:05.7364894Z adding 'torch/lib/libshm/socket.h' 2025-09-07T06:47:05.7368972Z adding 'torch/lib/libshm_windows/libshm.h' 2025-09-07T06:47:05.7404834Z adding 'torch/linalg/__init__.py' 2025-09-07T06:47:05.7411418Z adding 'torch/masked/__init__.py' 2025-09-07T06:47:05.7418607Z adding 'torch/masked/_docs.py' 2025-09-07T06:47:05.7440428Z adding 'torch/masked/_ops.py' 2025-09-07T06:47:05.7445834Z adding 'torch/masked/maskedtensor/__init__.py' 2025-09-07T06:47:05.7451889Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-09-07T06:47:05.7456548Z adding 'torch/masked/maskedtensor/binary.py' 2025-09-07T06:47:05.7462854Z adding 'torch/masked/maskedtensor/core.py' 2025-09-07T06:47:05.7466329Z adding 'torch/masked/maskedtensor/creation.py' 2025-09-07T06:47:05.7469539Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-09-07T06:47:05.7473696Z adding 'torch/masked/maskedtensor/reductions.py' 2025-09-07T06:47:05.7477695Z adding 'torch/masked/maskedtensor/unary.py' 2025-09-07T06:47:05.7481897Z adding 'torch/monitor/__init__.py' 2025-09-07T06:47:05.7487177Z adding 'torch/mps/__init__.py' 2025-09-07T06:47:05.7490537Z adding 'torch/mps/event.py' 2025-09-07T06:47:05.7494212Z adding 'torch/mps/profiler.py' 2025-09-07T06:47:05.7501392Z adding 'torch/mtia/__init__.py' 2025-09-07T06:47:05.7505088Z adding 'torch/mtia/_utils.py' 2025-09-07T06:47:05.7508423Z adding 'torch/mtia/memory.py' 2025-09-07T06:47:05.7513102Z adding 'torch/multiprocessing/__init__.py' 2025-09-07T06:47:05.7516378Z adding 'torch/multiprocessing/_atfork.py' 2025-09-07T06:47:05.7519734Z adding 'torch/multiprocessing/pool.py' 2025-09-07T06:47:05.7523507Z adding 'torch/multiprocessing/queue.py' 2025-09-07T06:47:05.7532998Z adding 'torch/multiprocessing/reductions.py' 2025-09-07T06:47:05.7541427Z adding 'torch/multiprocessing/spawn.py' 2025-09-07T06:47:05.7551518Z adding 'torch/nested/__init__.py' 2025-09-07T06:47:05.7556251Z adding 'torch/nested/_internal/__init__.py' 2025-09-07T06:47:05.7560242Z adding 'torch/nested/_internal/nested_int.py' 2025-09-07T06:47:05.7570111Z adding 'torch/nested/_internal/nested_tensor.py' 2025-09-07T06:47:05.7602201Z adding 'torch/nested/_internal/ops.py' 2025-09-07T06:47:05.7616916Z adding 'torch/nested/_internal/sdpa.py' 2025-09-07T06:47:05.7623066Z adding 'torch/nn/__init__.py' 2025-09-07T06:47:05.7626987Z adding 'torch/nn/_reduction.py' 2025-09-07T06:47:05.7630451Z adding 'torch/nn/common_types.py' 2025-09-07T06:47:05.7634731Z adding 'torch/nn/cpp.py' 2025-09-07T06:47:05.7707736Z adding 'torch/nn/functional.py' 2025-09-07T06:47:05.7727359Z adding 'torch/nn/functional.pyi' 2025-09-07T06:47:05.7733371Z adding 'torch/nn/grad.py' 2025-09-07T06:47:05.7743153Z adding 'torch/nn/init.py' 2025-09-07T06:47:05.7750268Z adding 'torch/nn/parameter.py' 2025-09-07T06:47:05.7759481Z adding 'torch/nn/parameter.pyi' 2025-09-07T06:47:05.7762766Z adding 'torch/nn/attention/__init__.py' 2025-09-07T06:47:05.7766590Z adding 'torch/nn/attention/_utils.py' 2025-09-07T06:47:05.7772088Z adding 'torch/nn/attention/bias.py' 2025-09-07T06:47:05.7795768Z adding 'torch/nn/attention/flex_attention.py' 2025-09-07T06:47:05.7801019Z adding 'torch/nn/attention/experimental/__init__.py' 2025-09-07T06:47:05.7806662Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-09-07T06:47:05.7810698Z adding 'torch/nn/backends/__init__.py' 2025-09-07T06:47:05.7817127Z adding 'torch/nn/backends/thnn.py' 2025-09-07T06:47:05.7819667Z adding 'torch/nn/intrinsic/__init__.py' 2025-09-07T06:47:05.7821389Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-09-07T06:47:05.7824421Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-09-07T06:47:05.7827863Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-09-07T06:47:05.7831743Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-09-07T06:47:05.7834987Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-09-07T06:47:05.7837985Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-09-07T06:47:05.7840916Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-09-07T06:47:05.7844514Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-09-07T06:47:05.7848021Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-09-07T06:47:05.7851697Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-09-07T06:47:05.7854446Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-09-07T06:47:05.7858136Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-09-07T06:47:05.7860993Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-09-07T06:47:05.7863818Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-09-07T06:47:05.7866533Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-09-07T06:47:05.7871942Z adding 'torch/nn/modules/__init__.py' 2025-09-07T06:47:05.7877771Z adding 'torch/nn/modules/_functions.py' 2025-09-07T06:47:05.7895295Z adding 'torch/nn/modules/activation.py' 2025-09-07T06:47:05.7902802Z adding 'torch/nn/modules/adaptive.py' 2025-09-07T06:47:05.7912940Z adding 'torch/nn/modules/batchnorm.py' 2025-09-07T06:47:05.7917185Z adding 'torch/nn/modules/channelshuffle.py' 2025-09-07T06:47:05.7929071Z adding 'torch/nn/modules/container.py' 2025-09-07T06:47:05.7946064Z adding 'torch/nn/modules/conv.py' 2025-09-07T06:47:05.7951519Z adding 'torch/nn/modules/distance.py' 2025-09-07T06:47:05.7956328Z adding 'torch/nn/modules/dropout.py' 2025-09-07T06:47:05.7960698Z adding 'torch/nn/modules/flatten.py' 2025-09-07T06:47:05.7966226Z adding 'torch/nn/modules/fold.py' 2025-09-07T06:47:05.7972808Z adding 'torch/nn/modules/instancenorm.py' 2025-09-07T06:47:05.7979652Z adding 'torch/nn/modules/lazy.py' 2025-09-07T06:47:05.7985576Z adding 'torch/nn/modules/linear.py' 2025-09-07T06:47:05.8015963Z adding 'torch/nn/modules/loss.py' 2025-09-07T06:47:05.8058724Z adding 'torch/nn/modules/module.py' 2025-09-07T06:47:05.8068341Z adding 'torch/nn/modules/normalization.py' 2025-09-07T06:47:05.8075620Z adding 'torch/nn/modules/padding.py' 2025-09-07T06:47:05.8080017Z adding 'torch/nn/modules/pixelshuffle.py' 2025-09-07T06:47:05.8092684Z adding 'torch/nn/modules/pooling.py' 2025-09-07T06:47:05.8112374Z adding 'torch/nn/modules/rnn.py' 2025-09-07T06:47:05.8121521Z adding 'torch/nn/modules/sparse.py' 2025-09-07T06:47:05.8135832Z adding 'torch/nn/modules/transformer.py' 2025-09-07T06:47:05.8142329Z adding 'torch/nn/modules/upsampling.py' 2025-09-07T06:47:05.8146231Z adding 'torch/nn/modules/utils.py' 2025-09-07T06:47:05.8150260Z adding 'torch/nn/parallel/__init__.py' 2025-09-07T06:47:05.8154416Z adding 'torch/nn/parallel/_functions.py' 2025-09-07T06:47:05.8159828Z adding 'torch/nn/parallel/comm.py' 2025-09-07T06:47:05.8165881Z adding 'torch/nn/parallel/data_parallel.py' 2025-09-07T06:47:05.8208359Z adding 'torch/nn/parallel/distributed.py' 2025-09-07T06:47:05.8214699Z adding 'torch/nn/parallel/parallel_apply.py' 2025-09-07T06:47:05.8219277Z adding 'torch/nn/parallel/replicate.py' 2025-09-07T06:47:05.8223815Z adding 'torch/nn/parallel/scatter_gather.py' 2025-09-07T06:47:05.8227710Z adding 'torch/nn/qat/__init__.py' 2025-09-07T06:47:05.8231375Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-09-07T06:47:05.8235000Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-09-07T06:47:05.8237866Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-09-07T06:47:05.8241668Z adding 'torch/nn/qat/modules/__init__.py' 2025-09-07T06:47:05.8245863Z adding 'torch/nn/qat/modules/conv.py' 2025-09-07T06:47:05.8247681Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-09-07T06:47:05.8250594Z adding 'torch/nn/qat/modules/linear.py' 2025-09-07T06:47:05.8254088Z adding 'torch/nn/quantizable/__init__.py' 2025-09-07T06:47:05.8257704Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-09-07T06:47:05.8260832Z adding 'torch/nn/quantizable/modules/activation.py' 2025-09-07T06:47:05.8263740Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-09-07T06:47:05.8267579Z adding 'torch/nn/quantized/__init__.py' 2025-09-07T06:47:05.8270895Z adding 'torch/nn/quantized/functional.py' 2025-09-07T06:47:05.8275241Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-09-07T06:47:05.8279709Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-09-07T06:47:05.8283011Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-09-07T06:47:05.8286008Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-09-07T06:47:05.8289390Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-09-07T06:47:05.8293025Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-09-07T06:47:05.8296440Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-09-07T06:47:05.8300596Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-09-07T06:47:05.8305261Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-09-07T06:47:05.8308809Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-09-07T06:47:05.8312336Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-09-07T06:47:05.8315918Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-09-07T06:47:05.8320753Z adding 'torch/nn/quantized/modules/__init__.py' 2025-09-07T06:47:05.8324320Z adding 'torch/nn/quantized/modules/activation.py' 2025-09-07T06:47:05.8327471Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-09-07T06:47:05.8330521Z adding 'torch/nn/quantized/modules/conv.py' 2025-09-07T06:47:05.8333658Z adding 'torch/nn/quantized/modules/dropout.py' 2025-09-07T06:47:05.8336734Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-09-07T06:47:05.8339896Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-09-07T06:47:05.8343049Z adding 'torch/nn/quantized/modules/linear.py' 2025-09-07T06:47:05.8346095Z adding 'torch/nn/quantized/modules/normalization.py' 2025-09-07T06:47:05.8349071Z adding 'torch/nn/quantized/modules/rnn.py' 2025-09-07T06:47:05.8355727Z adding 'torch/nn/quantized/modules/utils.py' 2025-09-07T06:47:05.8367234Z adding 'torch/nn/utils/__init__.py' 2025-09-07T06:47:05.8370673Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-09-07T06:47:05.8376501Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-09-07T06:47:05.8381319Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-09-07T06:47:05.8387965Z adding 'torch/nn/utils/clip_grad.py' 2025-09-07T06:47:05.8391942Z adding 'torch/nn/utils/convert_parameters.py' 2025-09-07T06:47:05.8396137Z adding 'torch/nn/utils/fusion.py' 2025-09-07T06:47:05.8399773Z adding 'torch/nn/utils/init.py' 2025-09-07T06:47:05.8404131Z adding 'torch/nn/utils/memory_format.py' 2025-09-07T06:47:05.8414687Z adding 'torch/nn/utils/parametrizations.py' 2025-09-07T06:47:05.8428636Z adding 'torch/nn/utils/parametrize.py' 2025-09-07T06:47:05.8447161Z adding 'torch/nn/utils/prune.py' 2025-09-07T06:47:05.8457140Z adding 'torch/nn/utils/rnn.py' 2025-09-07T06:47:05.8464640Z adding 'torch/nn/utils/spectral_norm.py' 2025-09-07T06:47:05.8470592Z adding 'torch/nn/utils/stateless.py' 2025-09-07T06:47:05.8475243Z adding 'torch/nn/utils/weight_norm.py' 2025-09-07T06:47:05.8479298Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-09-07T06:47:05.8482912Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-09-07T06:47:05.8488389Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-09-07T06:47:05.8492320Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-09-07T06:47:05.8496606Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-09-07T06:47:05.8501946Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-09-07T06:47:05.8505384Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-09-07T06:47:05.8509117Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-09-07T06:47:05.8512740Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-09-07T06:47:05.8516176Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-09-07T06:47:05.8519686Z adding 'torch/numa/__init__.py' 2025-09-07T06:47:05.8526593Z adding 'torch/numa/binding.py' 2025-09-07T06:47:05.8536065Z adding 'torch/onnx/__init__.py' 2025-09-07T06:47:05.8539680Z adding 'torch/onnx/_constants.py' 2025-09-07T06:47:05.8543025Z adding 'torch/onnx/_flags.py' 2025-09-07T06:47:05.8546775Z adding 'torch/onnx/errors.py' 2025-09-07T06:47:05.8549954Z adding 'torch/onnx/operators.py' 2025-09-07T06:47:05.8552906Z adding 'torch/onnx/symbolic_helper.py' 2025-09-07T06:47:05.8555739Z adding 'torch/onnx/symbolic_opset10.py' 2025-09-07T06:47:05.8558622Z adding 'torch/onnx/symbolic_opset11.py' 2025-09-07T06:47:05.8561349Z adding 'torch/onnx/symbolic_opset12.py' 2025-09-07T06:47:05.8564220Z adding 'torch/onnx/symbolic_opset13.py' 2025-09-07T06:47:05.8566895Z adding 'torch/onnx/symbolic_opset14.py' 2025-09-07T06:47:05.8569794Z adding 'torch/onnx/symbolic_opset15.py' 2025-09-07T06:47:05.8572487Z adding 'torch/onnx/symbolic_opset16.py' 2025-09-07T06:47:05.8575343Z adding 'torch/onnx/symbolic_opset17.py' 2025-09-07T06:47:05.8578097Z adding 'torch/onnx/symbolic_opset18.py' 2025-09-07T06:47:05.8581070Z adding 'torch/onnx/symbolic_opset19.py' 2025-09-07T06:47:05.8583868Z adding 'torch/onnx/symbolic_opset20.py' 2025-09-07T06:47:05.8586700Z adding 'torch/onnx/symbolic_opset7.py' 2025-09-07T06:47:05.8589429Z adding 'torch/onnx/symbolic_opset8.py' 2025-09-07T06:47:05.8592367Z adding 'torch/onnx/symbolic_opset9.py' 2025-09-07T06:47:05.8595059Z adding 'torch/onnx/utils.py' 2025-09-07T06:47:05.8598309Z adding 'torch/onnx/verification.py' 2025-09-07T06:47:05.8601855Z adding 'torch/onnx/_internal/__init__.py' 2025-09-07T06:47:05.8605181Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-09-07T06:47:05.8609118Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-09-07T06:47:05.8614330Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-09-07T06:47:05.8625734Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-09-07T06:47:05.8631305Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-09-07T06:47:05.8636579Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-09-07T06:47:05.8639844Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-09-07T06:47:05.8664366Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-09-07T06:47:05.8669630Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-09-07T06:47:05.8675958Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-09-07T06:47:05.8682583Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-09-07T06:47:05.8685984Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-09-07T06:47:05.8689129Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-09-07T06:47:05.8692449Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-09-07T06:47:05.8696768Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-09-07T06:47:05.8700440Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-09-07T06:47:05.8708137Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-09-07T06:47:05.8714485Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-09-07T06:47:05.8719328Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-09-07T06:47:05.8728552Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-09-07T06:47:05.8740655Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-09-07T06:47:05.8741104Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-09-07T06:47:05.8741497Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-09-07T06:47:05.8746862Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-09-07T06:47:05.8750814Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-09-07T06:47:05.8754194Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-09-07T06:47:05.8757980Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-09-07T06:47:05.8761698Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-09-07T06:47:05.8765055Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-09-07T06:47:05.8769335Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-09-07T06:47:05.8775137Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-09-07T06:47:05.8779407Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-09-07T06:47:05.8782847Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-09-07T06:47:05.8786420Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-09-07T06:47:05.8791684Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-09-07T06:47:05.8796135Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-09-07T06:47:05.8799877Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-09-07T06:47:05.8815649Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-09-07T06:47:05.8821634Z adding 'torch/onnx/_internal/torchscript_exporter/__init__.py' 2025-09-07T06:47:05.8825324Z adding 'torch/onnx/_internal/torchscript_exporter/_experimental.py' 2025-09-07T06:47:05.8829633Z adding 'torch/onnx/_internal/torchscript_exporter/_globals.py' 2025-09-07T06:47:05.8836412Z adding 'torch/onnx/_internal/torchscript_exporter/_type_utils.py' 2025-09-07T06:47:05.8844905Z adding 'torch/onnx/_internal/torchscript_exporter/jit_utils.py' 2025-09-07T06:47:05.8851659Z adding 'torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py' 2025-09-07T06:47:05.8857685Z adding 'torch/onnx/_internal/torchscript_exporter/registration.py' 2025-09-07T06:47:05.8886853Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_helper.py' 2025-09-07T06:47:05.8899757Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py' 2025-09-07T06:47:05.8918280Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py' 2025-09-07T06:47:05.8926103Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py' 2025-09-07T06:47:05.8939260Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py' 2025-09-07T06:47:05.8946361Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py' 2025-09-07T06:47:05.8950343Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py' 2025-09-07T06:47:05.8955089Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py' 2025-09-07T06:47:05.8960407Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py' 2025-09-07T06:47:05.8965222Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py' 2025-09-07T06:47:05.8968487Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset19.py' 2025-09-07T06:47:05.8971987Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py' 2025-09-07T06:47:05.8975336Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset7.py' 2025-09-07T06:47:05.8981470Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py' 2025-09-07T06:47:05.9050343Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py' 2025-09-07T06:47:05.9084811Z adding 'torch/onnx/_internal/torchscript_exporter/utils.py' 2025-09-07T06:47:05.9094244Z adding 'torch/onnx/_internal/torchscript_exporter/verification.py' 2025-09-07T06:47:05.9103342Z adding 'torch/onnx/ops/__init__.py' 2025-09-07T06:47:05.9107124Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-09-07T06:47:05.9113321Z adding 'torch/onnx/ops/_impl.py' 2025-09-07T06:47:05.9118701Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-09-07T06:47:05.9123456Z adding 'torch/optim/__init__.py' 2025-09-07T06:47:05.9133091Z adding 'torch/optim/_adafactor.py' 2025-09-07T06:47:05.9137442Z adding 'torch/optim/_functional.py' 2025-09-07T06:47:05.9143902Z adding 'torch/optim/_muon.py' 2025-09-07T06:47:05.9151135Z adding 'torch/optim/adadelta.py' 2025-09-07T06:47:05.9159278Z adding 'torch/optim/adagrad.py' 2025-09-07T06:47:05.9172099Z adding 'torch/optim/adam.py' 2025-09-07T06:47:05.9179960Z adding 'torch/optim/adamax.py' 2025-09-07T06:47:05.9185112Z adding 'torch/optim/adamw.py' 2025-09-07T06:47:05.9191792Z adding 'torch/optim/asgd.py' 2025-09-07T06:47:05.9199658Z adding 'torch/optim/lbfgs.py' 2025-09-07T06:47:05.9224412Z adding 'torch/optim/lr_scheduler.py' 2025-09-07T06:47:05.9235841Z adding 'torch/optim/nadam.py' 2025-09-07T06:47:05.9254369Z adding 'torch/optim/optimizer.py' 2025-09-07T06:47:05.9264007Z adding 'torch/optim/radam.py' 2025-09-07T06:47:05.9272079Z adding 'torch/optim/rmsprop.py' 2025-09-07T06:47:05.9279292Z adding 'torch/optim/rprop.py' 2025-09-07T06:47:05.9287245Z adding 'torch/optim/sgd.py' 2025-09-07T06:47:05.9292669Z adding 'torch/optim/sparse_adam.py' 2025-09-07T06:47:05.9300458Z adding 'torch/optim/swa_utils.py' 2025-09-07T06:47:05.9304842Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-09-07T06:47:05.9307730Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-09-07T06:47:05.9311569Z adding 'torch/package/__init__.py' 2025-09-07T06:47:05.9315689Z adding 'torch/package/_digraph.py' 2025-09-07T06:47:05.9319521Z adding 'torch/package/_directory_reader.py' 2025-09-07T06:47:05.9323133Z adding 'torch/package/_importlib.py' 2025-09-07T06:47:05.9326544Z adding 'torch/package/_mangling.py' 2025-09-07T06:47:05.9330003Z adding 'torch/package/_mock.py' 2025-09-07T06:47:05.9334134Z adding 'torch/package/_package_pickler.py' 2025-09-07T06:47:05.9337349Z adding 'torch/package/_package_unpickler.py' 2025-09-07T06:47:05.9341335Z adding 'torch/package/_stdlib.py' 2025-09-07T06:47:05.9345653Z adding 'torch/package/file_structure_representation.py' 2025-09-07T06:47:05.9349465Z adding 'torch/package/find_file_dependencies.py' 2025-09-07T06:47:05.9353200Z adding 'torch/package/glob_group.py' 2025-09-07T06:47:05.9358570Z adding 'torch/package/importer.py' 2025-09-07T06:47:05.9376460Z adding 'torch/package/package_exporter.py' 2025-09-07T06:47:05.9390741Z adding 'torch/package/package_importer.py' 2025-09-07T06:47:05.9395204Z adding 'torch/package/analyze/__init__.py' 2025-09-07T06:47:05.9398393Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-09-07T06:47:05.9401376Z adding 'torch/package/analyze/is_from_package.py' 2025-09-07T06:47:05.9404780Z adding 'torch/package/analyze/trace_dependencies.py' 2025-09-07T06:47:05.9409063Z adding 'torch/profiler/__init__.py' 2025-09-07T06:47:05.9426967Z adding 'torch/profiler/_memory_profiler.py' 2025-09-07T06:47:05.9437097Z adding 'torch/profiler/_pattern_matcher.py' 2025-09-07T06:47:05.9444138Z adding 'torch/profiler/_utils.py' 2025-09-07T06:47:05.9447947Z adding 'torch/profiler/itt.py' 2025-09-07T06:47:05.9463295Z adding 'torch/profiler/profiler.py' 2025-09-07T06:47:05.9467400Z adding 'torch/profiler/python_tracer.py' 2025-09-07T06:47:05.9472003Z adding 'torch/quantization/__init__.py' 2025-09-07T06:47:05.9475274Z adding 'torch/quantization/_numeric_suite.py' 2025-09-07T06:47:05.9478282Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-09-07T06:47:05.9482229Z adding 'torch/quantization/_quantized_conversions.py' 2025-09-07T06:47:05.9485331Z adding 'torch/quantization/fake_quantize.py' 2025-09-07T06:47:05.9488475Z adding 'torch/quantization/fuse_modules.py' 2025-09-07T06:47:05.9491423Z adding 'torch/quantization/fuser_method_mappings.py' 2025-09-07T06:47:05.9494579Z adding 'torch/quantization/observer.py' 2025-09-07T06:47:05.9497637Z adding 'torch/quantization/qconfig.py' 2025-09-07T06:47:05.9500758Z adding 'torch/quantization/quant_type.py' 2025-09-07T06:47:05.9503899Z adding 'torch/quantization/quantization_mappings.py' 2025-09-07T06:47:05.9506839Z adding 'torch/quantization/quantize.py' 2025-09-07T06:47:05.9509920Z adding 'torch/quantization/quantize_fx.py' 2025-09-07T06:47:05.9513336Z adding 'torch/quantization/quantize_jit.py' 2025-09-07T06:47:05.9515821Z adding 'torch/quantization/stubs.py' 2025-09-07T06:47:05.9518729Z adding 'torch/quantization/utils.py' 2025-09-07T06:47:05.9522855Z adding 'torch/quantization/fx/__init__.py' 2025-09-07T06:47:05.9525962Z adding 'torch/quantization/fx/_equalize.py' 2025-09-07T06:47:05.9529025Z adding 'torch/quantization/fx/convert.py' 2025-09-07T06:47:05.9531852Z adding 'torch/quantization/fx/fuse.py' 2025-09-07T06:47:05.9534887Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-09-07T06:47:05.9537883Z adding 'torch/quantization/fx/graph_module.py' 2025-09-07T06:47:05.9540963Z adding 'torch/quantization/fx/match_utils.py' 2025-09-07T06:47:05.9544085Z adding 'torch/quantization/fx/pattern_utils.py' 2025-09-07T06:47:05.9547035Z adding 'torch/quantization/fx/prepare.py' 2025-09-07T06:47:05.9550251Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-09-07T06:47:05.9553167Z adding 'torch/quantization/fx/quantization_types.py' 2025-09-07T06:47:05.9556272Z adding 'torch/quantization/fx/utils.py' 2025-09-07T06:47:05.9563335Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-09-07T06:47:05.9568577Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-09-07T06:47:05.9572140Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-09-07T06:47:05.9577206Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-09-07T06:47:05.9591534Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-09-07T06:47:05.9596763Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-09-07T06:47:05.9601081Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-09-07T06:47:05.9605736Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-09-07T06:47:05.9609839Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-09-07T06:47:05.9614054Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-09-07T06:47:05.9618997Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-09-07T06:47:05.9651667Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-09-07T06:47:05.9657879Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-09-07T06:47:05.9663559Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-09-07T06:47:05.9668204Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-09-07T06:47:05.9674649Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-09-07T06:47:05.9680971Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-09-07T06:47:05.9687949Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-09-07T06:47:05.9695092Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-09-07T06:47:05.9699569Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-09-07T06:47:05.9703695Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-09-07T06:47:05.9707029Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-09-07T06:47:05.9710778Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-09-07T06:47:05.9714865Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-09-07T06:47:05.9723262Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-09-07T06:47:05.9727768Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-09-07T06:47:05.9732722Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-09-07T06:47:05.9735879Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-09-07T06:47:05.9739282Z adding 'torch/signal/__init__.py' 2025-09-07T06:47:05.9743584Z adding 'torch/signal/windows/__init__.py' 2025-09-07T06:47:05.9750565Z adding 'torch/signal/windows/windows.py' 2025-09-07T06:47:05.9761225Z adding 'torch/sparse/__init__.py' 2025-09-07T06:47:05.9768190Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-09-07T06:47:05.9772768Z adding 'torch/sparse/_semi_structured_ops.py' 2025-09-07T06:47:05.9798337Z adding 'torch/sparse/_triton_ops.py' 2025-09-07T06:47:05.9931703Z adding 'torch/sparse/_triton_ops_meta.py' 2025-09-07T06:47:05.9954879Z adding 'torch/sparse/semi_structured.py' 2025-09-07T06:47:05.9966244Z adding 'torch/special/__init__.py' 2025-09-07T06:47:06.0137760Z adding 'torch/test/CppSignature_test.exe' 2025-09-07T06:47:06.0415518Z adding 'torch/test/Dict_test.exe' 2025-09-07T06:47:06.0595397Z adding 'torch/test/Dimname_test.exe' 2025-09-07T06:47:06.0843262Z adding 'torch/test/IListRef_test.exe' 2025-09-07T06:47:06.1084463Z adding 'torch/test/KernelFunction_test.exe' 2025-09-07T06:47:06.1435927Z adding 'torch/test/List_test.exe' 2025-09-07T06:47:06.1688716Z adding 'torch/test/MaybeOwned_test.exe' 2025-09-07T06:47:06.1934758Z adding 'torch/test/NamedTensor_test.exe' 2025-09-07T06:47:06.2148421Z adding 'torch/test/StorageUtils_test.exe' 2025-09-07T06:47:06.2376578Z adding 'torch/test/apply_utils_test.exe' 2025-09-07T06:47:06.2619594Z adding 'torch/test/atest.exe' 2025-09-07T06:47:06.2838459Z adding 'torch/test/backend_fallback_test.exe' 2025-09-07T06:47:06.3088286Z adding 'torch/test/basic.exe' 2025-09-07T06:47:06.3312347Z adding 'torch/test/broadcast_test.exe' 2025-09-07T06:47:06.3494109Z adding 'torch/test/c10_AllocatorConfig_test.exe' 2025-09-07T06:47:06.3666380Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-09-07T06:47:06.3851183Z adding 'torch/test/c10_Bitset_test.exe' 2025-09-07T06:47:06.4016784Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-09-07T06:47:06.4182650Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-09-07T06:47:06.4347555Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-09-07T06:47:06.4520819Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-09-07T06:47:06.4708152Z adding 'torch/test/c10_Device_test.exe' 2025-09-07T06:47:06.4921911Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-09-07T06:47:06.5111676Z adding 'torch/test/c10_Enumerate_test.exe' 2025-09-07T06:47:06.5295822Z adding 'torch/test/c10_Half_test.exe' 2025-09-07T06:47:06.5486077Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-09-07T06:47:06.5674654Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-09-07T06:47:06.5850066Z adding 'torch/test/c10_IntrusiveList_test.exe' 2025-09-07T06:47:06.6051327Z adding 'torch/test/c10_LeftRight_test.exe' 2025-09-07T06:47:06.6234493Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-09-07T06:47:06.6425863Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-09-07T06:47:06.6603872Z adding 'torch/test/c10_Scalar_test.exe' 2025-09-07T06:47:06.6777704Z adding 'torch/test/c10_Semaphore_test.exe' 2025-09-07T06:47:06.6967384Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-09-07T06:47:06.7131852Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-09-07T06:47:06.7321478Z adding 'torch/test/c10_SymInt_test.exe' 2025-09-07T06:47:06.7495723Z adding 'torch/test/c10_Synchronized_test.exe' 2025-09-07T06:47:06.7690666Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-09-07T06:47:06.7882724Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-09-07T06:47:06.8044611Z adding 'torch/test/c10_TypeList_test.exe' 2025-09-07T06:47:06.8201826Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-09-07T06:47:06.8391883Z adding 'torch/test/c10_accumulate_test.exe' 2025-09-07T06:47:06.8581018Z adding 'torch/test/c10_bfloat16_test.exe' 2025-09-07T06:47:06.8752322Z adding 'torch/test/c10_bit_cast_test.exe' 2025-09-07T06:47:06.8959418Z adding 'torch/test/c10_complex_math_test.exe' 2025-09-07T06:47:06.9148475Z adding 'torch/test/c10_complex_test.exe' 2025-09-07T06:47:06.9358316Z adding 'torch/test/c10_cow_test.exe' 2025-09-07T06:47:06.9528633Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_1_var_test.exe' 2025-09-07T06:47:06.9691797Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_stream.exe' 2025-09-07T06:47:06.9863881Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe' 2025-09-07T06:47:07.0020746Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_from_2_processes.exe' 2025-09-07T06:47:07.0183533Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe' 2025-09-07T06:47:07.0355522Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe' 2025-09-07T06:47:07.0515282Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe' 2025-09-07T06:47:07.0671914Z adding 'torch/test/c10_cuda_CUDATest.exe' 2025-09-07T06:47:07.0850105Z adding 'torch/test/c10_error_test.exe' 2025-09-07T06:47:07.1036644Z adding 'torch/test/c10_exception_test.exe' 2025-09-07T06:47:07.1204886Z adding 'torch/test/c10_flags_test.exe' 2025-09-07T06:47:07.1385978Z adding 'torch/test/c10_generic_math_test.exe' 2025-09-07T06:47:07.1535308Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-09-07T06:47:07.1968927Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-09-07T06:47:07.2220139Z adding 'torch/test/c10_irange_test.exe' 2025-09-07T06:47:07.2399433Z adding 'torch/test/c10_lazy_test.exe' 2025-09-07T06:47:07.2588559Z adding 'torch/test/c10_logging_test.exe' 2025-09-07T06:47:07.2834540Z adding 'torch/test/c10_optional_test.exe' 2025-09-07T06:47:07.3038868Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-09-07T06:47:07.3220068Z adding 'torch/test/c10_registry_test.exe' 2025-09-07T06:47:07.3580860Z adding 'torch/test/c10_small_vector_test.exe' 2025-09-07T06:47:07.3766074Z adding 'torch/test/c10_ssize_test.exe' 2025-09-07T06:47:07.3960287Z adding 'torch/test/c10_string_util_test.exe' 2025-09-07T06:47:07.4117238Z adding 'torch/test/c10_string_view_test.exe' 2025-09-07T06:47:07.4278527Z adding 'torch/test/c10_tempfile_test.exe' 2025-09-07T06:47:07.4463106Z adding 'torch/test/c10_typeid_test.exe' 2025-09-07T06:47:07.4659419Z adding 'torch/test/cpu_allocator_test.exe' 2025-09-07T06:47:07.4883243Z adding 'torch/test/cpu_generator_test.exe' 2025-09-07T06:47:07.5089457Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-09-07T06:47:07.5430621Z adding 'torch/test/cpu_rng_test.exe' 2025-09-07T06:47:07.5604530Z adding 'torch/test/cuda_allocatorTraceTracker_test.exe' 2025-09-07T06:47:07.5803229Z adding 'torch/test/cuda_allocator_test.exe' 2025-09-07T06:47:07.5962216Z adding 'torch/test/cuda_apply_test.exe' 2025-09-07T06:47:07.6169406Z adding 'torch/test/cuda_atomic_ops_test.exe' 2025-09-07T06:47:07.6411280Z adding 'torch/test/cuda_caching_host_allocator_test.exe' 2025-09-07T06:47:07.6653543Z adding 'torch/test/cuda_complex_math_test.exe' 2025-09-07T06:47:07.6919022Z adding 'torch/test/cuda_complex_test.exe' 2025-09-07T06:47:07.7144064Z adding 'torch/test/cuda_cub_test.exe' 2025-09-07T06:47:07.7403737Z adding 'torch/test/cuda_cudnn_test.exe' 2025-09-07T06:47:07.7568676Z adding 'torch/test/cuda_device_test.exe' 2025-09-07T06:47:07.7924283Z adding 'torch/test/cuda_distributions_test.exe' 2025-09-07T06:47:07.8137674Z adding 'torch/test/cuda_dlconvertor_test.exe' 2025-09-07T06:47:07.8318924Z adding 'torch/test/cuda_exchange_device_test.exe' 2025-09-07T06:47:07.8577681Z adding 'torch/test/cuda_generator_test.exe' 2025-09-07T06:47:07.8804046Z adding 'torch/test/cuda_half_test.exe' 2025-09-07T06:47:07.9005959Z adding 'torch/test/cuda_integer_divider_test.exe' 2025-09-07T06:47:07.9212964Z adding 'torch/test/cuda_optional_test.exe' 2025-09-07T06:47:07.9460296Z adding 'torch/test/cuda_packedtensoraccessor_test.exe' 2025-09-07T06:47:07.9668327Z adding 'torch/test/cuda_reportMemoryUsage_test.exe' 2025-09-07T06:47:07.9933321Z adding 'torch/test/cuda_stream_test.exe' 2025-09-07T06:47:08.0147677Z adding 'torch/test/cuda_vectorized_test.exe' 2025-09-07T06:47:08.0404339Z adding 'torch/test/dlconvertor_test.exe' 2025-09-07T06:47:08.0627378Z adding 'torch/test/extension_backend_test.exe' 2025-09-07T06:47:08.0897179Z adding 'torch/test/half_test.exe' 2025-09-07T06:47:08.1152902Z adding 'torch/test/inline_container_test.exe' 2025-09-07T06:47:08.1502212Z adding 'torch/test/ivalue_test.exe' 2025-09-07T06:47:08.1905282Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-09-07T06:47:08.2245815Z adding 'torch/test/kernel_function_test.exe' 2025-09-07T06:47:08.2666603Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-09-07T06:47:08.3029798Z adding 'torch/test/kernel_lambda_test.exe' 2025-09-07T06:47:08.3270584Z adding 'torch/test/kernel_stackbased_test.exe' 2025-09-07T06:47:08.3470494Z adding 'torch/test/lazy_tensor_test.exe' 2025-09-07T06:47:08.3757003Z adding 'torch/test/legacy_vmap_test.exe' 2025-09-07T06:47:08.4097811Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-09-07T06:47:08.4317260Z adding 'torch/test/math_kernel_test.exe' 2025-09-07T06:47:08.4522228Z adding 'torch/test/memory_format_test.exe' 2025-09-07T06:47:08.4729139Z adding 'torch/test/memory_overlapping_test.exe' 2025-09-07T06:47:08.4938033Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-09-07T06:47:08.5161206Z adding 'torch/test/native_test.exe' 2025-09-07T06:47:08.5321747Z adding 'torch/test/op_allowlist_test.exe' 2025-09-07T06:47:08.6131355Z adding 'torch/test/op_registration_test.exe' 2025-09-07T06:47:08.6353330Z adding 'torch/test/operator_name_test.exe' 2025-09-07T06:47:08.6552641Z adding 'torch/test/operators_test.exe' 2025-09-07T06:47:08.6758334Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-09-07T06:47:08.7036030Z adding 'torch/test/pow_test.exe' 2025-09-07T06:47:08.7263236Z adding 'torch/test/quantized_test.exe' 2025-09-07T06:47:08.7473256Z adding 'torch/test/reduce_ops_test.exe' 2025-09-07T06:47:08.7677787Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-09-07T06:47:08.7912545Z adding 'torch/test/scalar_tensor_test.exe' 2025-09-07T06:47:08.8147963Z adding 'torch/test/scalar_test.exe' 2025-09-07T06:47:08.8353647Z adding 'torch/test/stride_properties_test.exe' 2025-09-07T06:47:08.8624990Z adding 'torch/test/tensor_iterator_test.exe' 2025-09-07T06:47:08.8841990Z adding 'torch/test/test_parallel.exe' 2025-09-07T06:47:08.9049664Z adding 'torch/test/thread_init_test.exe' 2025-09-07T06:47:08.9227108Z adding 'torch/test/type_ptr_test.exe' 2025-09-07T06:47:08.9457802Z adding 'torch/test/type_test.exe' 2025-09-07T06:47:08.9668285Z adding 'torch/test/undefined_tensor_test.exe' 2025-09-07T06:47:08.9863804Z adding 'torch/test/verify_api_visibility.exe' 2025-09-07T06:47:09.0079218Z adding 'torch/test/weakref_test.exe' 2025-09-07T06:47:09.0288664Z adding 'torch/test/wrapdim_test.exe' 2025-09-07T06:47:09.0503850Z adding 'torch/test/xla_tensor_test.exe' 2025-09-07T06:47:09.0516259Z adding 'torch/testing/__init__.py' 2025-09-07T06:47:09.0537067Z adding 'torch/testing/_comparison.py' 2025-09-07T06:47:09.0544721Z adding 'torch/testing/_creation.py' 2025-09-07T06:47:09.0548836Z adding 'torch/testing/_utils.py' 2025-09-07T06:47:09.0554422Z adding 'torch/testing/_internal/__init__.py' 2025-09-07T06:47:09.0561609Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-09-07T06:47:09.0568017Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-09-07T06:47:09.0573064Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-09-07T06:47:09.0579413Z adding 'torch/testing/_internal/common_cuda.py' 2025-09-07T06:47:09.0606559Z adding 'torch/testing/_internal/common_device_type.py' 2025-09-07T06:47:09.0611825Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-09-07T06:47:09.0635819Z adding 'torch/testing/_internal/common_distributed.py' 2025-09-07T06:47:09.0641235Z adding 'torch/testing/_internal/common_dtype.py' 2025-09-07T06:47:09.0659933Z adding 'torch/testing/_internal/common_fsdp.py' 2025-09-07T06:47:09.0667770Z adding 'torch/testing/_internal/common_jit.py' 2025-09-07T06:47:09.0924920Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-09-07T06:47:09.0959293Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-09-07T06:47:09.0994017Z adding 'torch/testing/_internal/common_modules.py' 2025-09-07T06:47:09.1006762Z adding 'torch/testing/_internal/common_mps.py' 2025-09-07T06:47:09.1041499Z adding 'torch/testing/_internal/common_nn.py' 2025-09-07T06:47:09.1064405Z adding 'torch/testing/_internal/common_optimizers.py' 2025-09-07T06:47:09.1071415Z adding 'torch/testing/_internal/common_pruning.py' 2025-09-07T06:47:09.1105411Z adding 'torch/testing/_internal/common_quantization.py' 2025-09-07T06:47:09.1118200Z adding 'torch/testing/_internal/common_quantized.py' 2025-09-07T06:47:09.1124799Z adding 'torch/testing/_internal/common_subclass.py' 2025-09-07T06:47:09.1217970Z adding 'torch/testing/_internal/common_utils.py' 2025-09-07T06:47:09.1233453Z adding 'torch/testing/_internal/composite_compliance.py' 2025-09-07T06:47:09.1241768Z adding 'torch/testing/_internal/custom_op_db.py' 2025-09-07T06:47:09.1246230Z adding 'torch/testing/_internal/custom_tensor.py' 2025-09-07T06:47:09.1251677Z adding 'torch/testing/_internal/dist_utils.py' 2025-09-07T06:47:09.1256674Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-09-07T06:47:09.1260638Z adding 'torch/testing/_internal/fake_config_module.py' 2025-09-07T06:47:09.1263706Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-09-07T06:47:09.1267498Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-09-07T06:47:09.1272601Z adding 'torch/testing/_internal/hop_db.py' 2025-09-07T06:47:09.1279980Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-09-07T06:47:09.1286816Z adding 'torch/testing/_internal/inductor_utils.py' 2025-09-07T06:47:09.1299123Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-09-07T06:47:09.1312889Z adding 'torch/testing/_internal/jit_utils.py' 2025-09-07T06:47:09.1318802Z adding 'torch/testing/_internal/logging_tensor.py' 2025-09-07T06:47:09.1328096Z adding 'torch/testing/_internal/logging_utils.py' 2025-09-07T06:47:09.1331534Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-09-07T06:47:09.1335463Z adding 'torch/testing/_internal/static_module.py' 2025-09-07T06:47:09.1338945Z adding 'torch/testing/_internal/subclasses.py' 2025-09-07T06:47:09.1343461Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-09-07T06:47:09.1353110Z adding 'torch/testing/_internal/triton_utils.py' 2025-09-07T06:47:09.1358058Z adding 'torch/testing/_internal/two_tensor.py' 2025-09-07T06:47:09.1362010Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-09-07T06:47:09.1366110Z adding 'torch/testing/_internal/data/__init__.py' 2025-09-07T06:47:09.1368940Z adding 'torch/testing/_internal/data/network1.py' 2025-09-07T06:47:09.1372440Z adding 'torch/testing/_internal/data/network2.py' 2025-09-07T06:47:09.1376697Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-09-07T06:47:09.1381358Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-09-07T06:47:09.1386805Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-09-07T06:47:09.1397159Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-09-07T06:47:09.1501541Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-09-07T06:47:09.1514462Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-09-07T06:47:09.1517639Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-09-07T06:47:09.1524953Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-09-07T06:47:09.1530581Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-09-07T06:47:09.1534864Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-09-07T06:47:09.1538884Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-09-07T06:47:09.1545883Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-09-07T06:47:09.1551182Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-09-07T06:47:09.1554739Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-09-07T06:47:09.1558791Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-09-07T06:47:09.1569082Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-09-07T06:47:09.1573911Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-09-07T06:47:09.1577488Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-09-07T06:47:09.1585848Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-09-07T06:47:09.1590501Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-09-07T06:47:09.1620809Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-09-07T06:47:09.1629095Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-09-07T06:47:09.1635257Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-09-07T06:47:09.1639197Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-09-07T06:47:09.1643293Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-09-07T06:47:09.1706068Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-09-07T06:47:09.1715129Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-09-07T06:47:09.1719179Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-09-07T06:47:09.1723261Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-09-07T06:47:09.1729350Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-09-07T06:47:09.1733685Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-09-07T06:47:09.1737941Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-09-07T06:47:09.1752967Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-09-07T06:47:09.1759349Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-09-07T06:47:09.1763391Z adding 'torch/testing/_internal/generated/__init__.py' 2025-09-07T06:47:09.1817586Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-09-07T06:47:09.1833651Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-09-07T06:47:09.1875781Z adding 'torch/testing/_internal/opinfo/core.py' 2025-09-07T06:47:09.1883581Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-09-07T06:47:09.1888232Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-09-07T06:47:09.1892310Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-09-07T06:47:09.1902857Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-09-07T06:47:09.1909972Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-09-07T06:47:09.1931128Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-09-07T06:47:09.1949818Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-09-07T06:47:09.1956432Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-09-07T06:47:09.1965827Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-09-07T06:47:09.1972680Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-09-07T06:47:09.1977103Z adding 'torch/testing/_internal/optests/__init__.py' 2025-09-07T06:47:09.1981663Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-09-07T06:47:09.1986262Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-09-07T06:47:09.1989271Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-09-07T06:47:09.2001071Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-09-07T06:47:09.2005565Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-09-07T06:47:09.2009216Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-09-07T06:47:09.2012152Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-09-07T06:47:09.2016498Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-09-07T06:47:09.2022529Z adding 'torch/utils/__init__.py' 2025-09-07T06:47:09.2028341Z adding 'torch/utils/_appending_byte_serializer.py' 2025-09-07T06:47:09.2034562Z adding 'torch/utils/_backport_slots.py' 2025-09-07T06:47:09.2050629Z adding 'torch/utils/_config_module.py' 2025-09-07T06:47:09.2054241Z adding 'torch/utils/_config_typing.pyi' 2025-09-07T06:47:09.2060316Z adding 'torch/utils/_content_store.py' 2025-09-07T06:47:09.2065626Z adding 'torch/utils/_contextlib.py' 2025-09-07T06:47:09.2069722Z adding 'torch/utils/_cpp_embed_headers.py' 2025-09-07T06:47:09.2073283Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-09-07T06:47:09.2085732Z adding 'torch/utils/_cxx_pytree.py' 2025-09-07T06:47:09.2090760Z adding 'torch/utils/_device.py' 2025-09-07T06:47:09.2094580Z adding 'torch/utils/_dtype_abbrs.py' 2025-09-07T06:47:09.2097813Z adding 'torch/utils/_exposed_in.py' 2025-09-07T06:47:09.2101505Z adding 'torch/utils/_filelock.py' 2025-09-07T06:47:09.2105494Z adding 'torch/utils/_foreach_utils.py' 2025-09-07T06:47:09.2108866Z adding 'torch/utils/_functools.py' 2025-09-07T06:47:09.2114183Z adding 'torch/utils/_get_clean_triton.py' 2025-09-07T06:47:09.2117774Z adding 'torch/utils/_helion.py' 2025-09-07T06:47:09.2121003Z adding 'torch/utils/_import_utils.py' 2025-09-07T06:47:09.2124475Z adding 'torch/utils/_mode_utils.py' 2025-09-07T06:47:09.2128851Z adding 'torch/utils/_ordered_set.py' 2025-09-07T06:47:09.2142889Z adding 'torch/utils/_python_dispatch.py' 2025-09-07T06:47:09.2168405Z adding 'torch/utils/_pytree.py' 2025-09-07T06:47:09.2173847Z adding 'torch/utils/_stats.py' 2025-09-07T06:47:09.2177189Z adding 'torch/utils/_thunk.py' 2025-09-07T06:47:09.2183843Z adding 'torch/utils/_traceback.py' 2025-09-07T06:47:09.2188187Z adding 'torch/utils/_triton.py' 2025-09-07T06:47:09.2191994Z adding 'torch/utils/_typing_utils.py' 2025-09-07T06:47:09.2195989Z adding 'torch/utils/_zip.py' 2025-09-07T06:47:09.2204249Z adding 'torch/utils/backend_registration.py' 2025-09-07T06:47:09.2213364Z adding 'torch/utils/bundled_inputs.py' 2025-09-07T06:47:09.2241882Z adding 'torch/utils/checkpoint.py' 2025-09-07T06:47:09.2254615Z adding 'torch/utils/collect_env.py' 2025-09-07T06:47:09.2258629Z adding 'torch/utils/cpp_backtrace.py' 2025-09-07T06:47:09.2304514Z adding 'torch/utils/cpp_extension.py' 2025-09-07T06:47:09.2310411Z adding 'torch/utils/deterministic.py' 2025-09-07T06:47:09.2315742Z adding 'torch/utils/dlpack.py' 2025-09-07T06:47:09.2319371Z adding 'torch/utils/file_baton.py' 2025-09-07T06:47:09.2330753Z adding 'torch/utils/flop_counter.py' 2025-09-07T06:47:09.2336937Z adding 'torch/utils/hooks.py' 2025-09-07T06:47:09.2341589Z adding 'torch/utils/mkldnn.py' 2025-09-07T06:47:09.2346220Z adding 'torch/utils/mobile_optimizer.py' 2025-09-07T06:47:09.2348936Z adding 'torch/utils/model_zoo.py' 2025-09-07T06:47:09.2353009Z adding 'torch/utils/module_tracker.py' 2025-09-07T06:47:09.2357229Z adding 'torch/utils/show_pickle.py' 2025-09-07T06:47:09.2361914Z adding 'torch/utils/throughput_benchmark.py' 2025-09-07T06:47:09.2367824Z adding 'torch/utils/weak.py' 2025-09-07T06:47:09.2371816Z adding 'torch/utils/_strobelight/__init__.py' 2025-09-07T06:47:09.2376962Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-09-07T06:47:09.2381041Z adding 'torch/utils/_sympy/__init__.py' 2025-09-07T06:47:09.2399455Z adding 'torch/utils/_sympy/functions.py' 2025-09-07T06:47:09.2405461Z adding 'torch/utils/_sympy/interp.py' 2025-09-07T06:47:09.2410154Z adding 'torch/utils/_sympy/numbers.py' 2025-09-07T06:47:09.2416826Z adding 'torch/utils/_sympy/printers.py' 2025-09-07T06:47:09.2425704Z adding 'torch/utils/_sympy/reference.py' 2025-09-07T06:47:09.2431643Z adding 'torch/utils/_sympy/singleton_int.py' 2025-09-07T06:47:09.2446984Z adding 'torch/utils/_sympy/solve.py' 2025-09-07T06:47:09.2451514Z adding 'torch/utils/_sympy/symbol.py' 2025-09-07T06:47:09.2465499Z adding 'torch/utils/_sympy/value_ranges.py' 2025-09-07T06:47:09.2470042Z adding 'torch/utils/backcompat/__init__.py' 2025-09-07T06:47:09.2473738Z adding 'torch/utils/benchmark/__init__.py' 2025-09-07T06:47:09.2477356Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-09-07T06:47:09.2481352Z adding 'torch/utils/benchmark/examples/compare.py' 2025-09-07T06:47:09.2485605Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-09-07T06:47:09.2490098Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-09-07T06:47:09.2493729Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-09-07T06:47:09.2498314Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-09-07T06:47:09.2502802Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-09-07T06:47:09.2506931Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-09-07T06:47:09.2510564Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-09-07T06:47:09.2514139Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-09-07T06:47:09.2517979Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-09-07T06:47:09.2521580Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-09-07T06:47:09.2525469Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-09-07T06:47:09.2528671Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-09-07T06:47:09.2535175Z adding 'torch/utils/benchmark/utils/common.py' 2025-09-07T06:47:09.2542008Z adding 'torch/utils/benchmark/utils/compare.py' 2025-09-07T06:47:09.2547064Z adding 'torch/utils/benchmark/utils/compile.py' 2025-09-07T06:47:09.2551948Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-09-07T06:47:09.2559828Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-09-07T06:47:09.2564499Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-09-07T06:47:09.2567833Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-09-07T06:47:09.2576426Z adding 'torch/utils/benchmark/utils/timer.py' 2025-09-07T06:47:09.2580797Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-09-07T06:47:09.2585121Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-09-07T06:47:09.2588830Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-09-07T06:47:09.2592243Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-09-07T06:47:09.2606189Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-09-07T06:47:09.2659538Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-09-07T06:47:09.2671678Z adding 'torch/utils/bottleneck/__init__.py' 2025-09-07T06:47:09.2676119Z adding 'torch/utils/bottleneck/__main__.py' 2025-09-07T06:47:09.2680440Z adding 'torch/utils/data/__init__.py' 2025-09-07T06:47:09.2683515Z adding 'torch/utils/data/backward_compatibility.py' 2025-09-07T06:47:09.2713970Z adding 'torch/utils/data/dataloader.py' 2025-09-07T06:47:09.2723433Z adding 'torch/utils/data/dataset.py' 2025-09-07T06:47:09.2728312Z adding 'torch/utils/data/distributed.py' 2025-09-07T06:47:09.2732730Z adding 'torch/utils/data/graph.py' 2025-09-07T06:47:09.2737315Z adding 'torch/utils/data/graph_settings.py' 2025-09-07T06:47:09.2743549Z adding 'torch/utils/data/sampler.py' 2025-09-07T06:47:09.2748094Z adding 'torch/utils/data/_utils/__init__.py' 2025-09-07T06:47:09.2754830Z adding 'torch/utils/data/_utils/collate.py' 2025-09-07T06:47:09.2758507Z adding 'torch/utils/data/_utils/fetch.py' 2025-09-07T06:47:09.2762429Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-09-07T06:47:09.2766276Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-09-07T06:47:09.2773166Z adding 'torch/utils/data/_utils/worker.py' 2025-09-07T06:47:09.2777328Z adding 'torch/utils/data/datapipes/__init__.py' 2025-09-07T06:47:09.2782004Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-09-07T06:47:09.2788083Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-09-07T06:47:09.2795754Z adding 'torch/utils/data/datapipes/_typing.py' 2025-09-07T06:47:09.2802643Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-09-07T06:47:09.2813731Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-09-07T06:47:09.2820564Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-09-07T06:47:09.2824902Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-09-07T06:47:09.2828520Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-09-07T06:47:09.2834255Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-09-07T06:47:09.2838435Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-09-07T06:47:09.2841791Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-09-07T06:47:09.2845897Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-09-07T06:47:09.2851365Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-09-07T06:47:09.2856400Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-09-07T06:47:09.2865713Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-09-07T06:47:09.2870009Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-09-07T06:47:09.2873759Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-09-07T06:47:09.2879545Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-09-07T06:47:09.2883678Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-09-07T06:47:09.2887972Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-09-07T06:47:09.2891378Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-09-07T06:47:09.2895202Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-09-07T06:47:09.2898496Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-09-07T06:47:09.2903208Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-09-07T06:47:09.2907040Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-09-07T06:47:09.2911510Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-09-07T06:47:09.2915800Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-09-07T06:47:09.2919838Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-09-07T06:47:09.2923283Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-09-07T06:47:09.2927031Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-09-07T06:47:09.2933318Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-09-07T06:47:09.2939526Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-09-07T06:47:09.2943875Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-09-07T06:47:09.2948311Z adding 'torch/utils/hipify/__init__.py' 2025-09-07T06:47:09.2950848Z adding 'torch/utils/hipify/constants.py' 2025-09-07T06:47:09.3015352Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-09-07T06:47:09.3042209Z adding 'torch/utils/hipify/hipify_python.py' 2025-09-07T06:47:09.3045746Z adding 'torch/utils/hipify/version.py' 2025-09-07T06:47:09.3049225Z adding 'torch/utils/jit/__init__.py' 2025-09-07T06:47:09.3053120Z adding 'torch/utils/jit/log_extract.py' 2025-09-07T06:47:09.3061532Z adding 'torch/utils/model_dump/__init__.py' 2025-09-07T06:47:09.3064773Z adding 'torch/utils/model_dump/__main__.py' 2025-09-07T06:47:09.3071984Z adding 'torch/utils/model_dump/code.js' 2025-09-07T06:47:09.3075791Z adding 'torch/utils/model_dump/htm.mjs' 2025-09-07T06:47:09.3081493Z adding 'torch/utils/model_dump/preact.mjs' 2025-09-07T06:47:09.3084763Z adding 'torch/utils/model_dump/skeleton.html' 2025-09-07T06:47:09.3088214Z adding 'torch/utils/serialization/__init__.py' 2025-09-07T06:47:09.3091164Z adding 'torch/utils/serialization/config.py' 2025-09-07T06:47:09.3094965Z adding 'torch/utils/tensorboard/__init__.py' 2025-09-07T06:47:09.3097954Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-09-07T06:47:09.3101635Z adding 'torch/utils/tensorboard/_embedding.py' 2025-09-07T06:47:09.3105025Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-09-07T06:47:09.3108372Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-09-07T06:47:09.3114958Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-09-07T06:47:09.3119284Z adding 'torch/utils/tensorboard/_utils.py' 2025-09-07T06:47:09.3131894Z adding 'torch/utils/tensorboard/summary.py' 2025-09-07T06:47:09.3146801Z adding 'torch/utils/tensorboard/writer.py' 2025-09-07T06:47:09.3151446Z adding 'torch/utils/viz/__init__.py' 2025-09-07T06:47:09.3159195Z adding 'torch/utils/viz/_cycles.py' 2025-09-07T06:47:09.3167556Z adding 'torch/xpu/__init__.py' 2025-09-07T06:47:09.3171108Z adding 'torch/xpu/_gpu_trace.py' 2025-09-07T06:47:09.3174524Z adding 'torch/xpu/_utils.py' 2025-09-07T06:47:09.3178738Z adding 'torch/xpu/memory.py' 2025-09-07T06:47:09.3182802Z adding 'torch/xpu/random.py' 2025-09-07T06:47:09.3187138Z adding 'torch/xpu/streams.py' 2025-09-07T06:47:09.3309517Z adding 'torch-2.9.0a0+git93fb23d.dist-info/licenses/LICENSE' 2025-09-07T06:47:09.3330813Z adding 'torch-2.9.0a0+git93fb23d.dist-info/licenses/NOTICE' 2025-09-07T06:47:09.3335472Z adding 'torchgen/__init__.py' 2025-09-07T06:47:09.3339166Z adding 'torchgen/code_template.py' 2025-09-07T06:47:09.3343206Z adding 'torchgen/context.py' 2025-09-07T06:47:09.3380327Z adding 'torchgen/gen.py' 2025-09-07T06:47:09.3392946Z adding 'torchgen/gen_aoti_c_shim.py' 2025-09-07T06:47:09.3402277Z adding 'torchgen/gen_backend_stubs.py' 2025-09-07T06:47:09.3417750Z adding 'torchgen/gen_functionalization_type.py' 2025-09-07T06:47:09.3428152Z adding 'torchgen/gen_lazy_tensor.py' 2025-09-07T06:47:09.3432526Z adding 'torchgen/gen_schema_utils.py' 2025-09-07T06:47:09.3437499Z adding 'torchgen/gen_vmap_plumbing.py' 2025-09-07T06:47:09.3441046Z adding 'torchgen/local.py' 2025-09-07T06:47:09.3483386Z adding 'torchgen/model.py' 2025-09-07T06:47:09.3497505Z adding 'torchgen/native_function_generation.py' 2025-09-07T06:47:09.3506196Z adding 'torchgen/utils.py' 2025-09-07T06:47:09.3509894Z adding 'torchgen/yaml_utils.py' 2025-09-07T06:47:09.3513525Z adding 'torchgen/aoti/__init__.py' 2025-09-07T06:47:09.3517622Z adding 'torchgen/aoti/fallback_ops.py' 2025-09-07T06:47:09.3521537Z adding 'torchgen/api/__init__.py' 2025-09-07T06:47:09.3535716Z adding 'torchgen/api/autograd.py' 2025-09-07T06:47:09.3544382Z adding 'torchgen/api/cpp.py' 2025-09-07T06:47:09.3548558Z adding 'torchgen/api/dispatcher.py' 2025-09-07T06:47:09.3553237Z adding 'torchgen/api/functionalization.py' 2025-09-07T06:47:09.3560823Z adding 'torchgen/api/lazy.py' 2025-09-07T06:47:09.3564434Z adding 'torchgen/api/meta.py' 2025-09-07T06:47:09.3568623Z adding 'torchgen/api/native.py' 2025-09-07T06:47:09.3591948Z adding 'torchgen/api/python.py' 2025-09-07T06:47:09.3599197Z adding 'torchgen/api/structured.py' 2025-09-07T06:47:09.3606465Z adding 'torchgen/api/translate.py' 2025-09-07T06:47:09.3611809Z adding 'torchgen/api/ufunc.py' 2025-09-07T06:47:09.3617170Z adding 'torchgen/api/unboxing.py' 2025-09-07T06:47:09.3621212Z adding 'torchgen/api/types/__init__.py' 2025-09-07T06:47:09.3627908Z adding 'torchgen/api/types/signatures.py' 2025-09-07T06:47:09.3632802Z adding 'torchgen/api/types/types.py' 2025-09-07T06:47:09.3637821Z adding 'torchgen/api/types/types_base.py' 2025-09-07T06:47:09.3641906Z adding 'torchgen/dest/__init__.py' 2025-09-07T06:47:09.3652280Z adding 'torchgen/dest/lazy_ir.py' 2025-09-07T06:47:09.3656403Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-09-07T06:47:09.3660015Z adding 'torchgen/dest/native_functions.py' 2025-09-07T06:47:09.3674208Z adding 'torchgen/dest/register_dispatch_key.py' 2025-09-07T06:47:09.3682259Z adding 'torchgen/dest/ufunc.py' 2025-09-07T06:47:09.3686377Z adding 'torchgen/operator_versions/__init__.py' 2025-09-07T06:47:09.3692945Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-09-07T06:47:09.3696288Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-09-07T06:47:09.3815805Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-09-07T06:47:09.3834794Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-09-07T06:47:09.3840234Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-09-07T06:47:09.3843838Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-09-07T06:47:09.3847138Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-09-07T06:47:09.3850573Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-09-07T06:47:09.3853910Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-09-07T06:47:09.3856982Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-09-07T06:47:09.3859922Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-09-07T06:47:09.3862905Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-09-07T06:47:09.3866305Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-09-07T06:47:09.3870051Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-09-07T06:47:09.3874085Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-09-07T06:47:09.3877321Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-09-07T06:47:09.3880280Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-09-07T06:47:09.3883491Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-09-07T06:47:09.3886441Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-09-07T06:47:09.3889647Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-09-07T06:47:09.3892616Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-09-07T06:47:09.3895634Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-09-07T06:47:09.3898513Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-09-07T06:47:09.3901792Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-09-07T06:47:09.3905490Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-09-07T06:47:09.3908857Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-09-07T06:47:09.3911953Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-09-07T06:47:09.3915353Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-09-07T06:47:09.3919050Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-09-07T06:47:09.3922535Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-09-07T06:47:09.3926476Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-09-07T06:47:09.3930428Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-09-07T06:47:09.3933804Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-09-07T06:47:09.3937242Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-09-07T06:47:09.3950178Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-09-07T06:47:09.3954572Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-09-07T06:47:09.3957676Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-09-07T06:47:09.3960790Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-09-07T06:47:09.3963818Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-09-07T06:47:09.3966914Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-09-07T06:47:09.3970122Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-09-07T06:47:09.3973270Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-09-07T06:47:09.3976203Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-09-07T06:47:09.3980284Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-09-07T06:47:09.3983049Z adding 'torchgen/packaged/autograd/README.md' 2025-09-07T06:47:09.3985824Z adding 'torchgen/packaged/autograd/__init__.py' 2025-09-07T06:47:09.3988897Z adding 'torchgen/packaged/autograd/build.bzl' 2025-09-07T06:47:09.3991876Z adding 'torchgen/packaged/autograd/context.py' 2025-09-07T06:47:09.3995353Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-09-07T06:47:09.4043825Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-09-07T06:47:09.4051911Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-09-07T06:47:09.4055483Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-09-07T06:47:09.4067180Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-09-07T06:47:09.4076859Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-09-07T06:47:09.4093711Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-09-07T06:47:09.4102685Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-09-07T06:47:09.4107072Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-09-07T06:47:09.4133604Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-09-07T06:47:09.4141664Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-09-07T06:47:09.4156107Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-09-07T06:47:09.4162003Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-09-07T06:47:09.4165064Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-09-07T06:47:09.4168272Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-09-07T06:47:09.4171367Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-09-07T06:47:09.4174809Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-09-07T06:47:09.4178128Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-09-07T06:47:09.4181109Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-09-07T06:47:09.4184034Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-09-07T06:47:09.4186868Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-09-07T06:47:09.4189776Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-09-07T06:47:09.4193180Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-09-07T06:47:09.4196342Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-09-07T06:47:09.4199431Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-09-07T06:47:09.4202707Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-09-07T06:47:09.4206211Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-09-07T06:47:09.4209983Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-09-07T06:47:09.4213222Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-09-07T06:47:09.4216232Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-09-07T06:47:09.4219541Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-09-07T06:47:09.4223098Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-09-07T06:47:09.4226661Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-09-07T06:47:09.4239242Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-09-07T06:47:09.4244473Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-09-07T06:47:09.4248311Z adding 'torchgen/selective_build/__init__.py' 2025-09-07T06:47:09.4252818Z adding 'torchgen/selective_build/operator.py' 2025-09-07T06:47:09.4258730Z adding 'torchgen/selective_build/selector.py' 2025-09-07T06:47:09.4263305Z adding 'torchgen/static_runtime/__init__.py' 2025-09-07T06:47:09.4267724Z adding 'torchgen/static_runtime/config.py' 2025-09-07T06:47:09.4272606Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-09-07T06:47:09.4281445Z adding 'torchgen/static_runtime/generator.py' 2025-09-07T06:47:09.4294194Z adding 'torch-2.9.0a0+git93fb23d.dist-info/METADATA' 2025-09-07T06:47:09.4296978Z adding 'torch-2.9.0a0+git93fb23d.dist-info/WHEEL' 2025-09-07T06:47:09.4299026Z adding 'torch-2.9.0a0+git93fb23d.dist-info/entry_points.txt' 2025-09-07T06:47:09.4301058Z adding 'torch-2.9.0a0+git93fb23d.dist-info/top_level.txt' 2025-09-07T06:47:09.5053372Z adding 'torch-2.9.0a0+git93fb23d.dist-info/RECORD' 2025-09-07T06:47:09.5435491Z removing build\bdist.win-amd64\wheel 2025-09-07T06:47:11.1849791Z 2025-09-07T06:47:11.1867609Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-09-07T06:47:11.1874295Z 2025-09-07T06:47:11.1874781Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-09-07T06:47:11.1875357Z 2025-09-07T06:47:11.1875590Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-09-07T06:47:11.2137430Z Compile requests 7373 2025-09-07T06:47:11.2137896Z Compile requests executed 7372 2025-09-07T06:47:11.2138201Z Cache hits 7304 2025-09-07T06:47:11.2138474Z Cache hits (C/C++) 6979 2025-09-07T06:47:11.2138764Z Cache hits (CUDA) 325 2025-09-07T06:47:11.2139031Z Cache misses 51 2025-09-07T06:47:11.2139312Z Cache misses (C/C++) 51 2025-09-07T06:47:11.2139580Z Cache timeouts 0 2025-09-07T06:47:11.2139931Z Cache read errors 0 2025-09-07T06:47:11.2140315Z Forced recaches 0 2025-09-07T06:47:11.2140588Z Cache write errors 0 2025-09-07T06:47:11.2140878Z Compilation failures 3 2025-09-07T06:47:11.2141157Z Cache errors 14 2025-09-07T06:47:11.2141435Z Cache errors (C/C++) 14 2025-09-07T06:47:11.2141719Z Non-cacheable compilations 2 2025-09-07T06:47:11.2142013Z Non-cacheable calls 0 2025-09-07T06:47:11.2142289Z Non-compilation calls 1 2025-09-07T06:47:11.2142589Z Unsupported compiler calls 0 2025-09-07T06:47:11.2142890Z Average cache write 0.027 s 2025-09-07T06:47:11.2143174Z Average compiler 0.135 s 2025-09-07T06:47:11.2143480Z Average cache read hit 0.052 s 2025-09-07T06:47:11.2143785Z Failed distributed compilations 0 2025-09-07T06:47:11.2144176Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-09-07T06:47:11.2144568Z Version (client) 0.7.4 2025-09-07T06:47:11.2160460Z 2025-09-07T06:47:11.2161349Z (base) C:\actions-runner\_work\pytorch\pytorch>python -c "import os, glob; os.system('python -mpip install --no-index --no-deps ' + glob.glob('dist/*.whl')[0])" 2025-09-07T06:47:12.4334308Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl 2025-09-07T06:47:13.7991061Z Installing collected packages: torch 2025-09-07T06:47:35.3299621Z Successfully installed torch-2.9.0a0+git93fb23d 2025-09-07T06:47:35.4142178Z 2025-09-07T06:47:35.4143648Z (base) C:\actions-runner\_work\pytorch\pytorch>(if "win-vs2022-cuda12.6-py3" == "" (echo NOTE: To run `import torch`, please make sure to activate the conda environment by running `call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3` in Command Prompt before running Git Bash. ) else ( 2025-09-07T06:47:35.4144978Z copy /Y "dist\*.whl" "C:/17524754564/build-results/" 2025-09-07T06:47:35.4145334Z python tools/stats/export_test_times.py 2025-09-07T06:47:35.4145801Z robocopy /E ".additional_ci_files" "C:/17524754564/build-results/\.additional_ci_files" 2025-09-07T06:47:35.4146316Z copy /Y "build\.ninja_log" "C:/17524754564/build-results/\" 2025-09-07T06:47:35.4146653Z ) ) 2025-09-07T06:47:35.4169047Z dist\torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl 2025-09-07T06:47:35.6319243Z 1 file(s) copied. 2025-09-07T06:47:36.4712898Z Exporting test times from test-infra 2025-09-07T06:47:36.4713915Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-times.json to C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\test-times.json 2025-09-07T06:47:36.4715494Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-class-times.json to C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\test-class-times.json 2025-09-07T06:47:36.6367675Z 2025-09-07T06:47:36.6368139Z ------------------------------------------------------------------------------- 2025-09-07T06:47:36.6369293Z ROBOCOPY :: Robust File Copy for Windows 2025-09-07T06:47:36.6369803Z ------------------------------------------------------------------------------- 2025-09-07T06:47:36.6370080Z 2025-09-07T06:47:36.6371462Z Started : Sunday, September 7, 2025 6:47:36 AM 2025-09-07T06:47:36.6371963Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-09-07T06:47:36.6372493Z Dest : C:\17524754564\build-results\.additional_ci_files\ 2025-09-07T06:47:36.6372749Z 2025-09-07T06:47:36.6373228Z Files : *.* 2025-09-07T06:47:36.6373555Z 2025-09-07T06:47:36.6374616Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-09-07T06:47:36.6374921Z 2025-09-07T06:47:36.6375117Z ------------------------------------------------------------------------------ 2025-09-07T06:47:36.6386845Z 2025-09-07T06:47:36.6393300Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-09-07T06:47:36.6410280Z New File 4.3 m test-class-times.json 2025-09-07T06:47:36.6413258Z 11% 2025-09-07T06:47:36.6416791Z 22% 2025-09-07T06:47:36.6419758Z 34% 2025-09-07T06:47:36.6423459Z 45% 2025-09-07T06:47:36.6426329Z 57% 2025-09-07T06:47:36.6429891Z 68% 2025-09-07T06:47:36.6432743Z 80% 2025-09-07T06:47:36.6435539Z 91% 2025-09-07T06:47:36.6437632Z 100% 2025-09-07T06:47:36.6442123Z New File 1.1 m test-times.json 2025-09-07T06:47:36.6443739Z 20% 2025-09-07T06:47:36.6445324Z 41% 2025-09-07T06:47:36.6447329Z 62% 2025-09-07T06:47:36.6448748Z 83% 2025-09-07T06:47:36.6451932Z 100% 2025-09-07T06:47:36.6452332Z 2025-09-07T06:47:36.6452511Z ------------------------------------------------------------------------------ 2025-09-07T06:47:36.6452793Z 2025-09-07T06:47:36.6453880Z Total Copied Skipped Mismatch FAILED Extras 2025-09-07T06:47:36.6454702Z Dirs : 1 1 0 0 0 0 2025-09-07T06:47:36.6455564Z Files : 2 2 0 0 0 0 2025-09-07T06:47:36.6456433Z Bytes : 5.54 m 5.54 m 0 0 0 0 2025-09-07T06:47:36.6457300Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-09-07T06:47:36.6457641Z 2025-09-07T06:47:36.6458028Z 2025-09-07T06:47:36.6459263Z Speed : 1938149666 Bytes/sec. 2025-09-07T06:47:36.6460169Z Speed : 110901.813 MegaBytes/min. 2025-09-07T06:47:36.6460513Z Ended : Sunday, September 7, 2025 6:47:36 AM 2025-09-07T06:47:36.6460780Z 2025-09-07T06:47:36.6658848Z 1 file(s) copied. 2025-09-07T06:47:36.6661265Z 2025-09-07T06:47:36.6661918Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cuda12.6-py3-49773699333.json 2025-09-07T06:47:36.7035075Z 2025-09-07T06:47:36.7035862Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-09-07T06:47:36.7129307Z Stopping sccache server... 2025-09-07T06:47:36.7148137Z Compile requests 7373 2025-09-07T06:47:36.7148511Z Compile requests executed 7372 2025-09-07T06:47:36.7148809Z Cache hits 7304 2025-09-07T06:47:36.7149140Z Cache hits (C/C++) 6979 2025-09-07T06:47:36.7149418Z Cache hits (CUDA) 325 2025-09-07T06:47:36.7149680Z Cache misses 51 2025-09-07T06:47:36.7149966Z Cache misses (C/C++) 51 2025-09-07T06:47:36.7150249Z Cache timeouts 0 2025-09-07T06:47:36.7150517Z Cache read errors 0 2025-09-07T06:47:36.7150795Z Forced recaches 0 2025-09-07T06:47:36.7151067Z Cache write errors 0 2025-09-07T06:47:36.7151356Z Compilation failures 3 2025-09-07T06:47:36.7151630Z Cache errors 14 2025-09-07T06:47:36.7151901Z Cache errors (C/C++) 14 2025-09-07T06:47:36.7152175Z Non-cacheable compilations 2 2025-09-07T06:47:36.7152468Z Non-cacheable calls 0 2025-09-07T06:47:36.7152747Z Non-compilation calls 1 2025-09-07T06:47:36.7153044Z Unsupported compiler calls 0 2025-09-07T06:47:36.7153490Z Average cache write 0.027 s 2025-09-07T06:47:36.7153786Z Average compiler 0.135 s 2025-09-07T06:47:36.7160725Z Average cache read hit 0.052 s 2025-09-07T06:47:36.7161067Z Failed distributed compilations 0 2025-09-07T06:47:36.7161466Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-09-07T06:47:36.7161855Z Version (client) 0.7.4 2025-09-07T06:47:36.7169890Z 2025-09-07T06:47:36.7170315Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T06:47:36.8906808Z + assert_git_not_dirty 2025-09-07T06:47:36.8935326Z + [[ win-vs2022-cuda12.6-py3 != *rocm* ]] 2025-09-07T06:47:36.8940441Z + [[ win-vs2022-cuda12.6-py3 != *xla* ]] 2025-09-07T06:47:36.9501298Z ++ git status --porcelain 2025-09-07T06:47:36.9569695Z ++ grep -v '?? third_party' 2025-09-07T06:47:56.4801996Z ++ true 2025-09-07T06:47:56.4806632Z + git_status= 2025-09-07T06:47:56.4806880Z + [[ -n '' ]] 2025-09-07T06:47:56.4807120Z + echo 'BUILD PASSED' 2025-09-07T06:47:56.4807343Z BUILD PASSED 2025-09-07T06:47:56.6714564Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-09-07T06:47:56.6715130Z with: 2025-09-07T06:47:56.6715315Z retention-days: 14 2025-09-07T06:47:56.6715546Z if-no-files-found: error 2025-09-07T06:47:56.6715785Z name: win-vs2022-cuda12.6-py3 2025-09-07T06:47:56.6716116Z path: C:\17524754564\build-results 2025-09-07T06:47:56.6716373Z s3-bucket: gha-artifacts 2025-09-07T06:47:56.6716651Z region: us-east-1 2025-09-07T06:47:56.6716852Z env: 2025-09-07T06:47:56.6717048Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:47:56.6717421Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:47:56.6717926Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:47:56.6718870Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:47:56.6719250Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:47:56.6719549Z ##[endgroup] 2025-09-07T06:47:57.6945720Z With the provided path, there will be 4 files uploaded 2025-09-07T06:47:57.6946228Z Uploading to s3 prefix: pytorch/pytorch/17524754564/win-vs2022-cuda12.6-py3 2025-09-07T06:47:57.6984131Z Starting upload of .additional_ci_files\test-class-times.json 2025-09-07T06:47:57.9163806Z Finished upload of .additional_ci_files\test-class-times.json 2025-09-07T06:47:57.9166376Z Starting upload of .additional_ci_files\test-times.json 2025-09-07T06:47:58.0773454Z Finished upload of .additional_ci_files\test-times.json 2025-09-07T06:47:58.0775810Z Starting upload of .ninja_log 2025-09-07T06:47:58.3203518Z Finished upload of .ninja_log 2025-09-07T06:47:58.3205053Z Starting upload of torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl 2025-09-07T06:48:00.6138984Z Finished upload of torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl 2025-09-07T06:48:00.6700394Z Prepare all required actions 2025-09-07T06:48:00.6701092Z Getting action download info 2025-09-07T06:48:00.7926990Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-09-07T06:48:01.0669917Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-09-07T06:48:01.0670296Z with: 2025-09-07T06:48:01.0670756Z github-token: *** 2025-09-07T06:48:01.0670965Z env: 2025-09-07T06:48:01.0671166Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:01.0671541Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:01.0672062Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:01.0672540Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:01.0672946Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:01.0673251Z ##[endgroup] 2025-09-07T06:48:01.0778649Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-09-07T06:48:01.0779034Z with: 2025-09-07T06:48:01.0779267Z s3-prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T06:48:01.0779614Z retention-days: 14 2025-09-07T06:48:01.0779858Z if-no-files-found: warn 2025-09-07T06:48:01.0780147Z path: sccache-stats-*.json 2025-09-07T06:48:01.0780374Z name: artifact 2025-09-07T06:48:01.0780607Z s3-bucket: gha-artifacts 2025-09-07T06:48:01.0780824Z region: us-east-1 2025-09-07T06:48:01.0781054Z env: 2025-09-07T06:48:01.0781255Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:01.0781625Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:01.0782207Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:01.0782830Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:01.0783258Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:01.0783577Z ##[endgroup] 2025-09-07T06:48:01.4881971Z NOTE: s3-prefix specified, ignoring name parameter 2025-09-07T06:48:01.4882407Z With the provided path, there will be 1 file uploaded 2025-09-07T06:48:01.4882872Z Uploading to s3 prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T06:48:01.4896492Z Starting upload of sccache-stats-win-vs2022-cuda12.6-py3-49773699333.json 2025-09-07T06:48:01.6330098Z Finished upload of sccache-stats-win-vs2022-cuda12.6-py3-49773699333.json 2025-09-07T06:48:01.6654343Z Prepare all required actions 2025-09-07T06:48:01.6654746Z Getting action download info 2025-09-07T06:48:01.8179972Z ##[group]Run ./.github/actions/teardown-win 2025-09-07T06:48:01.8180266Z with: 2025-09-07T06:48:01.8180493Z extra-delete-dir: /c/17524754564/build-results/ 2025-09-07T06:48:01.8180804Z env: 2025-09-07T06:48:01.8180990Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:01.8181352Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:01.8181869Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:01.8182431Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:01.8182814Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:01.8183117Z ##[endgroup] 2025-09-07T06:48:01.8283765Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-09-07T06:48:01.8284213Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-09-07T06:48:01.8309571Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:48:01.8310106Z env: 2025-09-07T06:48:01.8310293Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:01.8310691Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:01.8311205Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:01.8311674Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:01.8312064Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:01.8312352Z ##[endgroup] 2025-09-07T06:48:02.2314336Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:48:02.2385625Z Finished 2025-09-07T06:48:02.3622048Z Holding runner until all ssh sessions have logged out 2025-09-07T06:48:02.3944586Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-09-07T06:48:02.3945017Z .github\scripts\kill_active_ssh_sessions.ps1 2025-09-07T06:48:02.3961457Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:48:02.3961902Z env: 2025-09-07T06:48:02.3962095Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:02.3962465Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:02.3962974Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:02.3963441Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:02.3963824Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:02.3964132Z ##[endgroup] 2025-09-07T06:48:02.7854787Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:48:02.7902753Z Finished 2025-09-07T06:48:02.8326002Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-09-07T06:48:02.8326380Z env: 2025-09-07T06:48:02.8326571Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:02.8326962Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:02.8327472Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:02.8327924Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:02.8328309Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:02.8328724Z ##[endgroup] 2025-09-07T06:48:02.8403534Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T06:48:02.8404258Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T06:48:02.8404906Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-09-07T06:48:02.8405370Z # handle tool 2025-09-07T06:48:02.8405691Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-09-07T06:48:02.8406093Z Foreach ($process In $processes) { 2025-09-07T06:48:02.8407690Z  Try { 2025-09-07T06:48:02.8408226Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-09-07T06:48:02.8408907Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-09-07T06:48:02.8409300Z  } 2025-09-07T06:48:02.8409485Z  Catch { 2025-09-07T06:48:02.8409775Z  Write-Output "No leftover $process process, continuing" 2025-09-07T06:48:02.8410145Z  Write-Output $_ 2025-09-07T06:48:02.8410438Z  } 2025-09-07T06:48:02.8410627Z } 2025-09-07T06:48:02.8410808Z  2025-09-07T06:48:02.8411255Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-09-07T06:48:02.8411804Z # for hung processes 2025-09-07T06:48:02.8412071Z Foreach ($process In $processes) { 2025-09-07T06:48:02.8412351Z  Try { 2025-09-07T06:48:02.8412725Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-09-07T06:48:02.8413167Z  } 2025-09-07T06:48:02.8413349Z  Catch { 2025-09-07T06:48:02.8413555Z  Write-Output $_ 2025-09-07T06:48:02.8413797Z  } 2025-09-07T06:48:02.8413964Z } 2025-09-07T06:48:02.8414132Z  2025-09-07T06:48:02.8414294Z Try { 2025-09-07T06:48:02.8414530Z  # Print all the processes for debugging 2025-09-07T06:48:02.8414977Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-09-07T06:48:02.8415390Z } 2025-09-07T06:48:02.8415558Z Catch { 2025-09-07T06:48:02.8415950Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-09-07T06:48:02.8416405Z  Write-Output $_ 2025-09-07T06:48:02.8416621Z } 2025-09-07T06:48:02.8432957Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:48:02.8433479Z env: 2025-09-07T06:48:02.8433671Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:02.8434039Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:02.8434544Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:02.8435009Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:02.8435384Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:02.8435682Z ##[endgroup] 2025-09-07T06:48:03.2223043Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:48:03.2295204Z Finished 2025-09-07T06:48:03.2525026Z No leftover python process, continuing 2025-09-07T06:48:03.3047347Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-09-07T06:48:03.3048088Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:9 char:5 2025-09-07T06:48:03.3048648Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:03.3049045Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3049573Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:03.3050527Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:03.3051119Z 2025-09-07T06:48:03.3063962Z No leftover ninja process, continuing 2025-09-07T06:48:03.3075320Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-09-07T06:48:03.3076024Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:9 char:5 2025-09-07T06:48:03.3076566Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:03.3076988Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3078335Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:03.3079152Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:03.3079738Z 2025-09-07T06:48:03.3090726Z No leftover cl process, continuing 2025-09-07T06:48:03.3100922Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-09-07T06:48:03.3101577Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:9 char:5 2025-09-07T06:48:03.3102273Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:03.3102686Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3103187Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:03.3103978Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:03.3104557Z 2025-09-07T06:48:03.3123938Z No leftover nvcc process, continuing 2025-09-07T06:48:03.3175017Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-09-07T06:48:03.3175691Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:9 char:5 2025-09-07T06:48:03.3176264Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:03.3176654Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3177163Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:03.3178011Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:03.3178591Z 2025-09-07T06:48:03.3189841Z No leftover cmd process, continuing 2025-09-07T06:48:03.3200001Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-09-07T06:48:03.3200661Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:9 char:5 2025-09-07T06:48:03.3201217Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:03.3201609Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3202084Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:03.3202910Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:03.3203512Z 2025-09-07T06:48:03.3213832Z No leftover sccache process, continuing 2025-09-07T06:48:03.3224590Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-09-07T06:48:03.3225277Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:9 char:5 2025-09-07T06:48:03.3225846Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:03.3226266Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3226740Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:03.3227540Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:03.3228300Z 2025-09-07T06:48:03.3236973Z No leftover git process, continuing 2025-09-07T06:48:03.3247568Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-09-07T06:48:03.3248224Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:9 char:5 2025-09-07T06:48:03.3248758Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:03.3249158Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3249792Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:03.3251632Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:03.3252207Z 2025-09-07T06:48:03.3809199Z You cannot call a method on a null-valued expression. 2025-09-07T06:48:03.3809762Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:21 char:5 2025-09-07T06:48:03.3810313Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:03.3810748Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3811288Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T06:48:03.3811691Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T06:48:03.3811981Z 2025-09-07T06:48:03.3965035Z You cannot call a method on a null-valued expression. 2025-09-07T06:48:03.3965566Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:21 char:5 2025-09-07T06:48:03.3966140Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:03.3966570Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.3966958Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T06:48:03.3967370Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T06:48:03.3967649Z 2025-09-07T06:48:03.4120130Z You cannot call a method on a null-valued expression. 2025-09-07T06:48:03.4120662Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:21 char:5 2025-09-07T06:48:03.4121227Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:03.4121649Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.4122045Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T06:48:03.4122446Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T06:48:03.4122745Z 2025-09-07T06:48:03.4263956Z You cannot call a method on a null-valued expression. 2025-09-07T06:48:03.4264480Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:21 char:5 2025-09-07T06:48:03.4265034Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:03.4265486Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.4265878Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T06:48:03.4266285Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T06:48:03.4266579Z 2025-09-07T06:48:03.4409210Z You cannot call a method on a null-valued expression. 2025-09-07T06:48:03.4409816Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:21 char:5 2025-09-07T06:48:03.4410414Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:03.4410939Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.4411398Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T06:48:03.4411834Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T06:48:03.4412178Z 2025-09-07T06:48:03.4557272Z You cannot call a method on a null-valued expression. 2025-09-07T06:48:03.4557951Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:21 char:5 2025-09-07T06:48:03.4558519Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:03.4558951Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.4559346Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T06:48:03.4559747Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T06:48:03.4560029Z 2025-09-07T06:48:03.4699076Z You cannot call a method on a null-valued expression. 2025-09-07T06:48:03.4699750Z At C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1:21 char:5 2025-09-07T06:48:03.4700305Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:03.4700736Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:03.4701189Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T06:48:03.4701643Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T06:48:03.4701929Z 2025-09-07T06:48:03.5923197Z Caption CommandLine ProcessId 2025-09-07T06:48:03.5924029Z 2025-09-07T06:48:03.5924369Z System Idle Process 0 2025-09-07T06:48:03.5924805Z 2025-09-07T06:48:03.5925080Z System 4 2025-09-07T06:48:03.5925457Z 2025-09-07T06:48:03.5926372Z Registry 168 2025-09-07T06:48:03.5926766Z 2025-09-07T06:48:03.5927235Z smss.exe 408 2025-09-07T06:48:03.5927625Z 2025-09-07T06:48:03.5928397Z csrss.exe 524 2025-09-07T06:48:03.5928879Z 2025-09-07T06:48:03.5930202Z csrss.exe 600 2025-09-07T06:48:03.5930614Z 2025-09-07T06:48:03.5930902Z wininit.exe 624 2025-09-07T06:48:03.5931345Z 2025-09-07T06:48:03.5931696Z winlogon.exe winlogon.exe 672 2025-09-07T06:48:03.5932129Z 2025-09-07T06:48:03.5932944Z services.exe 744 2025-09-07T06:48:03.5933348Z 2025-09-07T06:48:03.5934184Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-09-07T06:48:03.5934755Z 2025-09-07T06:48:03.5936721Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 896 2025-09-07T06:48:03.5937415Z 2025-09-07T06:48:03.5937889Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 920 2025-09-07T06:48:03.5938434Z 2025-09-07T06:48:03.5938816Z fontdrvhost.exe "fontdrvhost.exe" 944 2025-09-07T06:48:03.5939415Z 2025-09-07T06:48:03.5939949Z fontdrvhost.exe "fontdrvhost.exe" 952 2025-09-07T06:48:03.5940409Z 2025-09-07T06:48:03.5941022Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 124 2025-09-07T06:48:03.5941599Z 2025-09-07T06:48:03.5942174Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 436 2025-09-07T06:48:03.5942726Z 2025-09-07T06:48:03.5943548Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 824 2025-09-07T06:48:03.5944138Z 2025-09-07T06:48:03.5944736Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-09-07T06:48:03.5945403Z 2025-09-07T06:48:03.5945696Z dwm.exe "dwm.exe" 1140 2025-09-07T06:48:03.5946090Z 2025-09-07T06:48:03.5947119Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1256 2025-09-07T06:48:03.5947808Z 2025-09-07T06:48:03.5948328Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1340 2025-09-07T06:48:03.5948889Z 2025-09-07T06:48:03.5951142Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1368 2025-09-07T06:48:03.5951855Z 2025-09-07T06:48:03.5952311Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1396 2025-09-07T06:48:03.5952913Z 2025-09-07T06:48:03.5953398Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-09-07T06:48:03.5953987Z 2025-09-07T06:48:03.5955709Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1476 2025-09-07T06:48:03.5957515Z 2025-09-07T06:48:03.5957984Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1496 2025-09-07T06:48:03.5958549Z 2025-09-07T06:48:03.5959039Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1564 2025-09-07T06:48:03.5959628Z 2025-09-07T06:48:03.5960227Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1632 2025-09-07T06:48:03.5960971Z 2025-09-07T06:48:03.5961498Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1724 2025-09-07T06:48:03.5962101Z 2025-09-07T06:48:03.5962643Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1732 2025-09-07T06:48:03.5963193Z 2025-09-07T06:48:03.5963696Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1740 2025-09-07T06:48:03.5964334Z 2025-09-07T06:48:03.5964784Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1844 2025-09-07T06:48:03.5965322Z 2025-09-07T06:48:03.5965872Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1880 2025-09-07T06:48:03.5966498Z 2025-09-07T06:48:03.5966994Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1888 2025-09-07T06:48:03.5967594Z 2025-09-07T06:48:03.5968098Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1960 2025-09-07T06:48:03.5968695Z 2025-09-07T06:48:03.5969189Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2028 2025-09-07T06:48:03.5969821Z 2025-09-07T06:48:03.5970944Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1188 2025-09-07T06:48:03.5971589Z 2025-09-07T06:48:03.5972212Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2072 2025-09-07T06:48:03.5972983Z 2025-09-07T06:48:03.5973462Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2120 2025-09-07T06:48:03.5974037Z 2025-09-07T06:48:03.5974633Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2172 2025-09-07T06:48:03.5975312Z 2025-09-07T06:48:03.5975855Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2208 2025-09-07T06:48:03.5976478Z 2025-09-07T06:48:03.5976959Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2384 2025-09-07T06:48:03.5977613Z 2025-09-07T06:48:03.5978095Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2428 2025-09-07T06:48:03.5978665Z 2025-09-07T06:48:03.5979071Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2588 2025-09-07T06:48:03.5980112Z 2025-09-07T06:48:03.5982503Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2688 2025-09-07T06:48:03.5983144Z 2025-09-07T06:48:03.5983718Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2704 2025-09-07T06:48:03.5984412Z 2025-09-07T06:48:03.5984871Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2712 2025-09-07T06:48:03.5985421Z 2025-09-07T06:48:03.5985911Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2728 2025-09-07T06:48:03.5986506Z 2025-09-07T06:48:03.5987073Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2736 2025-09-07T06:48:03.5987732Z 2025-09-07T06:48:03.5988206Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2744 2025-09-07T06:48:03.5988798Z 2025-09-07T06:48:03.5989281Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2752 2025-09-07T06:48:03.5989917Z 2025-09-07T06:48:03.5990388Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2760 2025-09-07T06:48:03.5990960Z 2025-09-07T06:48:03.5992452Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3060 2025-09-07T06:48:03.5993178Z 2025-09-07T06:48:03.5993822Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2068 2025-09-07T06:48:03.5994592Z 2025-09-07T06:48:03.5995096Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2456 2025-09-07T06:48:03.5995673Z 2025-09-07T06:48:03.5996322Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 2964 2025-09-07T06:48:03.5997048Z 2025-09-07T06:48:03.5997524Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3108 2025-09-07T06:48:03.5998081Z 2025-09-07T06:48:03.5998677Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3568 2025-09-07T06:48:03.5999358Z 2025-09-07T06:48:03.5999940Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4040 2025-09-07T06:48:03.6000653Z 2025-09-07T06:48:03.6001137Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a73855 /state1:0x41c64e6d 4244 2025-09-07T06:48:03.6002076Z 2025-09-07T06:48:03.6003717Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4476 2025-09-07T06:48:03.6005414Z 2025-09-07T06:48:03.6006145Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 4608 2025-09-07T06:48:03.6006936Z 2025-09-07T06:48:03.6007284Z vds.exe C:\Windows\System32\vds.exe 4916 2025-09-07T06:48:03.6007743Z 2025-09-07T06:48:03.6008302Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2888 2025-09-07T06:48:03.6008962Z 2025-09-07T06:48:03.6009664Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3032 2025-09-07T06:48:03.6010451Z 2025-09-07T06:48:03.6011974Z amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\amazon-cloudwatch-agent.exe" -config C:\ProgramData\Amazon\AmazonCloudWatchAgent\amazon-cloudwatch-agent.toml -envconfig C:\ProgramData\Amazon\AmazonCloudWatchAgent\env-config.json -otelconfig C:\ProgramData\Amazon\AmazonCloudWatchAgent\amazon-cloudwatch-agent.yaml 1464 2025-09-07T06:48:03.6013586Z 2025-09-07T06:48:03.6013995Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1072 2025-09-07T06:48:03.6014521Z 2025-09-07T06:48:03.6015107Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1168 2025-09-07T06:48:03.6015705Z 2025-09-07T06:48:03.6016083Z msdtc.exe C:\Windows\System32\msdtc.exe 3480 2025-09-07T06:48:03.6016610Z 2025-09-07T06:48:03.6017260Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4196 2025-09-07T06:48:03.6017908Z 2025-09-07T06:48:03.6018365Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1180 2025-09-07T06:48:03.6018912Z 2025-09-07T06:48:03.6019440Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 760 2025-09-07T06:48:03.6020068Z 2025-09-07T06:48:03.6020470Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4784 2025-09-07T06:48:03.6020982Z 2025-09-07T06:48:03.6021455Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1580 2025-09-07T06:48:03.6022028Z 2025-09-07T06:48:03.6022507Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1268 2025-09-07T06:48:03.6023139Z 2025-09-07T06:48:03.6023687Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 880 2025-09-07T06:48:03.6024279Z 2025-09-07T06:48:03.6024682Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2668 2025-09-07T06:48:03.6025214Z 2025-09-07T06:48:03.6025813Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4744 2025-09-07T06:48:03.6026494Z 2025-09-07T06:48:03.6026980Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4188 2025-09-07T06:48:03.6027548Z 2025-09-07T06:48:03.6028071Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 1772 2025-09-07T06:48:03.6028675Z 2025-09-07T06:48:03.6029199Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2156 2068 1412 2025-09-07T06:48:03.6029810Z 2025-09-07T06:48:03.6030222Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1808 2025-09-07T06:48:03.6030747Z 2025-09-07T06:48:03.6031296Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3608 2025-09-07T06:48:03.6031945Z 2025-09-07T06:48:03.6032628Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\Hostx64\x64\VCTIP.EXE" 4284 2025-09-07T06:48:03.6033350Z 2025-09-07T06:48:03.6033764Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 1112 2025-09-07T06:48:03.6034878Z 2025-09-07T06:48:03.6035307Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 5756 2025-09-07T06:48:03.6035830Z 2025-09-07T06:48:03.6036602Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\291c68a4-3d01-45c6-ad4f-bd6900149fa6.ps1'" 972 2025-09-07T06:48:03.6037558Z 2025-09-07T06:48:03.6038187Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 2640 2025-09-07T06:48:03.6038868Z 2025-09-07T06:48:03.6038874Z 2025-09-07T06:48:03.6038878Z 2025-09-07T06:48:03.6311515Z ##[group]Run nick-fields/retry@v3.0.0 2025-09-07T06:48:03.6311787Z with: 2025-09-07T06:48:03.6311966Z shell: bash 2025-09-07T06:48:03.6312152Z timeout_minutes: 5 2025-09-07T06:48:03.6312366Z max_attempts: 3 2025-09-07T06:48:03.6312557Z retry_wait_seconds: 90 2025-09-07T06:48:03.6313545Z command: set +e set -x if [ -n "${EXTRA_DELETE_DIR}" ]; then # It's ok to fail to clean up the extra directory on Windows as it only contains # the build artifacts and doesn't take up much space, i.e. /c/5053411580/build-results rm -rf "${EXTRA_DELETE_DIR}" || true fi rm -rf ./* 2025-09-07T06:48:03.6314558Z polling_interval_seconds: 1 2025-09-07T06:48:03.6314795Z warning_on_retry: true 2025-09-07T06:48:03.6315191Z continue_on_error: false 2025-09-07T06:48:03.6315447Z env: 2025-09-07T06:48:03.6315640Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:03.6316012Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:03.6316524Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:03.6316986Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:03.6317371Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:03.6317701Z EXTRA_DELETE_DIR: /c/17524754564/build-results/ 2025-09-07T06:48:03.6317979Z ##[endgroup] 2025-09-07T06:48:03.8301293Z + '[' -n /c/17524754564/build-results/ ']' 2025-09-07T06:48:03.8301868Z + rm -rf /c/17524754564/build-results/ 2025-09-07T06:48:03.8859216Z + rm -rf ./AGENTS.md ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CLAUDE.md ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./codex_setup.sh ./compile_commands.json ./defs.bzl ./dist ./docker.Makefile ./docs ./functorch ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements-build.txt ./requirements.txt ./sccache-stats-win-vs2022-cuda12.6-py3-49773699333.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-09-07T06:48:33.9169017Z Command completed after 1 attempt(s). 2025-09-07T06:48:33.9378736Z ##[group]Run handle C:\actions-runner\_work\ 2025-09-07T06:48:33.9379126Z handle C:\actions-runner\_work\ 2025-09-07T06:48:33.9397364Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:48:33.9397950Z env: 2025-09-07T06:48:33.9398138Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:33.9398574Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:48:33.9399114Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:48:33.9399604Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:48:33.9399992Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:48:33.9400308Z ##[endgroup] 2025-09-07T06:48:34.3666833Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:48:34.3720935Z Finished 2025-09-07T06:48:34.4788102Z 2025-09-07T06:48:34.4788558Z Nthandle v5.0 - Handle viewer 2025-09-07T06:48:34.4788938Z Copyright (C) 1997-2022 Mark Russinovich 2025-09-07T06:48:34.4789248Z Sysinternals - www.sysinternals.com 2025-09-07T06:48:34.4789454Z 2025-09-07T06:48:34.5167129Z powershell.exe pid: 5528 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:48:34.5167759Z handle.exe pid: 1416 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:48:34.5168332Z handle.exe pid: 4344 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:48:34.5168908Z handle64.exe pid: 4536 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:48:34.5580684Z Post job cleanup. 2025-09-07T06:48:34.5694006Z Post job cleanup. 2025-09-07T06:48:34.8119339Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-09-07T06:48:34.8335510Z git version 2.51.0.windows.1 2025-09-07T06:48:34.8404755Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\cec566f7-6a1a-46fd-b940-b0a1cc7c0345\.gitconfig' 2025-09-07T06:48:34.8414955Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\cec566f7-6a1a-46fd-b940-b0a1cc7c0345' before making global git config changes 2025-09-07T06:48:34.8416569Z Adding repository directory to the temporary git global config as a safe directory 2025-09-07T06:48:34.8425443Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:48:34.8695028Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-09-07T06:48:34.8970620Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-09-07T06:48:35.4026445Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-09-07T06:48:35.4229069Z http.https://github.com/.extraheader 2025-09-07T06:48:35.4276952Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-09-07T06:48:35.4541682Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-09-07T06:48:35.9088739Z A job completed hook has been configured by the self-hosted runner administrator 2025-09-07T06:48:35.9134898Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-09-07T06:48:35.9153333Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:48:35.9153783Z ##[endgroup] 2025-09-07T06:48:36.2824446Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:48:36.2872895Z Finished 2025-09-07T06:48:37.8928424Z Evaluate and set job outputs 2025-09-07T06:48:37.8934089Z Cleaning up orphan processes 2025-09-07T06:48:38.0043168Z Terminate orphan process: pid (4284) (vctip)